summaryrefslogtreecommitdiff
path: root/classes/toradex-kernel-config.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'classes/toradex-kernel-config.bbclass')
-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 8c3ad71..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
+}