summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiago De Franco <hiago.franco@toradex.com>2023-09-27 17:22:40 -0300
committerHiago De Franco <hiago.franco@toradex.com>2023-10-05 10:44:50 -0300
commit6e86c264494d0309ac76c1bc3fc1246a7ac96180 (patch)
tree4a774fcc99acc958fcfc6a6466a2dec8781605b3
parente4fa05527dcecbddd6aa1b2bc7deebbf53c6bd83 (diff)
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 <hiago.franco@toradex.com>
-rw-r--r--classes/toradex-kernel-config.bbclass23
1 files 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
+}