diff options
author | jnqnfe <jnqnfe@gmail.com> | 2015-01-28 04:19:36 +0000 |
---|---|---|
committer | Lyndon Brown <jnqnfe@gmail.com> | 2020-03-22 19:43:56 +0000 |
commit | a25b77e0998ac455b48c8c523a08bd282229fb49 (patch) | |
tree | d37975cec81d2e71499bed9ffca2ca4b1bf827dc /share/bootloaders/extlinux | |
parent | 49047f05636b3aa95faf70b537ae96fa580f8194 (diff) | |
download | vyos-live-build-a25b77e0998ac455b48c8c523a08bd282229fb49.tar.gz vyos-live-build-a25b77e0998ac455b48c8c523a08bd282229fb49.zip |
bootloaders: remove old "video=vesa:ywrap,mtrr" kernel param, as done in d-i
d-i removed this in commit 0917b2dde3ff73a204d27dd2f2fffc8a41175ddd
Note: There was inconsistency between grub and syslinux in use of this, with
syslinux not having it on graphical rescue and auto modes while grub entries
did. The patch to fix that has been dropped since we're removing it everywhere
anyway.
(#395040)
Gbp-Dch: Short
Diffstat (limited to 'share/bootloaders/extlinux')
-rw-r--r-- | share/bootloaders/extlinux/install_gui.cfg | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/share/bootloaders/extlinux/install_gui.cfg b/share/bootloaders/extlinux/install_gui.cfg index 4fabe0587..9c660200a 100644 --- a/share/bootloaders/extlinux/install_gui.cfg +++ b/share/bootloaders/extlinux/install_gui.cfg @@ -12,7 +12,7 @@ menu begin install menu title Graphical install linux /install/gtk/vmlinuz initrd /install/gtk/initrd.gz - append video=vesa:ywrap,mtrr vga=788 @APPEND_INSTALL@ --- quiet + append vga=788 @APPEND_INSTALL@ --- quiet label install menu label ^Install @@ -35,21 +35,21 @@ menu begin install menu title Graphical expert install linux /install/gtk/vmlinuz initrd /install/gtk/initrd.gz - append priority=low video=vesa:ywrap,mtrr vga=788 @APPEND_INSTALL@ + append priority=low vga=788 @APPEND_INSTALL@ label rescuegui menu label Graphical ^rescue mode menu title Graphical rescue mode linux /install/gtk/vmlinuz initrd /install/gtk/initrd.gz - append rescue/enable=true video=vesa:ywrap,mtrr vga=788 @APPEND_INSTALL@ --- quiet + append rescue/enable=true vga=788 @APPEND_INSTALL@ --- quiet label autogui menu label Graphical ^automated install menu title Graphical automated install linux /install/gtk/vmlinuz initrd /install/gtk/initrd.gz - append auto=true priority=critical video=vesa:ywrap,mtrr vga=788 @APPEND_INSTALL@ --- quiet + append auto=true priority=critical vga=788 @APPEND_INSTALL@ --- quiet label expert menu label Expert install |