|
From: Erik M. <er...@us...> - 2001-07-27 00:22:27
|
Update of /cvsroot/blob/blob/include
In directory usw-pr-cvs1:/tmp/cvs-serv30236/include
Modified Files:
Tag: blob_1_0_9_hack
main.h
Log Message:
- an ATAG_INITRD tag also needs an ATAG_RAMDISK tag
- if there is no command line, don't issue an ATAG_CMDLINE node, so the
kernel will use its default command line
Index: main.h
===================================================================
RCS file: /cvsroot/blob/blob/include/main.h,v
retrieving revision 1.1.1.1.2.6
retrieving revision 1.1.1.1.2.7
diff -u -r1.1.1.1.2.6 -r1.1.1.1.2.7
--- main.h 2001/07/26 00:33:03 1.1.1.1.2.6
+++ main.h 2001/07/27 00:22:25 1.1.1.1.2.7
@@ -76,6 +76,8 @@
/* As far as I know all architectures have this at the same address */
#define BOOT_PARAMS (0xc0000100)
+/* the size to which the compressed ramdisk expands */
+#define RAMDISK_SIZE (8 * 1024 * 1024)
#include "types.h"
|