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.
This commit is contained in:
parent
c140a18037
commit
72b286313a
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
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>
|
2010-02-25 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
Don't compile video modules on yeeloong since video subsystem is part
|
Don't compile video modules on yeeloong since video subsystem is part
|
||||||
|
|
|
@ -66,7 +66,8 @@ linux_entry ()
|
||||||
# Use ELILO's generic "efifb" when it's known to be available.
|
# 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.
|
# FIXME: We need an interface to select vesafb in case efifb can't be used.
|
||||||
if [ "x$GRUB_GFXPAYLOAD_LINUX" = x ]; then
|
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
|
cat << EOF
|
||||||
set gfxpayload=keep
|
set gfxpayload=keep
|
||||||
EOF
|
EOF
|
||||||
|
|
Loading…
Reference in a new issue