diff options
| author | Lyndon Brown <jnqnfe@gmail.com> | 2020-04-04 05:27:31 +0100 |
|---|---|---|
| committer | Lyndon Brown <jnqnfe@gmail.com> | 2020-05-15 19:35:09 +0000 |
| commit | ab2e8a91f5247075c173930f340ebccb92914a0b (patch) | |
| tree | a14e6cc378e9dce46ca3c28681281cef164a90ca /share/bootloaders/syslinux_common | |
| parent | 9b2564a3ff2264ce3fabd02165f6e86b3a4f2621 (diff) | |
| download | vyos-live-build-ab2e8a91f5247075c173930f340ebccb92914a0b.tar.gz vyos-live-build-ab2e8a91f5247075c173930f340ebccb92914a0b.zip | |
bootloaders: add accessible dark contrast installer menu options
following official install discs.
i've not bothered to update grub-legacy this time.
Gbp-Dch: Short
Diffstat (limited to 'share/bootloaders/syslinux_common')
| -rw-r--r-- | share/bootloaders/syslinux_common/install_gui.cfg | 57 | ||||
| -rw-r--r-- | share/bootloaders/syslinux_common/install_text.cfg | 33 |
2 files changed, 90 insertions, 0 deletions
diff --git a/share/bootloaders/syslinux_common/install_gui.cfg b/share/bootloaders/syslinux_common/install_gui.cfg index 82e409d71..b568f64e8 100644 --- a/share/bootloaders/syslinux_common/install_gui.cfg +++ b/share/bootloaders/syslinux_common/install_gui.cfg @@ -60,6 +60,63 @@ menu begin install initrd @INITRD_DI@ append auto=true priority=critical vga=788 @APPEND_INSTALL@ --- quiet + menu begin darkinstall + menu label Accessible ^dark contrast installer options + menu title Accessible dark contrast installer options + include stdmenu.cfg + label mainmenu + menu label ^Back.. + menu exit + + label darkinstallgui + menu label ^Graphical install + linux @KERNEL_GI@ + initrd @INITRD_GI@ + append vga=788 theme=dark @APPEND_INSTALL@ --- quiet + + label darkexpertgui + menu label Graphical e^xpert install + linux @KERNEL_GI@ + initrd @INITRD_GI@ + append priority=low vga=788 theme=dark @APPEND_INSTALL@ + + label darkrescuegui + menu label Graphical ^rescue mode + linux @KERNEL_GI@ + initrd @INITRD_GI@ + append rescue/enable=true vga=788 theme=dark @APPEND_INSTALL@ --- quiet + + label darkautogui + menu label Graphical ^automated install + linux @KERNEL_GI@ + initrd @INITRD_GI@ + append auto=true priority=critical vga=788 theme=dark @APPEND_INSTALL@ --- quiet + + label darkinstall + menu label ^Install + linux @KERNEL_DI@ + initrd @INITRD_DI@ + append vga=788 theme=dark @APPEND_INSTALL@ --- quiet + + label darkexpert + menu label Expert install + linux @KERNEL_DI@ + initrd @INITRD_DI@ + append priority=low vga=788 theme=dark @APPEND_INSTALL@ + + label darkrescue + menu label Rescue mode + linux @KERNEL_DI@ + initrd @INITRD_DI@ + append rescue/enable=true vga=788 theme=dark @APPEND_INSTALL@ --- quiet + + label darkauto + menu label Automated install + linux @KERNEL_DI@ + initrd @INITRD_DI@ + append auto=true priority=critical vga=788 theme=dark @APPEND_INSTALL@ --- quiet + menu end + menu begin speechinstall menu label ^Speech-enabled install options menu title Speech-enabled install options diff --git a/share/bootloaders/syslinux_common/install_text.cfg b/share/bootloaders/syslinux_common/install_text.cfg index 7804d1944..cf2e17cb5 100644 --- a/share/bootloaders/syslinux_common/install_text.cfg +++ b/share/bootloaders/syslinux_common/install_text.cfg @@ -35,4 +35,37 @@ menu begin install linux @KERNEL_DI@ initrd @INITRD_DI@ append auto=true priority=critical vga=788 @APPEND_INSTALL@ --- quiet + + menu begin darkinstall + menu label Accessible ^dark contrast installer options + menu title Accessible dark contrast installer options + include stdmenu.cfg + label mainmenu + menu label ^Back.. + menu exit + + label darkinstall + menu label ^Install + linux @KERNEL_DI@ + initrd @INITRD_DI@ + append vga=788 theme=dark @APPEND_INSTALL@ --- quiet + + label darkexpert + menu label E^xpert install + linux @KERNEL_DI@ + initrd @INITRD_DI@ + append priority=low vga=788 theme=dark @APPEND_INSTALL@ + + label darkrescue + menu label ^Rescue mode + linux @KERNEL_DI@ + initrd @INITRD_DI@ + append rescue/enable=true vga=788 theme=dark @APPEND_INSTALL@ --- quiet + + label darkauto + menu label ^Automated install + linux @KERNEL_DI@ + initrd @INITRD_DI@ + append auto=true priority=critical vga=788 theme=dark @APPEND_INSTALL@ --- quiet + menu end menu end |
