diff options
author | jnqnfe <jnqnfe@gmail.com> | 2015-01-13 00:29:04 +0000 |
---|---|---|
committer | Lyndon Brown <jnqnfe@gmail.com> | 2020-03-16 20:33:18 +0000 |
commit | 24aab15d2a133075992ce3a216b1c3476dc7bd4c (patch) | |
tree | 5ec361a08565ffeb13b95590d5a497c151cf86cb /scripts/build/binary_grub-legacy | |
parent | efbe50233ef47c53f796e3515ef33c016e7196b9 (diff) | |
download | vyos-live-build-24aab15d2a133075992ce3a216b1c3476dc7bd4c.tar.gz vyos-live-build-24aab15d2a133075992ce3a216b1c3476dc7bd4c.zip |
bootloaders: add install with speech synthesis menu entries
Following the official Debian install disks
Gbp-Dch: Short
Diffstat (limited to 'scripts/build/binary_grub-legacy')
-rwxr-xr-x | scripts/build/binary_grub-legacy | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/build/binary_grub-legacy b/scripts/build/binary_grub-legacy index 5f620e8f4..442b70326 100755 --- a/scripts/build/binary_grub-legacy +++ b/scripts/build/binary_grub-legacy @@ -187,6 +187,8 @@ then Grub_install_entry "GUI Expert" "${VMLINUZ_GI}" "${INITRD_GI}" "priority=low ${APPEND_GI}" Grub_install_entry "GUI Rescue" "${VMLINUZ_GI}" "${INITRD_GI}" "rescue/enable=true ${APPEND_GI}" Grub_install_entry "GUI Auto" "${VMLINUZ_GI}" "${INITRD_GI}" "auto=true priority=critical ${APPEND_GI}" + # Note, the following speech synthesis entry deliberately uses graphical kernel, but normal video params, copying the official Debian install disc + Grub_install_entry "GUI Install with speech synthesis" "${VMLINUZ_GI}" "${INITRD_GI}" "speakup.synth=soft ${APPEND_GI}" fi if [ -f "binary/${VMLINUZ_DI}" ] && [ -f "binary/${INITRD_DI}" ] |