Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/olpc.fth.bootmenu
diff options
context:
space:
mode:
authorMartin Dengler <martin@martindengler.com>2009-08-18 13:39:36 (GMT)
committer Martin Dengler <martin@martindengler.com>2009-08-18 13:39:36 (GMT)
commit4a05b3efd6ae8996d80bd1e32596dbd30437350d (patch)
tree17cbff1b2f77186e4ab21c4bc1636c3ef636ae6e /olpc.fth.bootmenu
parent84584b48e270044045f1e2604ccd32482ac40a65 (diff)
olpc.fth now always boots from whence it was loaded
Diffstat (limited to 'olpc.fth.bootmenu')
-rw-r--r--olpc.fth.bootmenu38
1 files changed, 0 insertions, 38 deletions
diff --git a/olpc.fth.bootmenu b/olpc.fth.bootmenu
deleted file mode 100644
index 3b65688..0000000
--- a/olpc.fth.bootmenu
+++ /dev/null
@@ -1,38 +0,0 @@
-\ olpc.fth
-
-" root=mtd0 rootfstype=jffs2 console=tty0 console=ttyS0,115200 fbcon=font:SUN12x22" to boot-file
-" nand:\boot\vmlinuz" to boot-device
-
-setup-smbios
-
-." Temporary boot menu for testing" cr
-cr
-." 1 to boot from SD" cr
-." 2 to boot from USB" cr
-." 3 to boot from internal NAND" cr
-." 4 to boot alternate image from NAND" cr
-cr
-key case
- [char] 1 of \ SD boot info
- " ro root=/dev/mmcblk0p1 console=ttyS0,115200 console=tty0 fbcon=font:SUN12x22" to boot-file
- " sd:\boot\vmlinuz" to boot-device
- " sd:\boot\initrd.img" to ramdisk
- endof
- [char] 2 of \ USB boot info
- " ro root=/dev/sda1 console=ttyS0,115200 console=tty0 fbcon=font:SUN12x22" to boot-file
- " disk:\boot\vmlinuz" to boot-device
- " disk:\boot\initrd.img" to ramdisk
- endof
- [char] 4 of \ Alternate boot image info
- " ro root=mtd0 rootfstype=jffs2 console=ttyS0,115200 console=tty0 fbcon=font:SUN12x22" to boot-file
- " nand:\boot-alt\vmlinuz" to boot-device
- " nand:\boot-alt\initrd.img" to ramdisk
- endof
- ( default ) \ Default sugar boot image info
- " ro root=mtd0 rootfstype=jffs2 console=ttyS0,115200 console=tty0 fbcon=font:SUN12x22" to boot-file
- " nand:\boot\vmlinuz" to boot-device
- " nand:\boot\initrd.img" to ramdisk
-endcase
-
-
-boot