mirror of
https://git.proxmox.com/git/grub2
synced 2025-07-25 10:55:50 +00:00
Amend gfxpayload_keep_default.patch to no longer remove the call to
load_video when GRUB_GFXPAYLOAD_LINUX is empty (closes: #661789).
This commit is contained in:
parent
dc91a29064
commit
a0004df020
7
debian/changelog
vendored
7
debian/changelog
vendored
@ -1,3 +1,10 @@
|
||||
grub2 (1.99-27) UNRELEASED; urgency=low
|
||||
|
||||
* Amend gfxpayload_keep_default.patch to no longer remove the call to
|
||||
load_video when GRUB_GFXPAYLOAD_LINUX is empty (closes: #661789).
|
||||
|
||||
-- Colin Watson <cjwatson@debian.org> Sun, 20 Jan 2013 16:35:19 +0000
|
||||
|
||||
grub2 (1.99-26) unstable; urgency=low
|
||||
|
||||
* Remove /boot/grub/unicode.pf2 on purge of grub-efi-{amd64,i386} (closes:
|
||||
|
16
debian/patches/gfxpayload_keep_default.patch
vendored
16
debian/patches/gfxpayload_keep_default.patch
vendored
@ -17,22 +17,16 @@ Index: b/util/grub.d/10_linux.in
|
||||
===================================================================
|
||||
--- a/util/grub.d/10_linux.in
|
||||
+++ b/util/grub.d/10_linux.in
|
||||
@@ -77,17 +77,7 @@
|
||||
|
||||
# Use ELILO's generic "efifb" when it's known to be available.
|
||||
# FIXME: We need an interface to select vesafb in case efifb can't be used.
|
||||
- if [ "x$GRUB_GFXPAYLOAD_LINUX" = x ]; then
|
||||
- cat << EOF
|
||||
- load_video
|
||||
-EOF
|
||||
@@ -81,12 +81,6 @@
|
||||
cat << EOF
|
||||
load_video
|
||||
EOF
|
||||
- if grep -qx "CONFIG_FB_EFI=y" "${config}" 2> /dev/null \
|
||||
- && grep -qx "CONFIG_VT_HW_CONSOLE_BINDING=y" "${config}" 2> /dev/null; then
|
||||
- cat << EOF
|
||||
- set gfxpayload=keep
|
||||
-EOF
|
||||
- fi
|
||||
- else
|
||||
+ if [ "x$GRUB_GFXPAYLOAD_LINUX" != x ]; then
|
||||
else
|
||||
if [ "x$GRUB_GFXPAYLOAD_LINUX" != xtext ]; then
|
||||
cat << EOF
|
||||
load_video
|
||||
|
Loading…
Reference in New Issue
Block a user