Преглед изворни кода

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 <[email protected]>

SVN-Revision: 39864
Felix Fietkau пре 12 година
родитељ
комит
cedfe135ab
3 измењених фајлова са 33 додато и 0 уклоњено
  1. 1 0
      target/sdk/Makefile
  2. 31 0
      target/sdk/convert-config.pl
  3. 1 0
      target/sdk/files/Config.in

+ 1 - 0
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 \

+ 31 - 0
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
+}

+ 1 - 0
target/sdk/files/Config.in

@@ -1 +1,2 @@
+source "Config-build.in"
 source "tmp/.config-package.in"