--- 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:52:13.679588602 -0500 @@ -155,6 +155,14 @@ initrd $(echo $initrd_path) EOF fi + if test -d "${rel_dirname}/dtbs/${version}/omap3-beagle-xm-ab.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-ab.dtb +EOF + fi sed "s/^/$submenu_indentation/" << EOF } EOF @@ -261,6 +269,10 @@ fi fi + if test -d "${dirname}/dtbs/${version}/omap3-beagle-xm-ab.dtb" ; then + gettext_printf "Found device tree directory: %s\n" "${dirname}/dtbs/${version}/omap3-beagle-xm-ab.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:53:25.419588460 -0500 @@ -172,6 +172,14 @@ ${module_loader} ${rel_dirname}/${xenpolicy} EOF fi + if test -d "${rel_dirname}/dtbs/${version}/omap3-beagle-xm-ab.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-ab.dtb +EOF + fi sed "s/^/$submenu_indentation/" << EOF } EOF @@ -316,6 +324,10 @@ fi fi + if test -d "${dirname}/dtbs/${version}/omap3-beagle-xm-ab.dtb" ; then + gettext_printf "Found device tree directory: %s\n" "${dirname}/dtbs/${version}/omap3-beagle-xm-ab.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',