Update of /cvsroot/blob/blob/src
In directory usw-pr-cvs1:/tmp/cvs-serv20842/src
Modified Files:
main.c
Log Message:
boot_kernel() is no longer an exported function, so we just call it through
the command line parser.
Index: main.c
===================================================================
RCS file: /cvsroot/blob/blob/src/main.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- main.c 2001/10/03 16:09:09 1.16
+++ main.c 2001/10/03 17:19:25 1.17
@@ -44,7 +44,6 @@
#include "flash.h"
#include "init.h"
#include "led.h"
-#include "linux.h"
#include "main.h"
#include "memory.h"
#include "param_block.h"
@@ -155,7 +154,7 @@
/* no key was pressed, so proceed booting the kernel */
if(retval == 0) {
commandline[0] = '\0';
- boot_linux(0, NULL);
+ parse_command("boot");
}
SerialOutputString("\nAutoboot aborted\n");
|