From c60f097d7b211df2f1810ea70d0ca75cb8751cb1 Mon Sep 17 00:00:00 2001 From: Jun Zhu Date: Tue, 3 Mar 2026 20:13:23 +0800 Subject: imx-oei: Update OEI DDR config variable name Use the underscore separated words - OEI_DDRCONFIG -> OEI_DDR_CONFIG - OEI_DDRCONFIG_ECC -> OEI_DDR_CONFIG_ECC Signed-off-by: Jun Zhu --- conf/machine/imx95-19x19-verdin.conf | 4 ++-- dynamic-layers/arm-toolchain/recipes-bsp/imx-oei/imx-oei.inc | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/conf/machine/imx95-19x19-verdin.conf b/conf/machine/imx95-19x19-verdin.conf index 5ae9ac665..3264324bb 100644 --- a/conf/machine/imx95-19x19-verdin.conf +++ b/conf/machine/imx95-19x19-verdin.conf @@ -11,8 +11,8 @@ require conf/machine/include/imx95-evk.inc # iMX95 Verdin EVK V1.1E is the first revision with a B0 SoC, # older versions require A0/A1 support, set with the below variable #IMX_SOC_REV:${MACHINE} = "A0" -# When building for A0/A1 iMX95 SoCs, set OEI_DDRCONFIG accordingly -OEI_DDRCONFIG = "${@'XIMX95LPD5EVK19_6400mbps_train_timing_a1' if d.getVar('IMX_SOC_REV')[0] == 'A' else ''}" +# When building for A0/A1 iMX95 SoCs, set OEI_DDR_CONFIG accordingly +OEI_DDR_CONFIG = "${@'XIMX95LPD5EVK19_6400mbps_train_timing_a1' if d.getVar('IMX_SOC_REV')[0] == 'A' else ''}" KERNEL_DEVICETREE_BASENAME = "imx95-19x19-verdin" diff --git a/dynamic-layers/arm-toolchain/recipes-bsp/imx-oei/imx-oei.inc b/dynamic-layers/arm-toolchain/recipes-bsp/imx-oei/imx-oei.inc index d46080553..7c5303066 100644 --- a/dynamic-layers/arm-toolchain/recipes-bsp/imx-oei/imx-oei.inc +++ b/dynamic-layers/arm-toolchain/recipes-bsp/imx-oei/imx-oei.inc @@ -15,7 +15,7 @@ OEI_CONFIGS ?= "ddr ${@bb.utils.filter('PACKAGECONFIG', 'tcm', d)}" OEI_CORE ?= "UNDEFINED" OEI_SOC ?= "UNDEFINED" OEI_BOARD ?= "UNDEFINED" -OEI_DDRCONFIG ?= "" +OEI_DDR_CONFIG ?= "" OEI_DEBUG ?= "0" LDFLAGS[unexport] = "1" @@ -29,9 +29,9 @@ EXTRA_OEMAKE:append:mx95-generic-bsp = " r=${IMX_SOC_REV}" python () { if 'ecc' in d.getVar('PACKAGECONFIG'): - ddr_conf = d.getVar('OEI_DDRCONFIG_ECC') + ddr_conf = d.getVar('OEI_DDR_CONFIG_ECC') else: - ddr_conf = d.getVar('OEI_DDRCONFIG') + ddr_conf = d.getVar('OEI_DDR_CONFIG') if ddr_conf: d.appendVar('EXTRA_OEMAKE', ' DDR_CONFIG='+ddr_conf) } -- cgit v1.2.3-54-g00ecf