diff options
author | Leah Rowe <info@minifree.org> | 2016-12-14 09:40:12 +0000 |
---|---|---|
committer | Leah Rowe <info@minifree.org> | 2016-12-14 09:40:12 +0000 |
commit | 902927c2afbd9a782df1ab65884bff4e018429cd (patch) | |
tree | 4cdd64f4d31eef0b25367b98ac742bc91276825c /resources/grub | |
parent | 13f500c96aa7b0534ae8c7ec38d88ef64546a5ca (diff) | |
download | librebootfr-902927c2afbd9a782df1ab65884bff4e018429cd.tar.gz librebootfr-902927c2afbd9a782df1ab65884bff4e018429cd.zip |
grub.cfg: add specific menuentries for booting Debian text based installer
Diffstat (limited to 'resources/grub')
-rw-r--r-- | resources/grub/config/menuentries/common.cfg | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/resources/grub/config/menuentries/common.cfg b/resources/grub/config/menuentries/common.cfg index 0251725b..9b43ebf7 100644 --- a/resources/grub/config/menuentries/common.cfg +++ b/resources/grub/config/menuentries/common.cfg @@ -105,6 +105,26 @@ menuentry 'Load Operating System (incl. fully encrypted disks) [o]' --hotkey='o fi done } +menuentry 'Boot 64-bit Debian USB installer (CD-1, DVD-1 or netinst) [w]' --hotkey='w' { + set root='usb0' + linux /install.amd/vmlinuz + initrd /install.amd/initrd.gz +} +menuentry 'Boot 64-bit Debian USB installer without framebuffer (CD-1, DVD-1 or netinst) [y]' --hotkey='y' { + set root='usb0' + linux /install.amd/vmlinuz fb=false + initrd /install.amd/initrd.gz +} +menuentry 'Boot 32-bit Debian USB installer (CD-1, DVD-1 or netinst) [z]' --hotkey='z' { + set root='usb0' + linux /install.i386/vmlinuz + initrd /install.i386/initrd.gz +} +menuentry 'Boot 32-bit Debian USB installer without framebuffer (CD-1, DVD-1 or netinst) [g]' --hotkey='g' { + set root='usb0' + linux /install.i386/vmlinuz fb=false + initrd /install.i386/initrd.gz +} menuentry 'Search ISOLINUX menu (AHCI) [a]' --hotkey='a' { search_isolinux ahci } |