Created
December 14, 2013 02:47
-
-
Save anonymous/7955136 to your computer and use it in GitHub Desktop.
SteamOS grub.cfg
This file contains hidden or 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
| if loadfont /boot/grub/font.pf2 ; then | |
| insmod efi_gop | |
| insmod efi_uga | |
| insmod video_bochs | |
| insmod video_cirrus | |
| insmod gfxterm | |
| insmod png | |
| terminal_output gfxterm | |
| fi | |
| set theme=/boot/grub/theme/1 | |
| menuentry 'Automated install (WILL ERASE DISK!)' { | |
| set background_color=black | |
| linux /install.amd/vmlinuz preseed/file=/cdrom/default.preseed DEBCONF_DEBUG=developer desktop=steamos auto=true priority=critical video=vesa:ywrap,mtrr vga=788 -- quiet | |
| initrd /install.amd/gtk/initrd.gz | |
| } | |
| menuentry 'Expert install' { | |
| set background_color=black | |
| linux /install.amd/vmlinuz preseed/file=/cdrom/default.preseed DEBCONF_DEBUG=developer desktop=steamos priority=low video=vesa:ywrap,mtrr vga=788 -- | |
| initrd /install.amd/gtk/initrd.gz | |
| } | |
| menuentry 'Rescue mode' { | |
| set background_color=black | |
| linux /install.amd/vmlinuz preseed/file=/cdrom/default.preseed DEBCONF_DEBUG=developer video=vesa:ywrap,mtrr vga=788 rescue/enable=true -- quiet | |
| initrd /install.amd/gtk/initrd.gz | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment