Skip to content
Permalink
brewmaster
Switch branches/tags

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?
Go to file
 
 
Cannot retrieve contributors at this time
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
}