* util/grub-mkconfig_lib.in (prepare_grub_to_access_device): Generate

UUID search command even if hints probing failed.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2012-06-18 21:07:26 +02:00
parent 555c786d62
commit ef76bec332
2 changed files with 7 additions and 2 deletions

View File

@ -1,4 +1,9 @@
2012-06-17 Vladimir Serbinenko <phcoder@gmail.com>
2012-06-18 Vladimir Serbinenko <phcoder@gmail.com>
* util/grub-mkconfig_lib.in (prepare_grub_to_access_device): Generate
UUID search command even if hints probing failed.
2012-06-18 Vladimir Serbinenko <phcoder@gmail.com>
* po/POTFILES.in: Regenerated.

View File

@ -153,7 +153,7 @@ prepare_grub_to_access_device ()
echo "set root='$fs_hint'"
fi
if fs_uuid="`"${grub_probe}" --device "${device}" --target=fs_uuid 2> /dev/null`" ; then
hints="`"${grub_probe}" --device "${device}" --target=hints_string 2> /dev/null`"
hints="`"${grub_probe}" --device "${device}" --target=hints_string 2> /dev/null`" || hints=
echo "if [ x\$feature_platform_search_hint = xy ]; then"
echo " search --no-floppy --fs-uuid --set=root ${hints} ${fs_uuid}"
echo "else"