]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2009-11-03 Samuel Thibault <samuel.thibault@ens-lyon.org>
authorfzielcke <fzielcke@localhost>
Tue, 3 Nov 2009 14:25:34 +0000 (14:25 +0000)
committerfzielcke <fzielcke@localhost>
Tue, 3 Nov 2009 14:25:34 +0000 (14:25 +0000)
* util/grub.d/30_os-prober.in: Restore default behavior for unsupported
OSes.

ChangeLog
util/grub.d/30_os-prober.in

index ea21457705e6d5ed7d7e73cf56aaee58bc017fc3..ffe8911d80ddc18de5500b6038d4b2e8b481222a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-11-03  Samuel Thibault  <samuel.thibault@ens-lyon.org>
+
+       * util/grub.d/30_os-prober.in: Restore default behavior for unsupported
+       OSes.
+
 2009-11-02  Samuel Thibault  <samuel.thibault@ens-lyon.org>
 
        * util/grub.d/30_os-prober.in: Add GNU/Hurd support
index e14a07316b1757c63cb247f2fa079ad384a68519..c5728866cdcc4e0310c187195ee706ffb89ce946 100644 (file)
@@ -158,7 +158,7 @@ EOF
 }
 EOF
     ;;
-    hurd|*)
+    hurd)
       cat << EOF
 menuentry "${LONGNAME} (on ${DEVICE})" {
 EOF
@@ -182,5 +182,8 @@ EOF
 }
 EOF
     ;;
+    *)
+      echo "  ${LONGNAME} is not yet supported by grub-mkconfig." >&2
+    ;;
   esac
 done