blob: 3ba413c05e12a3cafe1db8a6e271133a48e7f5ff (
plain)
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
|
--- a/util/grub.d/10_linux.in 2021-06-17 03:06:45.912081000 -0500
+++ b/util/grub.d/10_linux.in 2021-06-18 02:45:30.129589402 -0500
@@ -155,6 +155,14 @@
initrd $(echo $initrd_path)
EOF
fi
+ if test -d "${rel_dirname}/dtbs/${version}/omap3-beagle-xm.dtb" ; then
+ # TRANSLATORS: Device tree path isn't identifier. Should be translated.
+ message="$(gettext_printf "Loading devices tree path ...")"
+ sed "s/^/$submenu_indentation/" << EOF
+ echo '$(echo "$message" | grub_quote)'
+ devicetree ${rel_dirname}/dtbs/${version}/omap3-beagle-xm.dtb
+EOF
+ fi
sed "s/^/$submenu_indentation/" << EOF
}
EOF
@@ -261,6 +269,10 @@
fi
fi
+ if test -d "${dirname}/dtbs/${version}/omap3-beagle-xm.dtb" ; then
+ gettext_printf "Found device tree directory: %s\n" "${dirname}/dtbs/${version}/omap3-beagle-xm.dtb" >&2
+ fi
+
# The GRUB_DISABLE_SUBMENU option used to be different than others since it was
# mentioned in the documentation that has to be set to 'y' instead of 'true' to
# enable it. This caused a lot of confusion to users that set the option to 'y',
--- a/util/grub.d/20_linux_xen.in 2021-06-17 03:06:56.202081000 -0500
+++ b/util/grub.d/20_linux_xen.in 2021-06-18 02:46:39.199589265 -0500
@@ -172,6 +172,14 @@
${module_loader} ${rel_dirname}/${xenpolicy}
EOF
fi
+ if test -d "${rel_dirname}/dtbs/${version}/omap3-beagle-xm.dtb" ; then
+ # TRANSLATORS: Device tree path isn't identifier. Should be translated.
+ message="$(gettext_printf "Loading devices tree path ...")"
+ sed "s/^/$submenu_indentation/" << EOF
+ echo '$(echo "$message" | grub_quote)'
+ devicetree ${rel_dirname}/dtbs/${version}/omap3-beagle-xm.dtb
+EOF
+ fi
sed "s/^/$submenu_indentation/" << EOF
}
EOF
@@ -316,6 +324,10 @@
fi
fi
+ if test -d "${dirname}/dtbs/${version}/omap3-beagle-xm.dtb" ; then
+ gettext_printf "Found device tree directory: %s\n" "${dirname}/dtbs/${version}/omap3-beagle-xm.dtb" >&2
+ fi
+
# The GRUB_DISABLE_SUBMENU option used to be different than others since it was
# mentioned in the documentation that has to be set to 'y' instead of 'true' to
# enable it. This caused a lot of confusion to users that set the option to 'y',
|