]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2008-02-28 Robert Millan <rmh@aybabtu.com>
authorrobertmh <robertmh@localhost>
Thu, 28 Feb 2008 10:39:42 +0000 (10:39 +0000)
committerrobertmh <robertmh@localhost>
Thu, 28 Feb 2008 10:39:42 +0000 (10:39 +0000)
        * util/update-grub.in: Reorganise terminal validity check.  Accept
        `ieee1275:console' (OLPC) and `*:gfxterm' as valid too.
        Based on suggestion by Franklin PIAT.

ChangeLog
util/update-grub.in

index f0dee54e2e36554f72166cfd12a0a10aa2ba121e..13da46b54c77bd971b24917707ba61b9e0c72d43 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-02-28  Robert Millan  <rmh@aybabtu.com>
+
+       * util/update-grub.in: Reorganise terminal validity check.  Accept
+       `ieee1275:console' (OLPC) and `*:gfxterm' as valid too.
+       Based on suggestion by Franklin PIAT.
+
 2008-02-28  Fabian Greffrath  <greffrath@leat.rub.de>
 
        * include/grub/util/getroot.h (grub_util_check_block_device): Export new
index b4bb6058d04df63dd9809e63eb325ef5757a02d6..77c19a14de0200aba97d538f9c0bb32da67559c7 100644 (file)
@@ -124,10 +124,10 @@ fi
 # fallback to our default
 case ${platform}:${GRUB_TERMINAL} in
   pc:)                         GRUB_TERMINAL=gfxterm ;;
-  pc:console | pc:serial)      ;;
   ieee1275:)                   GRUB_TERMINAL=ofconsole ;;
-  ieee1275:ofconsole)          ;;
   *:)                          GRUB_TERMINAL=console ;;
+  pc:console | pc:serial | ieee1275:ofconsole | ieee1275:console | *:gfxterm)
+                               ;;
   *:*)                         echo "Invalid terminal \"${GRUB_TERMINAL}\"" >&2 ; exit 1 ;;
 esac