Update of /cvsroot/blob/blob/include/blob/arch
In directory sc8-pr-cvs1:/tmp/cvs-serv21997
Modified Files:
badge4.h
Log Message:
Bump up "RAMDISK"_FLASH_LEN to allow for bigger downloads. Actually
length is determined automagically via flash size.
Index: badge4.h
===================================================================
RCS file: /cvsroot/blob/blob/include/blob/arch/badge4.h,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- badge4.h 27 Jan 2003 20:49:05 -0000 1.14
+++ badge4.h 28 Jan 2003 03:44:41 -0000 1.15
@@ -101,9 +101,9 @@
# define PARAM_FLASH_BASE (BLOB_FLASH_BASE + BLOB_FLASH_LEN)
# define PARAM_FLASH_LEN (0x00002000 * 2)
# define KERNEL_FLASH_BASE (PARAM_FLASH_BASE + PARAM_FLASH_LEN)
-# define KERNEL_FLASH_LEN (0x00010000 * 14)
+# define KERNEL_FLASH_LEN (0x00010000 * 16)
# define RAMDISK_FLASH_BASE (KERNEL_FLASH_BASE + KERNEL_FLASH_LEN)
-# define RAMDISK_FLASH_LEN (0x00010000 * (127 - 14))
+# define RAMDISK_FLASH_LEN (0x00010000 * (127 - 16)) /* limit for d/l only */
#else
@@ -112,9 +112,9 @@
# define PARAM_FLASH_BASE (BLOB_FLASH_BASE + BLOB_FLASH_LEN)
# define PARAM_FLASH_LEN (0x00002000 * 2)
# define RAMDISK_FLASH_BASE (PARAM_FLASH_BASE + PARAM_FLASH_LEN)
-# define RAMDISK_FLASH_LEN (0x00010000 * 127)
+# define RAMDISK_FLASH_LEN (0x00010000 * (127 - 16)) /* limit for d/l only */
-# define KERNEL_FLASH_LEN (2 * 1024 * 1024) /* limit for download */
+# define KERNEL_FLASH_LEN (2 * 1024 * 1024) /* limit for d/l only */
#endif
|