2009-06-03 Felix Zielcke * util/grub-mkconfig.in: Don't use gfxterm by default if not explicit specified by the user. diff --git a/util/grub-mkconfig.in b/util/grub-mkconfig.in index ff92590..8f84074 100644 --- a/util/grub-mkconfig.in +++ b/util/grub-mkconfig.in @@ -137,13 +137,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