123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- --- 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',
|