Update of /cvsroot/blob/blob/include/blob/arch
In directory usw-pr-cvs1:/tmp/cvs-serv32385/include/blob/arch
Modified Files:
idr.h
Log Message:
flash partitions
Index: idr.h
===================================================================
RCS file: /cvsroot/blob/blob/include/blob/arch/idr.h,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- idr.h 2002/01/20 05:15:53 1.3
+++ idr.h 2002/01/27 07:07:45 1.4
@@ -48,13 +48,13 @@
/* and where do they live in flash */
#define BLOB_FLASH_BASE (0x00000000)
-#define BLOB_FLASH_LEN (256 * 1024)
+#define BLOB_FLASH_LEN (128 * 1024)
#define PARAM_FLASH_BASE (BLOB_FLASH_BASE + BLOB_FLASH_LEN)
-#define PARAM_FLASH_LEN (256 * 1024)
+#define PARAM_FLASH_LEN (0 * 1024) /* not used yet */
#define KERNEL_FLASH_BASE (PARAM_FLASH_BASE + PARAM_FLASH_LEN)
-#define KERNEL_FLASH_LEN (1024 * 1024)
+#define KERNEL_FLASH_LEN ((1024 - 128) * 1024)
#define RAMDISK_FLASH_BASE (KERNEL_FLASH_BASE + KERNEL_FLASH_LEN)
-#define RAMDISK_FLASH_LEN (4 * 1024 * 1024)
+#define RAMDISK_FLASH_LEN (16 * 1024 * 1024 - BLOB_FLASH_LEN - PARAM_FLASH_LEN - KERNEL_FLASH_LEN)
/* the position of the kernel boot parameters */
#define BOOT_PARAMS (0xc0000100)
|