diff options
author | jnqnfe <jnqnfe@gmail.com> | 2015-01-28 04:23:09 +0000 |
---|---|---|
committer | Luca Boccassi <bluca@debian.org> | 2020-04-01 15:25:32 +0000 |
commit | 314ca3d56a791ff175c721177eafd3e873445518 (patch) | |
tree | ed9a3415421756d47b487bb62722521b4eff127f /functions | |
parent | a32519a84a72466d962e6efe1a59541df30ffca3 (diff) | |
download | vyos-live-build-314ca3d56a791ff175c721177eafd3e873445518.tar.gz vyos-live-build-314ca3d56a791ff175c721177eafd3e873445518.zip |
bootloaders: replace use of vga=normal with vga=788 in live menu entries
For consistency with install entries (both in live-build and
official Debian install discs).
Comparing with live-build created installer entries, grub-legacy
and grub2 both favour vga-788 for GUI entries and vga=normal for
test entries, whilst syslinux uses vga-788 for everything.
Gbp-Dch: Short
Diffstat (limited to 'functions')
-rwxr-xr-x | functions/defaults.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh index daeb7ca78..72e5e94cd 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -434,12 +434,12 @@ Set_config_defaults () case "${LB_INITRAMFS}" in live-boot) LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE:-boot=live components quiet splash}" - LB_BOOTAPPEND_LIVE_FAILSAFE="${LB_BOOTAPPEND_LIVE_FAILSAFE:-boot=live components memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=normal}" + LB_BOOTAPPEND_LIVE_FAILSAFE="${LB_BOOTAPPEND_LIVE_FAILSAFE:-boot=live components memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=788}" ;; none) LB_BOOTAPPEND_LIVE="${LB_BOOTAPPEND_LIVE:-quiet splash}" - LB_BOOTAPPEND_LIVE_FAILSAFE="${LB_BOOTAPPEND_LIVE_FAILSAFE:-memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=normal}" + LB_BOOTAPPEND_LIVE_FAILSAFE="${LB_BOOTAPPEND_LIVE_FAILSAFE:-memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=788}" ;; esac |