From: Stefan E. <se...@us...> - 2001-11-05 07:23:12
|
Update of /cvsroot/blob/blob/include/blob/arch In directory usw-pr-cvs1:/tmp/cvs-serv19248 Modified Files: system3.h Log Message: - reflect Erik's changes - hard-coded flash adresses until partitioning support is done Index: system3.h =================================================================== RCS file: /cvsroot/blob/blob/include/blob/arch/system3.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- system3.h 2001/11/04 23:04:37 1.4 +++ system3.h 2001/11/05 07:23:09 1.5 @@ -54,14 +54,13 @@ /* and where do they live in flash */ -#warning "Please check System3 default flash layout!" #define BLOB_FLASH_BASE (0x00000000) #define BLOB_FLASH_LEN (256 * 1024) -#define PARAM_FLASH_BASE (BLOB_FLASH_BASE + BLOB_FLASH_LEN) +#define PARAM_FLASH_BASE (0x00040000) #define PARAM_FLASH_LEN (256 * 1024) -#define KERNEL_FLASH_BASE (PARAM_FLASH_BASE + PARAM_FLASH_LEN) +#define KERNEL_FLASH_BASE (0x00080000) #define KERNEL_FLASH_LEN (1024 * 1024) -#define RAMDISK_FLASH_BASE (KERNEL_FLASH_BASE + KERNEL_FLASH_LEN) +#define RAMDISK_FLASH_BASE (0x00180000) #define RAMDISK_FLASH_LEN (4 * 1024 * 1024) |