]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2009-08-18 Felix Zielcke <fzielcke@z-51.de>
authorproski <proski@localhost>
Tue, 18 Aug 2009 17:57:07 +0000 (17:57 +0000)
committerproski <proski@localhost>
Tue, 18 Aug 2009 17:57:07 +0000 (17:57 +0000)
* util/grub-mkconfig.in: Don't use gfxterm by default if not
explicitly specified by the user.

ChangeLog
util/grub-mkconfig.in

index e132a24f35dda6c0ba4729b979e84135fd383810..0b929cf74bf89238c6f0517a41ae349bf070f9f8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-08-18  Felix Zielcke  <fzielcke@z-51.de>
+
+       * util/grub-mkconfig.in: Don't use gfxterm by default if not
+       explicitly specified by the user.
+
 2009-08-18  Pavel Roskin  <proski@gnu.org>
 
        * include/grub/fbfill.h (struct grub_video_fbrender_target): Use
index 5865b89cedf331d8567894852fdcbb976da15921..93f96525eeaccc1e76f2c0aa1bfa3c46b0452edb 100644 (file)
@@ -141,13 +141,7 @@ if [ "x${GRUB_TERMINAL}" != "x" ] ; then
 fi
 
 case x${GRUB_TERMINAL_OUTPUT} in
-  x)
-    # If this platform supports gfxterm, try to use it.
-    if test -e ${grub_prefix}/gfxterm.mod ; then
-      GRUB_TERMINAL_OUTPUT=gfxterm
-    fi
-  ;;
-  xconsole | xserial | xofconsole | xgfxterm) ;;
+  x | xconsole | xserial | xofconsole | xgfxterm) ;;
   *) echo "Invalid output terminal \"${GRUB_TERMINAL_OUTPUT}\"" >&2 ; exit 1 ;;
 esac