summaryrefslogtreecommitdiffstats
path: root/conf
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2026-02-11 15:23:04 -0300
committerGitHub <noreply@github.com>2026-02-11 15:23:04 -0300
commit1227d4f36189fd463e127df7a9bfc9fde2f7bfcd (patch)
tree58ae168342e782444e152b026859a39152326636 /conf
parent01449f8339459d5c26b955d7d05671a68c279b06 (diff)
parent92c2035b56f1264207231ab9d4f3b6104e6a038c (diff)
downloadmeta-freescale-1227d4f36189fd463e127df7a9bfc9fde2f7bfcd.tar.gz
Merge pull request #2441 from BenjaminMiss/imx9_deprecate_legacy_uboot_config
Imx93/943 adapt U-Boot configuration to deprecated UBOOT_CONFIG syntax
Diffstat (limited to 'conf')
-rw-r--r--conf/machine/include/imx93-evk.inc3
-rw-r--r--conf/machine/include/imx943-evk.inc6
2 files changed, 6 insertions, 3 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"
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"