Created
June 16, 2015 20:35
-
-
Save Manouchehri/423d62fd349435f8507b to your computer and use it in GitHub Desktop.
grub.cfg from debian-testing-amd64-i386-netinst.iso
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 $prefix/font.pf2 ; then | |
set gfxmode=800x600 | |
insmod efi_gop | |
insmod efi_uga | |
insmod video_bochs | |
insmod video_cirrus | |
insmod gfxterm | |
insmod png | |
terminal_output gfxterm | |
fi | |
if background_image /isolinux/splash.png; then | |
set color_normal=light-gray/black | |
set color_highlight=white/black | |
else | |
set menu_color_normal=cyan/blue | |
set menu_color_highlight=white/blue | |
fi | |
set theme=/boot/grub/theme/1 | |
menuentry 'Graphical install' { | |
set background_color=black | |
linux /install.amd/vmlinuz vga=788 --- quiet | |
initrd /install.amd/gtk/initrd.gz | |
} | |
menuentry '32 bit graphical install' { | |
set background_color=black | |
linux /install.386/vmlinuz vga=788 --- quiet | |
initrd /install.386/gtk/initrd.gz | |
} | |
menuentry 'Install' { | |
set background_color=black | |
linux /install.amd/vmlinuz vga=788 --- quiet | |
initrd /install.amd/initrd.gz | |
} | |
menuentry '32 bit install' { | |
set background_color=black | |
linux /install.386/vmlinuz vga=788 --- quiet | |
initrd /install.386/initrd.gz | |
} | |
submenu 'Advanced options ...' { | |
set menu_color_normal=cyan/blue | |
set menu_color_highlight=white/blue | |
set theme=/boot/grub/theme/1-1 | |
menuentry '... Graphical expert install' { | |
set background_color=black | |
linux /install.amd/vmlinuz priority=low vga=788 --- | |
initrd /install.amd/gtk/initrd.gz | |
} | |
menuentry '... Graphical rescue mode' { | |
set background_color=black | |
linux /install.amd/vmlinuz vga=788 rescue/enable=true --- quiet | |
initrd /install.amd/gtk/initrd.gz | |
} | |
menuentry '... Graphical automated install' { | |
set background_color=black | |
linux /install.amd/vmlinuz auto=true priority=critical vga=788 --- quiet | |
initrd /install.amd/gtk/initrd.gz | |
} | |
menuentry '... 32 bit graphical expert install' { | |
set background_color=black | |
linux /install.386/vmlinuz priority=low vga=788 --- | |
initrd /install.386/gtk/initrd.gz | |
} | |
menuentry '... 32 bit graphical automated install' { | |
set background_color=black | |
linux /install.386/vmlinuz auto=true priority=critical vga=788 --- quiet | |
initrd /install.386/gtk/initrd.gz | |
} | |
menuentry '... Expert install' { | |
set background_color=black | |
linux /install.amd/vmlinuz priority=low vga=788 --- | |
initrd /install.amd/initrd.gz | |
} | |
menuentry '... Rescue mode' { | |
set background_color=black | |
linux /install.amd/vmlinuz vga=788 rescue/enable=true --- quiet | |
initrd /install.amd/initrd.gz | |
} | |
menuentry '... Automated install' { | |
set background_color=black | |
linux /install.amd/vmlinuz auto=true priority=critical vga=788 --- quiet | |
initrd /install.amd/initrd.gz | |
} | |
menuentry '... 32 bit expert install' { | |
set background_color=black | |
linux /install.386/vmlinuz priority=low vga=788 --- | |
initrd /install.386/initrd.gz | |
} | |
menuentry '... 32 bit automated install' { | |
set background_color=black | |
linux /install.386/vmlinuz auto=true priority=critical vga=788 --- quiet | |
initrd /install.386/initrd.gz | |
} | |
} | |
menuentry 'Install with speech synthesis' { | |
set background_color=black | |
linux /install.amd/vmlinuz vga=788 speakup.synth=soft --- quiet | |
initrd /install.amd/gtk/initrd.gz | |
} | |
menuentry '32 bit speech install' { | |
set background_color=black | |
linux /install.386/vmlinuz vga=788 speakup.synth=soft --- quiet | |
initrd /install.386/gtk/initrd.gz | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment