More menu options

This commit is contained in:
Kevin Lange 2012-10-19 14:52:52 -07:00
parent 0b87a99c00
commit 62c5f39fea

View File

@ -4,38 +4,26 @@ insmod video_bochs
insmod video_cirrus
set root='(hd0,msdos1)'
function tf_1280_800 {
multiboot /boot/toaruos-kernel vid=preset=1280=800 hdd=0
set gfxpayload=1280x800x32
boot
}
function tf_1024_768 {
multiboot /boot/toaruos-kernel vid=preset=1024=768 hdd=0
menuentry 'Graphical Mode' {
multiboot /boot/toaruos-kernel vid=preset,1024,768 hdd=0
set gfxpayload=1024x768x32
boot
}
function tf_1280_1024 {
multiboot /boot/toaruos-kernel vid=preset=1280=1024 hdd=0
set gfxpayload=1280x1024x32
menuentry 'Graphical Terminal' {
multiboot /boot/toaruos-kernel vid=preset,1024,768 single hdd=0
set gfxpayload=1024x768x32
boot
}
function tf_vgaterm {
menuentry 'VGA Terminal' {
multiboot /boot/toaruos-kernel vgaterm hdd=0
set gfxpayload=text
boot
}
menuentry '1024x768' {
tf_1024_768
}
menuentry '1280x1024' {
tf_1280_1024
}
menuentry 'VGA Terminal' {
tf_vgaterm
menuentry 'Debug Mode' {
multiboot /boot/toaruos-kernel kernel-term=0 vgaterm hdd=0
set gfxpayload=text
boot
}