From: Christopher H. <ch...@us...> - 2003-01-09 00:13:33
|
Update of /cvsroot/blob/blob/src/blob In directory sc8-pr-cvs1:/tmp/cvs-serv13084 Modified Files: load_kernel.c Log Message: Look for a zImage at KERNEL_FLASH_BASE, not RAMDISK_FLASH_BASE. Index: load_kernel.c =================================================================== RCS file: /cvsroot/blob/blob/src/blob/load_kernel.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- load_kernel.c 9 May 2002 13:26:21 -0000 1.9 +++ load_kernel.c 9 Jan 2003 00:13:30 -0000 1.10 @@ -80,7 +80,7 @@ u32 size; struct part_info part; -#if defined(CONFIG_CRAMFS_SUPPORT) || defined(CONFIG_ZIMAGE_SUPPORT) || defined(CONFIG_JFFS2_SUPPORT) +#if defined(CONFIG_CRAMFS_SUPPORT) || defined(CONFIG_JFFS2_SUPPORT) part.offset = (char *) RAMDISK_FLASH_BASE; part.size = RAMDISK_FLASH_LEN; #else |