[PATCH] arm/trusted-firmware-a: Include *.dtb in package
Bence Balogh <[email protected]> Fri, 19 Dec 2025 15:15:27 +0000
| Newsgroups | org.yoctoproject.lists.meta-arm |
|---|---|
| Message-ID | <[email protected]> |
The TF-A can install files with dtb extension. This is not handled in the firmware.bbclass so append it here. Signed-off-by: Bence Balogh <[email protected]> --- .../recipes-bsp/trusted-firmware-a/trusted-firmware-a.inc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meta-arm/recipes-bsp/trusted-firmware-a/trusted-firmware-a.inc b/meta-arm/recipes-bsp/trusted-firmware-a/trusted-firmware-a.inc index 49d7eaf5..321a8907 100644 --- a/meta-arm/recipes-bsp/trusted-firmware-a/trusted-firmware-a.inc +++ b/meta-arm/recipes-bsp/trusted-firmware-a/trusted-firmware-a.inc @@ -229,6 +229,10 @@ do_install() { done } +# The firmware.bbclass only adds *.bin files by default but TF-A could install +# files with dtb extension +FILES:${PN} += "${FIRMWARE_DIR}/*.dtb" + # Skip QA check for relocations in .text of elf binaries INSANE_SKIP:${PN}-dbg += "textrel" # Build paths are currently embedded