r4166 - trunk/src/host/devirginator

werner at sita.openmoko.org werner at sita.openmoko.org
Tue Mar 4 15:45:57 CET 2008


Author: werner
Date: 2008-03-04 15:45:54 +0100 (Tue, 04 Mar 2008)
New Revision: 4166

Modified:
   trunk/src/host/devirginator/environment.in
Log:
Correct booting from SD/MMC:

- environment.in: "rootfs=" has to be "root=". Silly.
- environment.in: commented out ext2-only boot since ext2load is broken in 
  u-boot



Modified: trunk/src/host/devirginator/environment.in
===================================================================
--- trunk/src/host/devirginator/environment.in	2008-03-04 12:07:00 UTC (rev 4165)
+++ trunk/src/host/devirginator/environment.in	2008-03-04 14:45:54 UTC (rev 4166)
@@ -85,21 +85,25 @@
 menu_1=
   Boot from microSD (FAT+ext2):
   setenv bootargs
-    ${bootargs_base} rootfstype=ext2 rootfs=/dev/mmcblk0p2 rootdelay=5
+    ${bootargs_base} rootfstype=ext2 root=/dev/mmcblk0p2 rootdelay=5
     ${mtdparts} ro;
   mmcinit;
   fatload mmc MMC_NUM 0x32000000 ${sd_image_name};
   bootm 0x32000000
 
+#ifdef ext2_not_broken_in_uboot
+
 menu_2=
   Boot from microSD (ext2):
   setenv bootargs
-    ${bootargs_base} rootfstype=ext2 rootfs=/dev/mmcblk0p1 rootdelay=5
+    ${bootargs_base} rootfstype=ext2 root=/dev/mmcblk0p1 rootdelay=5
     ${mtdparts} ro;
   mmcinit;
   ext2load mmc MMC_NUM 0x32000000 /boot/${sd_image_name};
   bootm 0x32000000
 
+#endif
+
 #ifdef look_into_this_later_NOR_ENV
 
 menu_3=





More information about the commitlog mailing list