summaryrefslogtreecommitdiff
path: root/target/sdk
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2014-03-10 18:58:49 +0000
committerFelix Fietkau <nbd@openwrt.org>2014-03-10 18:58:49 +0000
commitcedfe135ab102ac2f8390dd82b496de3c383d3cc (patch)
treec4845a7992f072d24c550b4f8d48ff81fa661ae7 /target/sdk
parent23df56c4900fd0b49d949bb91449c1f48f832a9e (diff)
downloadmtk-20170518-cedfe135ab102ac2f8390dd82b496de3c383d3cc.zip
mtk-20170518-cedfe135ab102ac2f8390dd82b496de3c383d3cc.tar.gz
mtk-20170518-cedfe135ab102ac2f8390dd82b496de3c383d3cc.tar.bz2
target/sdk: generate a Config.in file with the settings of the build that the SDK was generated from
This allows make oldconfig/menuconfig to run Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39864
Diffstat (limited to 'target/sdk')
-rw-r--r--target/sdk/Makefile1
-rwxr-xr-xtarget/sdk/convert-config.pl31
-rw-r--r--target/sdk/files/Config.in1
3 files changed, 33 insertions, 0 deletions
diff --git a/target/sdk/Makefile b/target/sdk/Makefile
index 2318f4d..376aef8 100644
--- a/target/sdk/Makefile
+++ b/target/sdk/Makefile
@@ -64,6 +64,7 @@ $(BIN_DIR)/$(SDK_NAME).tar.bz2: clean
rm -rf \
$(SDK_BUILD_DIR)/target/linux/*/files* \
$(SDK_BUILD_DIR)/target/linux/*/patches*
+ ./convert-config.pl $(TOPDIR)/.config > $(SDK_BUILD_DIR)/Config-build.in
$(CP) -L \
$(TOPDIR)/LICENSE \
$(TOPDIR)/rules.mk \
diff --git a/target/sdk/convert-config.pl b/target/sdk/convert-config.pl
new file mode 100755
index 0000000..9fd2c36
--- /dev/null
+++ b/target/sdk/convert-config.pl
@@ -0,0 +1,31 @@
+#!/usr/bin/env perl
+use strict;
+
+while (<>) {
+ chomp;
+ next unless /^CONFIG_([^=]+)=(.*)$/;
+
+ my $var = $1;
+ my $val = $2;
+ my $type;
+
+ if ($val eq 'y') {
+ $type = "bool";
+ } elsif ($val eq 'm') {
+ $type = "tristate";
+ } elsif ($val =~ /^".*"$/) {
+ $type = "string";
+ } elsif ($val =~ /^\d+$/) {
+ $type = "int";
+ } else {
+ warn "WARNING: no type found for symbol CONFIG_$var=$val\n";
+ next;
+ }
+
+ print <<EOF;
+config $var
+ $type
+ default $val
+
+EOF
+}
diff --git a/target/sdk/files/Config.in b/target/sdk/files/Config.in
index 214466b..4a2f12e 100644
--- a/target/sdk/files/Config.in
+++ b/target/sdk/files/Config.in
@@ -1 +1,2 @@
+source "Config-build.in"
source "tmp/.config-package.in"