Created
August 3, 2010 00:06
-
-
Save frogonwheels/505556 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set timeout=10 | |
set default=0 | |
menuentry "OpenWRT" --class gnu-linux { | |
set root='(hd0,1)' | |
# Optionally search for the boot partition. | |
search --no-floppy --fs-uuid --set 4e1992e5-5555-6666-7777-888888888888 | |
linux /boot/vmlinuz noinitrd root=/dev/hda2 ro quiet splash | |
boot | |
} | |
menuentry "OpenWRT Noisy" --class gnu-linux { | |
set root='(hd0,1)' | |
# Optionally search for the boot partition. | |
search --no-floppy --fs-uuid --set 4e1992e5-5555-6666-7777-888888888888 | |
linux /boot/vmlinuz noinitrd root=/dev/hda2 ro splash | |
boot | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment