65 lines
1.7 KiB
INI
65 lines
1.7 KiB
INI
menuentry 'Graphical install' --hotkey=g {
|
|
linux @KERNEL_GI@ vga=788 @APPEND_INSTALL@ --- quiet
|
|
initrd @INITRD_GI@
|
|
}
|
|
|
|
menuentry 'Graphical expert install' --hotkey=x {
|
|
linux @KERNEL_GI@ priority=low vga=788 @APPEND_INSTALL@
|
|
initrd @INITRD_GI@
|
|
}
|
|
|
|
menuentry 'Graphical rescue mode' --hotkey=r {
|
|
linux @KERNEL_GI@ rescue/enable=true vga=788 @APPEND_INSTALL@ --- quiet
|
|
initrd @INITRD_GI@
|
|
}
|
|
|
|
menuentry 'Graphical automated install' --hotkey=a {
|
|
linux @KERNEL_GI@ auto=true priority=critical vga=788 @APPEND_INSTALL@ --- quiet
|
|
initrd @INITRD_GI@
|
|
}
|
|
|
|
menuentry 'Install' --hotkey=i {
|
|
linux @KERNEL_DI@ vga=788 @APPEND_INSTALL@ --- quiet
|
|
initrd @INITRD_DI@
|
|
}
|
|
|
|
menuentry 'Expert install' {
|
|
linux @KERNEL_DI@ priority=low vga=788 @APPEND_INSTALL@
|
|
initrd @INITRD_DI@
|
|
}
|
|
|
|
menuentry 'Rescue mode' {
|
|
linux @KERNEL_DI@ rescue/enable=true vga=788 @APPEND_INSTALL@ --- quiet
|
|
initrd @INITRD_DI@
|
|
}
|
|
|
|
menuentry 'Automated install' {
|
|
linux @KERNEL_DI@ auto=true priority=critical vga=788 @APPEND_INSTALL@ --- quiet
|
|
initrd @INITRD_DI@
|
|
}
|
|
|
|
submenu 'Speech-enabled install options ...' --hotkey=s {
|
|
|
|
source /boot/grub/theme.cfg
|
|
|
|
menuentry 'Install with speech synthesis' --hotkey=s {
|
|
linux @KERNEL_GI@ speakup.synth=soft vga=788 @APPEND_INSTALL@ --- quiet
|
|
initrd @INITRD_GI@
|
|
}
|
|
|
|
menuentry 'Expert speech install' --hotkey=x {
|
|
linux @KERNEL_GI@ speakup.synth=soft priority=low vga=788 @APPEND_INSTALL@
|
|
initrd @INITRD_GI@
|
|
}
|
|
|
|
menuentry 'Rescue speech mode' --hotkey=r {
|
|
linux @KERNEL_GI@ speakup.synth=soft rescue/enable=true vga=788 @APPEND_INSTALL@ --- quiet
|
|
initrd @INITRD_GI@
|
|
}
|
|
|
|
menuentry 'Automated speech install' --hotkey=a {
|
|
linux @KERNEL_GI@ speakup.synth=soft auto=true priority=critical vga=788 @APPEND_INSTALL@ --- quiet
|
|
initrd @INITRD_GI@
|
|
}
|
|
}
|