diff options
author | Weisser, Pascal <pascal.weisser.ext@karlstorz.com> | 2025-01-08 11:08:09 +0100 |
---|---|---|
committer | Weisser, Pascal <pascal.weisser.ext@karlstorz.com> | 2025-01-08 11:12:26 +0100 |
commit | cec6d45699ec5fc30b755f156067a07879ea404a (patch) | |
tree | 5f8ae304bb3f266d646d52335b423afa7a29240e | |
parent | e9ce9ad8fa601dd4314b376e95a072c6b037dd46 (diff) | |
download | meta-freescale-cec6d45699ec5fc30b755f156067a07879ea404a.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>
-rw-r--r-- | conf/machine/include/imx-base.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/machine/include/imx-base.inc b/conf/machine/include/imx-base.inc index baca3fc42..32da2ea50 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 | ||
638 | IMAGE_BOOT_FILES ?= " \ | 638 | IMAGE_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 | ||