* 0001-blsuki-Fix-linux_cmd-size-calcution-in-bls_get_linux.patch OBS-URL: https://build.opensuse.org/package/show/Base:System/grub2?expand=0&rev=573
16 lines
741 B
Diff
16 lines
741 B
Diff
|
|
|
|
Index: grub-2.12/util/grub.d/10_linux.in
|
|
===================================================================
|
|
--- grub-2.12.orig/util/grub.d/10_linux.in
|
|
+++ grub-2.12/util/grub.d/10_linux.in
|
|
@@ -116,7 +116,7 @@ linux_entry ()
|
|
# FIXME: We need an interface to select vesafb in case efifb can't be used.
|
|
if [ "x$GRUB_GFXPAYLOAD_LINUX" = x ]; then
|
|
echo " load_video" | sed "s/^/$submenu_indentation/"
|
|
- if grep -qx "CONFIG_FB_EFI=y" "${config}" 2> /dev/null \
|
|
+ if grep -qx "CONFIG_\(DRM_EFIDRM\|DRM_VESADRM\|FB_EFI\|SYSFB_SIMPLEFB\)=y" "${config}" 2> /dev/null \
|
|
&& grep -qx "CONFIG_VT_HW_CONSOLE_BINDING=y" "${config}" 2> /dev/null; then
|
|
echo " set gfxpayload=keep" | sed "s/^/$submenu_indentation/"
|
|
fi
|