summaryrefslogtreecommitdiffstats
path: root/conf
diff options
context:
space:
mode:
authorBenjamin Missey <benjamin.missey@non.se.com>2026-02-11 14:41:19 +0100
committerBenjamin Missey <benjamin.missey@non.se.com>2026-02-11 18:38:09 +0100
commit92c2035b56f1264207231ab9d4f3b6104e6a038c (patch)
tree58ae168342e782444e152b026859a39152326636 /conf
parentcf66b915d746c8a4965290c60d01da007bc88f15 (diff)
downloadmeta-freescale-92c2035b56f1264207231ab9d4f3b6104e6a038c.tar.gz
imx943-evk.inc: adapt U-Boot configuration to deprecated UBOOT_CONFIG syntax
Since commit 60c62c4de3 ("uboot: Deprecate legacy UBOOT_CONFIG flow") in openembedded-core, the legacy syntax: UBOOT_CONFIG[foo] = "foo_config,foo_image,foo_binary" is deprecated. It currently triggers a warning and remains functional through the wrynose release, but will be removed afterwards. Update this recipe to follow the new configuration mechanism as described in the oe-core deprecation commit. Signed-off-by: Benjamin Missey <benjamin.missey@non.se.com>
Diffstat (limited to 'conf')
-rw-r--r--conf/machine/include/imx943-evk.inc6
1 files changed, 4 insertions, 2 deletions
diff --git a/conf/machine/include/imx943-evk.inc b/conf/machine/include/imx943-evk.inc
index 875d5eb36..a2abe30dc 100644
--- a/conf/machine/include/imx943-evk.inc
+++ b/conf/machine/include/imx943-evk.inc
@@ -32,10 +32,12 @@ UBOOT_MAKE_TARGET = ""
32SPL_BINARY = "spl/u-boot-spl.bin" 32SPL_BINARY = "spl/u-boot-spl.bin"
33 33
34UBOOT_CONFIG ??= "${@bb.utils.contains('COMBINED_FEATURES', 'crrm', 'crrm', 'sd', d)}" 34UBOOT_CONFIG ??= "${@bb.utils.contains('COMBINED_FEATURES', 'crrm', 'crrm', 'sd', d)}"
35UBOOT_CONFIG[sd] = "${UBOOT_CONFIG_BASENAME}_defconfig,sdcard" 35UBOOT_CONFIG[sd] = "${UBOOT_CONFIG_BASENAME}_defconfig"
36UBOOT_CONFIG[sd-ecc] = "${UBOOT_CONFIG_BASENAME}_defconfig,sdcard" 36UBOOT_CONFIG[sd-ecc] = "${UBOOT_CONFIG_BASENAME}_defconfig"
37UBOOT_CONFIG[crrm] = "${UBOOT_CONFIG_BASENAME}_xspi_crrm_defconfig" 37UBOOT_CONFIG[crrm] = "${UBOOT_CONFIG_BASENAME}_xspi_crrm_defconfig"
38UBOOT_CONFIG[xspi] = "${UBOOT_CONFIG_BASENAME}_xspi_defconfig" 38UBOOT_CONFIG[xspi] = "${UBOOT_CONFIG_BASENAME}_xspi_defconfig"
39UBOOT_CONFIG_IMAGE_FSTYPES[sd] = "sdcard"
40UBOOT_CONFIG_IMAGE_FSTYPES[sd-ecc] = "sdcard"
39 41
40ATF_PLATFORM = "imx94" 42ATF_PLATFORM = "imx94"
41OEI_CORE = "m33" 43OEI_CORE = "m33"