From 163ed7654cea8164767b34818b5d57dec1eadc72 Mon Sep 17 00:00:00 2001 From: Hiago De Franco Date: Wed, 27 Sep 2023 17:22:40 -0300 Subject: classes: toradex-kernel-config: Add general config variable function Add a general-purpose configuration variable handling function within the toradex-kernel-config classe. This function can be used for various software configurations, including U-Boot. By doing so, we reduce code duplication in other layers that dynamically modify configurations, such as meta-toradex-tezi. Related-to: ELB-5409 Signed-off-by: Hiago De Franco (cherry picked from commit 6e86c264494d0309ac76c1bc3fc1246a7ac96180) --- classes/toradex-kernel-config.bbclass | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/classes/toradex-kernel-config.bbclass b/classes/toradex-kernel-config.bbclass index 9c0cd32..4b7aa13 100644 --- a/classes/toradex-kernel-config.bbclass +++ b/classes/toradex-kernel-config.bbclass @@ -1,17 +1,26 @@ -# Assign a config variable in ${B}/.config. -# Should be called in do_configure:append only. -# +# Assign/change a config variable # $1 - config variable to be set # $2 - value [n/y/value] +# $3 - config file # -kernel_configure_variable() { +kconfig_configure_variable() { # Remove the original config, to avoid reassigning it. - sed -i -e "/CONFIG_$1[ =]/d" ${B}/.config + sed -i -e "/CONFIG_$1[ =]/d" $3 # Assign the config value if [ "$2" = "n" ]; then - echo "# CONFIG_$1 is not set" >> ${B}/.config + echo "# CONFIG_$1 is not set" >> $3 else - echo "CONFIG_$1=$2" >> ${B}/.config + echo "CONFIG_$1=$2" >> $3 fi } + +# Assign a config variable in ${B}/.config. +# Should be called in do_configure:append only. +# +# $1 - config variable to be set +# $2 - value [n/y/value] +# +kernel_configure_variable() { + kconfig_configure_variable $1 $2 ${B}/.config +} -- cgit v1.2.3