grub-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] os-prober: Fix translating device to mach format


From: Samuel Thibault
Subject: [PATCH] os-prober: Fix translating device to mach format
Date: Sun, 11 Mar 2018 21:58:20 +0100

grub-probe would currently would currently print e.g.
"hostdisk//dev/sda,msdos1", i.e. not something we can translate.  We can
instead use compatibility_hint which have more well-defined format.

Signed-off-by: Samuel Thibault <address@hidden>
---
 util/grub.d/30_os-prober.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/util/grub.d/30_os-prober.in b/util/grub.d/30_os-prober.in
index 515a68c7a..38444fe65 100644
--- a/util/grub.d/30_os-prober.in
+++ b/util/grub.d/30_os-prober.in
@@ -297,8 +297,8 @@ menuentry '$(echo "${LONGNAME} $onstr" | grub_quote)' 
--class hurd --class gnu -
 EOF
       save_default_entry | grub_add_tab
       prepare_grub_to_access_device ${DEVICE} | grub_add_tab
-      grub_device="`${grub_probe} --device ${DEVICE} --target=drive`"
-      mach_device="`echo "${grub_device}" | sed -e 
's/(\(hd.*\),msdos\(.*\))/\1s\2/'`"
+      grub_device="`${grub_probe} --device ${DEVICE} 
--target=compatibility_hint`"
+      mach_device="`echo "${grub_device}" | sed -e 
's/\(hd.*\),msdos\(.*\)/\1s\2/'`"
       grub_fs="`${grub_probe} --device ${DEVICE} --target=fs`"
       case "${grub_fs}" in
        *fs)    hurd_fs="${grub_fs}" ;;
-- 
2.16.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]