Update of /cvsroot/blob/blob/include/blob
In directory usw-pr-cvs1:/tmp/cvs-serv8998/include/blob
Modified Files:
load_kernel.h
Log Message:
add filename to load_kernel methods
Index: load_kernel.h
===================================================================
RCS file: /cvsroot/blob/blob/include/blob/load_kernel.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- load_kernel.h 26 Apr 2002 04:44:41 -0000 1.4
+++ load_kernel.h 27 Apr 2002 07:32:40 -0000 1.5
@@ -50,9 +50,10 @@
/* Return true if there is a kernel contained at src */
int (* check_magic)(struct part_info *part);
- /* load the kernel from the partition part to dst, return the number
- * of bytes copied if successful, zero if not */
- u32 (* load_kernel)(u32 *dst, struct part_info *part);
+ /* load the kernel from filename in partition part to dst,
+ * return the number of bytes copied if successful, zero if not
+ * some methods will ignore filename */
+ u32 (* load_kernel)(u32 *dst, struct part_info *part, char *filename);
/* A brief description of the module (ie, "cramfs") */
char *name;
|