summaryrefslogtreecommitdiff
path: root/share/bootloaders
diff options
context:
space:
mode:
authorLyndon Brown <jnqnfe@gmail.com>2020-04-04 05:11:48 +0100
committerRaphaƫl Hertzog <hertzog@debian.org>2020-05-01 12:37:36 +0200
commitd22c1f177d7192f1d71743783a88ed6e98e56c6a (patch)
treeed89110d83e7638a014a0782150cf5fedad6ec72 /share/bootloaders
parent375ff465e5866ec8ef175ed81e75ff08a3370ba8 (diff)
downloadvyos-live-build-d22c1f177d7192f1d71743783a88ed6e98e56c6a.tar.gz
vyos-live-build-d22c1f177d7192f1d71743783a88ed6e98e56c6a.zip
grub2: fix vga= consistency
- most entries used vga=788 rather than vga=normal (which are equivalent) - the syslinux menu uses 788 exclusively - so do the official install discs Gbp-Dch: Short
Diffstat (limited to 'share/bootloaders')
-rw-r--r--share/bootloaders/grub-pc/install_gui.cfg8
-rw-r--r--share/bootloaders/grub-pc/install_text.cfg8
2 files changed, 8 insertions, 8 deletions
diff --git a/share/bootloaders/grub-pc/install_gui.cfg b/share/bootloaders/grub-pc/install_gui.cfg
index c4361de5a..399877017 100644
--- a/share/bootloaders/grub-pc/install_gui.cfg
+++ b/share/bootloaders/grub-pc/install_gui.cfg
@@ -19,22 +19,22 @@ menuentry 'Graphical automated install' --hotkey=a {
}
menuentry 'Install' --hotkey=i {
- linux @KERNEL_DI@ vga=normal @APPEND_INSTALL@ --- quiet
+ linux @KERNEL_DI@ vga=788 @APPEND_INSTALL@ --- quiet
initrd @INITRD_DI@
}
menuentry 'Expert install' {
- linux @KERNEL_DI@ priority=low vga=normal @APPEND_INSTALL@
+ linux @KERNEL_DI@ priority=low vga=788 @APPEND_INSTALL@
initrd @INITRD_DI@
}
menuentry 'Rescue mode' {
- linux @KERNEL_DI@ rescue/enable=true vga=normal @APPEND_INSTALL@ --- quiet
+ 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=normal @APPEND_INSTALL@ --- quiet
+ linux @KERNEL_DI@ auto=true priority=critical vga=788 @APPEND_INSTALL@ --- quiet
initrd @INITRD_DI@
}
diff --git a/share/bootloaders/grub-pc/install_text.cfg b/share/bootloaders/grub-pc/install_text.cfg
index e77a2d34c..23945d6f5 100644
--- a/share/bootloaders/grub-pc/install_text.cfg
+++ b/share/bootloaders/grub-pc/install_text.cfg
@@ -1,19 +1,19 @@
menuentry 'Install' --hotkey=i {
- linux @KERNEL_DI@ vga=normal @APPEND_INSTALL@ --- quiet
+ linux @KERNEL_DI@ vga=788 @APPEND_INSTALL@ --- quiet
initrd @INITRD_DI@
}
menuentry 'Expert install' --hotkey=x {
- linux @KERNEL_DI@ priority=low vga=normal @APPEND_INSTALL@
+ linux @KERNEL_DI@ priority=low vga=788 @APPEND_INSTALL@
initrd @INITRD_DI@
}
menuentry 'Rescue mode' --hotkey=r {
- linux @KERNEL_DI@ rescue/enable=true vga=normal @APPEND_INSTALL@ --- quiet
+ linux @KERNEL_DI@ rescue/enable=true vga=788 @APPEND_INSTALL@ --- quiet
initrd @INITRD_DI@
}
menuentry 'Automated install' --hotkey=a {
- linux @KERNEL_DI@ auto=true priority=critical vga=normal @APPEND_INSTALL@ --- quiet
+ linux @KERNEL_DI@ auto=true priority=critical vga=788 @APPEND_INSTALL@ --- quiet
initrd @INITRD_DI@
}