Skip to content
Snippets Groups Projects
Commit cedfe135 authored by Felix Fietkau's avatar Felix Fietkau
Browse files

target/sdk: generate a Config.in file with the settings of the build that the...

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: default avatarFelix Fietkau <nbd@openwrt.org>

SVN-Revision: 39864
parent 23df56c4
No related branches found
No related tags found
No related merge requests found
...@@ -64,6 +64,7 @@ $(BIN_DIR)/$(SDK_NAME).tar.bz2: clean ...@@ -64,6 +64,7 @@ $(BIN_DIR)/$(SDK_NAME).tar.bz2: clean
rm -rf \ rm -rf \
$(SDK_BUILD_DIR)/target/linux/*/files* \ $(SDK_BUILD_DIR)/target/linux/*/files* \
$(SDK_BUILD_DIR)/target/linux/*/patches* $(SDK_BUILD_DIR)/target/linux/*/patches*
./convert-config.pl $(TOPDIR)/.config > $(SDK_BUILD_DIR)/Config-build.in
$(CP) -L \ $(CP) -L \
$(TOPDIR)/LICENSE \ $(TOPDIR)/LICENSE \
$(TOPDIR)/rules.mk \ $(TOPDIR)/rules.mk \
......
#!/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
}
source "Config-build.in"
source "tmp/.config-package.in" source "tmp/.config-package.in"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment