summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWeisser, Pascal <pascal.weisser.ext@karlstorz.com>2025-01-08 11:08:09 +0100
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2025-01-13 20:27:16 +0000
commit3d6f1b0e3a4904438efaff51f146472c39654907 (patch)
tree39d3cf7eae53679524ee18421560695d132db133
parenta839e9ebe75e2bfd53024e5132414481c0a72bf7 (diff)
downloadmeta-freescale-3d6f1b0e3a4904438efaff51f146472c39654907.tar.gz
imx-base: Avoid unnecessary device tree blob files.
When using fitImage as kernel image type the fitImage already contains the device tree blob files. So, it's not necessary to add them to the image boot files. Signed-off-by: Weisser, Pascal <pascal.weisser.ext@karlstorz.com> (cherry picked from commit cec6d45699ec5fc30b755f156067a07879ea404a)
-rw-r--r--conf/machine/include/imx-base.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/machine/include/imx-base.inc b/conf/machine/include/imx-base.inc
index baca3fc4..32da2ea5 100644
--- a/conf/machine/include/imx-base.inc
+++ b/conf/machine/include/imx-base.inc
@@ -637,7 +637,7 @@ IMAGE_FSTYPES ?= "${SOC_DEFAULT_IMAGE_FSTYPES}"
637 637
638IMAGE_BOOT_FILES ?= " \ 638IMAGE_BOOT_FILES ?= " \
639 ${KERNEL_IMAGETYPE} \ 639 ${KERNEL_IMAGETYPE} \
640 ${@make_dtb_boot_files(d)} \ 640 ${@bb.utils.contains('KERNEL_IMAGETYPE', 'fitImage', '', '${@make_dtb_boot_files(d)}', d)} \
641 ${@bb.utils.contains('MACHINE_FEATURES', 'optee', '${OPTEE_BOOT_IMAGE}', '', d)} \ 641 ${@bb.utils.contains('MACHINE_FEATURES', 'optee', '${OPTEE_BOOT_IMAGE}', '', d)} \
642" 642"
643 643