* util/grub.d/10_linux.in (linux_entry): Don't default to
gfxpayload=keep if Linux doesn't support video handover.
+2010-02-26 Vladimir Serbinenko <phcoder@gmail.com>
+
+ * util/grub.d/10_linux.in (linux_entry): Don't default to
+ gfxpayload=keep if Linux doesn't support video handover.
+
2010-02-25 Vladimir Serbinenko <phcoder@gmail.com>
Don't compile video modules on yeeloong since video subsystem is part
# 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
- if grep -qx "CONFIG_FB_EFI=y" /boot/config-${version} 2> /dev/null ; then
+ if grep -qx "CONFIG_FB_EFI=y" /boot/config-${version} 2> /dev/null \
+ && grep -qx "CONFIG_VT_HW_CONSOLE_BINDING=y" /boot/config-${version} 2> /dev/null; then
cat << EOF
set gfxpayload=keep
EOF