Update of /cvsroot/blob/blob/include/blob
In directory sc8-pr-cvs1:/tmp/cvs-serv3046
Modified Files:
load_kernel.h
Log Message:
Look for cramfs/jffs2 filesystems at RAMDISK_FLASH_BASE and for
zImage's at KERNEL_FLASH_BASE. All loader flavors can co-exist
peacefully now; search order is as before.
This is an interim solution until the new partition code is fully
integrated.
Index: load_kernel.h
===================================================================
RCS file: /cvsroot/blob/blob/include/blob/load_kernel.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- load_kernel.h 27 Apr 2002 10:26:49 -0000 1.6
+++ load_kernel.h 9 Jan 2003 01:41:04 -0000 1.7
@@ -59,7 +59,13 @@
char *name;
};
-extern const struct kernel_loader *loader[];
+/* this will go away once we integrate the new partition code */
+struct hash_defined_partition {
+ const struct kernel_loader *loader;
+ char *offset;
+ u32 size;
+};
+extern struct hash_defined_partition hash_defined_part_table[];
#ifndef USER_SPACE_TEST
/* this is a large area of ram for the loaders to use as a scratchpad */
|