summaryrefslogtreecommitdiff
path: root/sysutils/grub2/files/patch-util_grub-install.in
blob: b357b4c74797515af0192f1bde2235601228f54d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
--- util/grub-install.in.orig	2012-06-26 21:31:03.000000000 +0000
+++ util/grub-install.in
@@ -107,6 +107,8 @@ usage () {
     print_option_help "--recheck" "$(gettext "delete device map if it already exists")"
     print_option_help "--force" "$(gettext "install even if problems are detected")"
     print_option_help "--force-file-id" "$(gettext "use identifier file even if UUID is available")"
+    print_option_help "--force-label" "$(gettext "use filesystem label even if UUID is available")"
+
     print_option_help "--disk-module=$(gettext "MODULE")" "$(gettext "disk module to use (biosdisk or native). This option is only available on BIOS target.")"
     print_option_help "--no-nvram" "$(gettext "don't update the \`boot-device' NVRAM variable. This option is only available on IEEE1275 targets.")"
     print_option_help  "--removable" "$(gettext "the installation device is removable. This option is only available on EFI.")"
@@ -159,6 +161,9 @@ do
     --force-file-id)
 	force_file_id=y ;;
 
+    --force-label)
+	force_fs_label=y ;;
+
 # Accept and ignore for compatibility
     --font)
         shift;;
@@ -585,7 +590,7 @@ fi
 partmap_module=
 for x in `echo "${grub_device}" | xargs "$grub_probe" --device-map="${device_map}" --target=partmap --device 2> /dev/null`; do
    case "$x" in
-       netbsd | openbsd) 
+       netbsd | openbsd | freebsd )
 	   partmap_module="$partmap_module part_bsd";;
        "") ;;
        *)
@@ -593,6 +598,11 @@ for x in `echo "${grub_device}" | xargs 
    esac
 done
 
+case `uname -o` in 
+    FreeBSD)
+	    partmap_module="$partmap_module part_msdos part_bsd";;
+esac
+
 # Device abstraction module, if any (lvm, raid).
 devabstraction_module="`echo "${grub_device}" | xargs "$grub_probe" --device-map="${device_map}" --target=abstraction --device`"
 
@@ -668,16 +678,28 @@ if [ "x${devabstraction_module}" = "x" ]
 	    echo 1>&2
 	    hints=
         fi
+
+	if [ x"$force_fs_label" = xy ]; then
+            fs_label="`echo "${grub_device}" | xargs "$grub_probe" --device-map="${device_map}" --target=fs_label --device`"
+	fi
+
+	if [ x"$fs_label" != x ]; then
+            echo "search.fs_label ${fs_label} root $hints " >> "${grubdir}/${grub_modinfo_target_cpu}-$grub_modinfo_platform/load.cfg"
+	    search_module=search_label
+	else
+
 	if [ x"$uuid" != x ]; then
             echo "search.fs_uuid ${uuid} root $hints " >> "${grubdir}/${grub_modinfo_target_cpu}-$grub_modinfo_platform/load.cfg"
 	    search_module=search_fs_uuid
 	else
 	    mkdir -p "${grubdir}/uuid"
-	    file="`mktemp "${grubdir}/uuid/XXXXXXXXXXXXXXXXXXXXXXXXX"`"
+	    file="`mktemp "${grubdir}/uuid/XXXX-XXXX-XXXX"`"
 	    relfile="`${grub_mkrelpath} "$file"`"
             echo "search.file '${relfile}' root $hints " >> "${grubdir}/${grub_modinfo_target_cpu}-$grub_modinfo_platform/load.cfg"
 	    search_module=search_fs_file
 	fi
+	fi
+
 	echo 'set prefix=($root)'"$(echo "${relative_grubdir}" | sed "s,\\([ \"'\\\\]\\),\\\\\\1,g")" >> "${grubdir}/${grub_modinfo_target_cpu}-$grub_modinfo_platform/load.cfg"
 	config_opt_file="${grubdir}/${grub_modinfo_target_cpu}-$grub_modinfo_platform/load.cfg"
         modules="$modules $search_module"