]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* util/grub-install.in: Replace useless recomendation to pass
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Sat, 6 Nov 2010 20:37:13 +0000 (21:37 +0100)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Sat, 6 Nov 2010 20:37:13 +0000 (21:37 +0100)
--modules with a recomendation to report a bug.

ChangeLog
util/grub-install.in

index 5185bb380a819ad75e0a6b48b95f881dd2f182ec..8dea7854cfddab29a55bbbbf7d81f9c41f5d653c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2010-11-06  Vladimir Serbinenko  <phcoder@gmail.com>
+
+       * util/grub-install.in: Replace useless recomendation to pass
+       --modules with a recomendation to report a bug.
+
 2010-11-06  Vladimir Serbinenko  <phcoder@gmail.com>
 
        Properly register serial terminfo.
index 8b0f5ebe12685e11508e3c02f71a23cd6ff20935..20b3cab462690d8dacd278a3205e552239a2963e 100644 (file)
@@ -466,9 +466,9 @@ fi
 
 # Create the core image. First, auto-detect the filesystem module.
 fs_module=`$grub_probe --target=fs --device ${grub_device}`
-if test "x$fs_module" = x -a "x$modules" = x; then
-    echo "Auto-detection of a filesystem module failed." 1>&2
-    echo "Please specify the module with the option \`--modules' explicitly." 1>&2
+if test "x$fs_module" = x ; then
+    echo "Auto-detection of a filesystem of ${grub_device} failed." 1>&2
+    echo "Please report this together with the output of \"$grub_probe --target=fs -v ${grubdir}\" to <bug-grub@gnu.org>" 1>&2
     exit 1
 fi