* 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).
This commit is contained in:
Colin Watson 2010-06-04 13:53:30 +01:00
parent 9cdfe32f09
commit f28a9212b4
2 changed files with 7 additions and 1 deletions

View file

@ -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

View 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`"