bootloaders: add advanced speech synth install entries

following the presence of them in the official install discs.

also drops unnecessary word "graphical" from existing speech
synth entry, following official Debian install discs.

i've not bothered to update grub-legacy this time.

Gbp-Dch: Short
This commit is contained in:
Lyndon Brown 2020-04-04 05:10:13 +01:00
parent 180207d711
commit 9b2564a3ff
2 changed files with 55 additions and 8 deletions

View File

@ -38,7 +38,27 @@ menuentry 'Automated install' {
initrd @INITRD_DI@ initrd @INITRD_DI@
} }
menuentry 'Install with speech synthesis' --hotkey=s { submenu 'Speech-enabled install options ...' --hotkey=s {
linux @KERNEL_GI@ speakup.synth=soft vga=788 @APPEND_INSTALL@ --- quiet
initrd @INITRD_GI@ 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@
}
} }

View File

@ -60,9 +60,36 @@ menu begin install
initrd @INITRD_DI@ initrd @INITRD_DI@
append auto=true priority=critical vga=788 @APPEND_INSTALL@ --- quiet append auto=true priority=critical vga=788 @APPEND_INSTALL@ --- quiet
label installspeechsynth menu begin speechinstall
menu label Graphical install with ^speech synthesis menu label ^Speech-enabled install options
linux @KERNEL_GI@ menu title Speech-enabled install options
initrd @INITRD_GI@ include stdmenu.cfg
append speakup.synth=soft vga=788 @APPEND_INSTALL@ --- quiet label mainmenu
menu label ^Back..
menu exit
label installspeechsynth
menu label Install with ^speech synthesis
linux @KERNEL_GI@
initrd @INITRD_GI@
append speakup.synth=soft vga=788 @APPEND_INSTALL@ --- quiet
label expertguispeech
menu label E^xpert speech install
linux @KERNEL_GI@
initrd @INITRD_GI@
append speakup.synth=soft priority=low vga=788 @APPEND_INSTALL@
label rescueguispeech
menu label ^Rescue speech mode
linux @KERNEL_GI@
initrd @INITRD_GI@
append speakup.synth=soft rescue/enable=true vga=788 @APPEND_INSTALL@ --- quiet
label autoguispeech
menu label ^Automated speech install
linux @KERNEL_GI@
initrd @INITRD_GI@
append speakup.synth=soft auto=true priority=critical vga=788 @APPEND_INSTALL@ --- quiet
menu end
menu end menu end