summaryrefslogtreecommitdiff
path: root/share/bootloaders/grub-pc/install_text.cfg
diff options
context:
space:
mode:
authorLyndon Brown <jnqnfe@gmail.com>2020-04-04 05:27:31 +0100
committerLyndon Brown <jnqnfe@gmail.com>2020-05-15 19:35:09 +0000
commitab2e8a91f5247075c173930f340ebccb92914a0b (patch)
treea14e6cc378e9dce46ca3c28681281cef164a90ca /share/bootloaders/grub-pc/install_text.cfg
parent9b2564a3ff2264ce3fabd02165f6e86b3a4f2621 (diff)
downloadvyos-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/grub-pc/install_text.cfg')
-rw-r--r--share/bootloaders/grub-pc/install_text.cfg25
1 files changed, 25 insertions, 0 deletions
diff --git a/share/bootloaders/grub-pc/install_text.cfg b/share/bootloaders/grub-pc/install_text.cfg
index 23945d6f5..1c113b806 100644
--- a/share/bootloaders/grub-pc/install_text.cfg
+++ b/share/bootloaders/grub-pc/install_text.cfg
@@ -17,3 +17,28 @@ menuentry 'Automated install' --hotkey=a {
linux @KERNEL_DI@ auto=true priority=critical vga=788 @APPEND_INSTALL@ --- quiet
initrd @INITRD_DI@
}
+
+submenu 'Accessible dark contrast installer options ...' --hotkey=d {
+
+ source /boot/grub/theme.cfg
+
+ menuentry 'Install' --hotkey=i {
+ linux @KERNEL_DI@ vga=788 theme=dark @APPEND_INSTALL@ --- quiet
+ initrd @INITRD_DI@
+ }
+
+ menuentry 'Expert install' --hotkey=x {
+ linux @KERNEL_DI@ priority=low vga=788 theme=dark @APPEND_INSTALL@
+ initrd @INITRD_DI@
+ }
+
+ menuentry 'Rescue mode' --hotkey=r {
+ linux @KERNEL_DI@ rescue/enable=true vga=788 theme=dark @APPEND_INSTALL@ --- quiet
+ initrd @INITRD_DI@
+ }
+
+ menuentry 'Automated install' --hotkey=a {
+ linux @KERNEL_DI@ auto=true priority=critical vga=788 theme=dark @APPEND_INSTALL@ --- quiet
+ initrd @INITRD_DI@
+ }
+}