* util/grub-probe.c (probe): Separate different drives in hint-str
by spaces and not newlines. * util/grub-mkconfig_lib.in: Handle multidevice filesystem.
This commit is contained in:
parent
44016e527a
commit
588744d0dc
3 changed files with 33 additions and 11 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2013-10-14 Vladimir Serbinenko <phcoder@gmail.com>
|
||||||
|
|
||||||
|
* util/grub-probe.c (probe): Separate different drives in hint-str
|
||||||
|
by spaces and not newlines.
|
||||||
|
* util/grub-mkconfig_lib.in: Handle multidevice filesystem.
|
||||||
|
|
||||||
2013-10-14 Andrey Borzenkov <arvidjaar@gmail.com>
|
2013-10-14 Andrey Borzenkov <arvidjaar@gmail.com>
|
||||||
|
|
||||||
* grub-core/disk/efi/efidisk.c (grub_efidisk_get_device_name):
|
* grub-core/disk/efi/efidisk.c (grub_efidisk_get_device_name):
|
||||||
|
|
|
@ -117,7 +117,10 @@ EOF
|
||||||
|
|
||||||
prepare_grub_to_access_device ()
|
prepare_grub_to_access_device ()
|
||||||
{
|
{
|
||||||
partmap="`"${grub_probe}" --device "$@" --target=partmap`"
|
old_ifs="$IFS"
|
||||||
|
IFS='
|
||||||
|
'
|
||||||
|
partmap="`"${grub_probe}" --device $@ --target=partmap`"
|
||||||
for module in ${partmap} ; do
|
for module in ${partmap} ; do
|
||||||
case "${module}" in
|
case "${module}" in
|
||||||
netbsd | openbsd)
|
netbsd | openbsd)
|
||||||
|
@ -128,46 +131,51 @@ prepare_grub_to_access_device ()
|
||||||
done
|
done
|
||||||
|
|
||||||
# Abstraction modules aren't auto-loaded.
|
# Abstraction modules aren't auto-loaded.
|
||||||
abstraction="`"${grub_probe}" --device "$@" --target=abstraction`"
|
abstraction="`"${grub_probe}" --device $@ --target=abstraction`"
|
||||||
for module in ${abstraction} ; do
|
for module in ${abstraction} ; do
|
||||||
echo "insmod ${module}"
|
echo "insmod ${module}"
|
||||||
done
|
done
|
||||||
|
|
||||||
fs="`"${grub_probe}" --device "$@" --target=fs`"
|
fs="`"${grub_probe}" --device $@ --target=fs`"
|
||||||
for module in ${fs} ; do
|
for module in ${fs} ; do
|
||||||
echo "insmod ${module}"
|
echo "insmod ${module}"
|
||||||
done
|
done
|
||||||
|
|
||||||
if [ x$GRUB_ENABLE_CRYPTODISK = xy ]; then
|
if [ x$GRUB_ENABLE_CRYPTODISK = xy ]; then
|
||||||
for uuid in "`"${grub_probe}" --device "$@" --target=cryptodisk_uuid`"; do
|
for uuid in "`"${grub_probe}" --device $@ --target=cryptodisk_uuid`"; do
|
||||||
echo "cryptomount -u $uuid"
|
echo "cryptomount -u $uuid"
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# If there's a filesystem UUID that GRUB is capable of identifying, use it;
|
# If there's a filesystem UUID that GRUB is capable of identifying, use it;
|
||||||
# otherwise set root as per value in device.map.
|
# otherwise set root as per value in device.map.
|
||||||
fs_hint="`"${grub_probe}" --device "$@" --target=compatibility_hint`"
|
fs_hint="`"${grub_probe}" --device $@ --target=compatibility_hint`"
|
||||||
if [ "x$fs_hint" != x ]; then
|
if [ "x$fs_hint" != x ]; then
|
||||||
echo "set root='$fs_hint'"
|
echo "set root='$fs_hint'"
|
||||||
fi
|
fi
|
||||||
if fs_uuid="`"${grub_probe}" --device "$@" --target=fs_uuid 2> /dev/null`" ; then
|
if fs_uuid="`"${grub_probe}" --device $@ --target=fs_uuid 2> /dev/null`" ; then
|
||||||
hints="`"${grub_probe}" --device "$@" --target=hints_string 2> /dev/null`" || hints=
|
hints="`"${grub_probe}" --device $@ --target=hints_string 2> /dev/null`" || hints=
|
||||||
echo "if [ x\$feature_platform_search_hint = xy ]; then"
|
echo "if [ x\$feature_platform_search_hint = xy ]; then"
|
||||||
echo " search --no-floppy --fs-uuid --set=root ${hints} ${fs_uuid}"
|
echo " search --no-floppy --fs-uuid --set=root ${hints} ${fs_uuid}"
|
||||||
echo "else"
|
echo "else"
|
||||||
echo " search --no-floppy --fs-uuid --set=root ${fs_uuid}"
|
echo " search --no-floppy --fs-uuid --set=root ${fs_uuid}"
|
||||||
echo "fi"
|
echo "fi"
|
||||||
fi
|
fi
|
||||||
|
IFS="$old_ifs"
|
||||||
}
|
}
|
||||||
|
|
||||||
grub_get_device_id ()
|
grub_get_device_id ()
|
||||||
{
|
{
|
||||||
|
old_ifs="$IFS"
|
||||||
|
IFS='
|
||||||
|
'
|
||||||
device="$1"
|
device="$1"
|
||||||
if fs_uuid="`"${grub_probe}" --device "${device}" --target=fs_uuid 2> /dev/null`" ; then
|
if fs_uuid="`"${grub_probe}" --device ${device} --target=fs_uuid 2> /dev/null`" ; then
|
||||||
echo "$fs_uuid";
|
echo "$fs_uuid";
|
||||||
else
|
else
|
||||||
echo "$device"
|
echo $device |sed 's, ,_,g'
|
||||||
fi
|
fi
|
||||||
|
IFS="$old_ifs"
|
||||||
}
|
}
|
||||||
|
|
||||||
grub_file_is_not_garbage ()
|
grub_file_is_not_garbage ()
|
||||||
|
@ -274,13 +282,18 @@ gettext_printf () {
|
||||||
|
|
||||||
uses_abstraction () {
|
uses_abstraction () {
|
||||||
device="$1"
|
device="$1"
|
||||||
|
old_ifs="$IFS"
|
||||||
|
IFS='
|
||||||
|
'
|
||||||
|
|
||||||
abstraction="`"${grub_probe}" --device "${device}" --target=abstraction`"
|
abstraction="`"${grub_probe}" --device ${device} --target=abstraction`"
|
||||||
for module in ${abstraction}; do
|
for module in ${abstraction}; do
|
||||||
if test "x${module}" = "x$2"; then
|
if test "x${module}" = "x$2"; then
|
||||||
|
IFS="$old_ifs"
|
||||||
return 0
|
return 0
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
IFS="$old_ifs"
|
||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -555,7 +555,10 @@ probe (const char *path, char **device_names, char delim)
|
||||||
print_full_name (map, dev);
|
print_full_name (map, dev);
|
||||||
printf ("' ");
|
printf ("' ");
|
||||||
}
|
}
|
||||||
printf ("\n");
|
if (curdrive[1])
|
||||||
|
printf (" ");
|
||||||
|
else
|
||||||
|
printf ("\n");
|
||||||
|
|
||||||
grub_device_close (dev);
|
grub_device_close (dev);
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in a new issue