Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
stephensons-rocket/boot/grub/grub.cfg
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
31 lines (30 sloc)
1.32 KB
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
| 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 partman/confirm=true partman/choose_partition=finish 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=high video=vesa:ywrap,mtrr vga=788 -- | |
| initrd /install.amd/gtk/initrd.gz | |
| } | |
| menuentry 'Expert install with RAID' { | |
| set background_color=black | |
| linux /install.amd/vmlinuz preseed/file=/cdrom/default.preseed DEBCONF_DEBUG=developer desktop=steamos priority=high video=vesa:ywrap,mtrr vga=788 -- dmraid=true | |
| 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 | |
| } |