]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* util/grub-mkconfig_lib.in (prepare_grub_to_access_device): Prepend
authorColin Watson <cjwatson@ubuntu.com>
Fri, 4 Jun 2010 12:53:30 +0000 (13:53 +0100)
committerColin Watson <cjwatson@ubuntu.com>
Fri, 4 Jun 2010 12:53:30 +0000 (13:53 +0100)
"part_" to partmap module names, in line with grub-install.
Reported by: Jindřich Makovička (Debian bug #584426).

ChangeLog
util/grub-mkconfig_lib.in

index fd2f8ae724f3c85d4bd6fdfb88699e0b96dab5d3..65a3c69b89128fed7eb615dc07ac78dd34e07bbd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2010-06-04  Colin Watson  <cjwatson@ubuntu.com>
+
+       * util/grub-mkconfig_lib.in (prepare_grub_to_access_device): Prepend
+       "part_" to partmap module names, in line with grub-install.
+       Reported by: Jindřich Makovička (Debian bug #584426).
+
 2010-06-04  Colin Watson  <cjwatson@ubuntu.com>
 
        * util/grub-mkimage.c: Make target-related error messages slightly
index 7ec8cb5be08cd0b79675efbd0e6aae07ef898e27..14ea1842f60288043d953d627893a5f564d3a9b9 100644 (file)
@@ -107,7 +107,7 @@ prepare_grub_to_access_device ()
 
   partmap="`${grub_probe} --device ${device} --target=partmap`"
   for module in ${partmap} ; do
-    echo "insmod ${module}"
+    echo "insmod part_${module}"
   done
 
   fs="`${grub_probe} --device ${device} --target=fs`"