]> git.sur5r.net Git - u-boot/commitdiff
[new uImage] Move CHUNKSZ definition to image.h
authorMarian Balakowicz <m8@semihalf.com>
Tue, 8 Jan 2008 17:11:44 +0000 (18:11 +0100)
committerWolfgang Denk <wd@denx.de>
Thu, 7 Feb 2008 00:12:55 +0000 (01:12 +0100)
CHUNKSZ defined for PPC and M68K is set to the same value of 64K,
move this definition to a common header.

Signed-off-by: Marian Balakowicz <m8@semihalf.com>
common/cmd_bootm.c
include/image.h
lib_m68k/m68k_linux.c
lib_ppc/ppc_linux.c

index 67f555e1de358cca7f96da7e4dc7fb0d9b235d54..fbe81d3039aa41e61e46ce7764eb776e81b94083 100644 (file)
@@ -61,13 +61,6 @@ extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
 #include <dataflash.h>
 #endif
 
-/*
- * Some systems (for example LWMON) have very short watchdog periods;
- * we must make sure to split long operations like memmove() or
- * crc32() into reasonable chunks.
- */
-#define CHUNKSZ (64 * 1024)
-
 int  gunzip (void *, int, unsigned char *, unsigned long *);
 
 #ifdef CONFIG_BZIP2
index c9f42980e8b2da9e8b963f5a516d3538bdafa9dc..aab3f44ccbfb0c97859227368abd7784411dd841 100644 (file)
@@ -164,6 +164,13 @@ typedef struct image_header {
        uint8_t         ih_name[IH_NMLEN];      /* Image Name           */
 } image_header_t;
 
+/*
+ * Some systems (for example LWMON) have very short watchdog periods;
+ * we must make sure to split long operations like memmove() or
+ * crc32() into reasonable chunks.
+ */
+#define CHUNKSZ (64 * 1024)
+
 #define image_to_cpu(x)                ntohl(x)
 #define cpu_to_image(x)                htonl(x)
 
index 3759fd2d35743dc2bbfc5a46dd9d9d83c3b083b5..f865c0c6a5a837420f0b8bb92c72961a0f68f8c1 100644 (file)
@@ -37,8 +37,6 @@ DECLARE_GLOBAL_DATA_PTR;
 #define LINUX_MAX_ENVS         256
 #define LINUX_MAX_ARGS         256
 
-#define CHUNKSZ                        (64 * 1024)
-
 #ifdef CONFIG_SHOW_BOOT_PROGRESS
 # include <status_led.h>
 # define SHOW_BOOT_PROGRESS(arg)       show_boot_progress(arg)
index 94872a61dcb7f40a6575cc2f35964f4b541a3924..4e7734ccd3923c275147f17eb752cd1fed2f5598 100644 (file)
@@ -49,8 +49,6 @@
 #include <asm/cache.h>
 #endif
 
-#define CHUNKSZ (64 * 1024)
-
 DECLARE_GLOBAL_DATA_PTR;
 extern image_header_t header;