Revision: 2681
http://svn.sv.gnu.org/viewvc/?view=rev&root=grub&revision=2681
Author: fzielcke
Date: 2009-11-03 14:25:34 +0000 (Tue, 03 Nov 2009)
Log Message:
-----------
2009-11-03 Samuel Thibault <[email protected]>
* util/grub.d/30_os-prober.in: Restore default behavior for unsupported
OSes.
Modified Paths:
--------------
trunk/grub2/ChangeLog
trunk/grub2/util/grub.d/30_os-prober.in
Modified: trunk/grub2/ChangeLog
===================================================================
--- trunk/grub2/ChangeLog 2009-11-02 21:01:14 UTC (rev 2680)
+++ trunk/grub2/ChangeLog 2009-11-03 14:25:34 UTC (rev 2681)
@@ -1,3 +1,8 @@
+2009-11-03 Samuel Thibault <[email protected]>
+
+ * util/grub.d/30_os-prober.in: Restore default behavior for unsupported
+ OSes.
+
2009-11-02 Samuel Thibault <[email protected]>
* util/grub.d/30_os-prober.in: Add GNU/Hurd support
Modified: trunk/grub2/util/grub.d/30_os-prober.in
===================================================================
--- trunk/grub2/util/grub.d/30_os-prober.in 2009-11-02 21:01:14 UTC (rev
2680)
+++ trunk/grub2/util/grub.d/30_os-prober.in 2009-11-03 14:25:34 UTC (rev
2681)
@@ -158,7 +158,7 @@
}
EOF
;;
- hurd|*)
+ hurd)
cat << EOF
menuentry "${LONGNAME} (on ${DEVICE})" {
EOF
@@ -182,5 +182,8 @@
}
EOF
;;
+ *)
+ echo " ${LONGNAME} is not yet supported by grub-mkconfig." >&2
+ ;;
esac
done