summaryrefslogtreecommitdiffstats
path: root/conf/machine
diff options
context:
space:
mode:
authorBenjamin Missey <benjamin.missey@non.se.com>2026-02-11 14:26:41 +0100
committerBenjamin Missey <benjamin.missey@non.se.com>2026-02-11 18:38:01 +0100
commitcf66b915d746c8a4965290c60d01da007bc88f15 (patch)
tree7ba464cca4d812fc2ff087b23e5a5171a49bf273 /conf/machine
parent01449f8339459d5c26b955d7d05671a68c279b06 (diff)
downloadmeta-freescale-cf66b915d746c8a4965290c60d01da007bc88f15.tar.gz
imx93-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/machine')
-rw-r--r--conf/machine/include/imx93-evk.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/conf/machine/include/imx93-evk.inc b/conf/machine/include/imx93-evk.inc
index e5a3f0e22..f504694f3 100644
--- a/conf/machine/include/imx93-evk.inc
+++ b/conf/machine/include/imx93-evk.inc
@@ -23,9 +23,10 @@ UBOOT_MAKE_TARGET = ""
23SPL_BINARY = "spl/u-boot-spl.bin" 23SPL_BINARY = "spl/u-boot-spl.bin"
24 24
25UBOOT_CONFIG ??= "sd" 25UBOOT_CONFIG ??= "sd"
26UBOOT_CONFIG[sd] = "${UBOOT_CONFIG_BASENAME}_defconfig,sdcard" 26UBOOT_CONFIG[sd] = "${UBOOT_CONFIG_BASENAME}_defconfig"
27UBOOT_CONFIG[ecc] = "${UBOOT_CONFIG_BASENAME}_inline_ecc_defconfig" 27UBOOT_CONFIG[ecc] = "${UBOOT_CONFIG_BASENAME}_inline_ecc_defconfig"
28UBOOT_CONFIG[fspi] = "${UBOOT_CONFIG_BASENAME}_defconfig" 28UBOOT_CONFIG[fspi] = "${UBOOT_CONFIG_BASENAME}_defconfig"
29UBOOT_CONFIG_IMAGE_FSTYPES[sd] = "sdcard"
29 30
30# Set ATF platform name 31# Set ATF platform name
31ATF_PLATFORM = "imx93" 32ATF_PLATFORM = "imx93"