[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 10/16] 10_linux.in: Add devicetree loading
From: |
Leo Sandoval |
Subject: |
[PATCH v3 10/16] 10_linux.in: Add devicetree loading |
Date: |
Thu, 10 Oct 2024 15:43:28 -0600 |
From: Peter Jones <pjones@redhat.com>
Signed-off-by: Peter Jones <pjones@redhat.com>
Switch to use APM Mustang device tree, for hardware testing.
Signed-off-by: David A. Marlin <d.marlin@redhat.com>
Use the default device tree from the grub default file
instead of hardcoding a value.
Signed-off-by: David A. Marlin <dmarlin@redhat.com>
---
util/grub-mkconfig.in | 3 ++-
util/grub.d/10_linux.in | 15 +++++++++++++++
2 files changed, 17 insertions(+), 1 deletion(-)
diff --git a/util/grub-mkconfig.in b/util/grub-mkconfig.in
index 32c480dae..d1bf4983b 100644
--- a/util/grub-mkconfig.in
+++ b/util/grub-mkconfig.in
@@ -255,7 +255,8 @@ export GRUB_DEFAULT \
GRUB_ENABLE_CRYPTODISK \
GRUB_BADRAM \
GRUB_OS_PROBER_SKIP_LIST \
- GRUB_DISABLE_SUBMENU
+ GRUB_DISABLE_SUBMENU \
+ GRUB_DEFAULT_DTB
if test "x${grub_cfg}" != "x"; then
rm -f "${grub_cfg}.new"
diff --git a/util/grub.d/10_linux.in b/util/grub.d/10_linux.in
index cc393be7e..00d4b220c 100644
--- a/util/grub.d/10_linux.in
+++ b/util/grub.d/10_linux.in
@@ -155,6 +155,13 @@ EOF
sed "s/^/$submenu_indentation/" << EOF
echo '$(echo "$message" | grub_quote)'
initrd $(echo $initrd_path)
+EOF
+ fi
+ if test -n "${fdt}" ; then
+ message="$(gettext_printf "Loading fdt ...")"
+ sed "s/^/$submenu_indentation/" << EOF
+ echo '$(echo "$message" | grub_quote)'
+ devicetree ${rel_dirname}/${fdt}
EOF
fi
sed "s/^/$submenu_indentation/" << EOF
@@ -250,6 +257,14 @@ for linux in ${reverse_sorted_list}; do
gettext_printf "Found initrd image: %s\n" "$(echo $initrd_display)" >&2
fi
+ fdt=
+ for i in "dtb-${version}" "dtb-${alt_version}"; do
+ if test -f "${dirname}/${i}/${GRUB_DEFAULT_DTB}" ; then
+ fdt="${i}/${GRUB_DEFAULT_DTB}"
+ break
+ fi
+ done
+
config=
for i in "${dirname}/config-${version}" "${dirname}/config-${alt_version}"
"/etc/kernels/kernel-config-${version}" ; do
if test -e "${i}" ; then
--
2.46.2
- [PATCH v3 00/16] First Distro-agnostic series taken from Fedora Rawhide, Leo Sandoval, 2024/10/10
- [PATCH v3 01/16] ieee1275/openfw: IBM client architecture (CAS) reboot support, Leo Sandoval, 2024/10/10
- [PATCH v3 04/16] configure.ac: Move bash completion script, Leo Sandoval, 2024/10/10
- [PATCH v3 03/16] ieee1275: Disable GRUB video support for IBM power machines, Leo Sandoval, 2024/10/10
- [PATCH v3 02/16] term/terminfo: for ppc, reset console display attr when clear screen, Leo Sandoval, 2024/10/10
- [PATCH v3 05/16] misc: Make "exit" take a return code., Leo Sandoval, 2024/10/10
- [PATCH v3 06/16] efi/init: Make efi machines load an env block from a variable, Leo Sandoval, 2024/10/10
- [PATCH v3 10/16] 10_linux.in: Add devicetree loading,
Leo Sandoval <=
- [PATCH v3 09/16] commands: Pass "\x[[:hex:]][[:hex:]]" straight through unmolested., Leo Sandoval, 2024/10/10
- [PATCH v3 11/16] Makefile.common: Add .eh_frame to list of relocations stripped, Leo Sandoval, 2024/10/10
- [PATCH v3 08/16] normal: Add fw_path variable (revised), Leo Sandoval, 2024/10/10
- [PATCH v3 12/16] 10_linux.in: Don't require a password to boot entries generated by grub-mkconfig., Leo Sandoval, 2024/10/10
- [PATCH v3 13/16] normal/main: fw_path prefix when fallback searching for grub config, Leo Sandoval, 2024/10/10
- [PATCH v3 15/16] 10_linux.in: Generate OS and CLASS in 10_linux from /etc/os-release, Leo Sandoval, 2024/10/10
- [PATCH v3 16/16] normal/main: Try $prefix if $fw_path doesn't work., Leo Sandoval, 2024/10/10
- [PATCH v3 14/16] normal/main: Try mac/guid/etc before grub.cfg on tftp config files., Leo Sandoval, 2024/10/10