summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-09-09 22:39:10 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2007-09-09 22:39:10 +0000
commite04d2797c547ddc1ad89f00b8673b026146dab07 (patch)
tree28e5bbfc501c85b2836a26f31b2f953b3b5fd5c7 /scripts
parentf9d6a1282ce7d8f41078da0125569607591de8d1 (diff)
define extra config symbols for targets containing multiple subtargets
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8724 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/metadata.pl33
1 files changed, 26 insertions, 7 deletions
diff --git a/scripts/metadata.pl b/scripts/metadata.pl
index 2fcbf82df..695abf7b3 100755
--- a/scripts/metadata.pl
+++ b/scripts/metadata.pl
@@ -5,6 +5,7 @@ my %package;
my %srcpackage;
my %category;
my %subdir;
+my %board;
sub get_multiline {
my $prefix = shift;
@@ -18,21 +19,28 @@ sub get_multiline {
return $str;
}
+sub confstr($) {
+ my $conf = shift;
+ $conf =~ tr#/\.\-/#___#;
+ return $conf;
+}
+
sub parse_target_metadata() {
my ($target, @target, $profile);
while (<>) {
chomp;
/^Target:\s*(.+)\s*$/ and do {
- my $conf = $1;
- $conf =~ tr#/\.\-/#___#;
$target = {
id => $1,
- conf => $conf,
+ conf => confstr($1),
profiles => []
};
push @target, $target;
};
- /^Target-Board:\s*(.+)\s*$/ and $target->{board} = $1;
+ /^Target-Board:\s*(.+)\s*$/ and do {
+ $target->{board} = $1;
+ $target->{boardconf} = confstr($1);
+ };
/^Target-Kernel:\s*(\d+\.\d+)\s*$/ and $target->{kernel} = $1;
/^Target-Name:\s*(.+)\s*$/ and $target->{name} = $1;
/^Target-Path:\s*(.+)\s*$/ and $target->{path} = $1;
@@ -247,14 +255,16 @@ EOF
undef $help;
}
- print <<EOF
+ print <<EOF;
config TARGET_$target->{conf}
bool "$target->{name}"
select $target->{arch}
select LINUX_$kernel
-$features$help
-
EOF
+ if ($target->{id} ne $target->{board}) {
+ print "\tselect TARGET_".$target->{boardconf}."\n";
+ }
+ print "$features$help\n\n"
}
print <<EOF;
@@ -266,6 +276,15 @@ EOF
foreach my $target (@target) {
print "\t\tdefault \"".$target->{board}."\" if TARGET_".$target->{conf}."\n";
}
+
+ # add hidden target config options
+ foreach my $target (@target) {
+ next if $board{$target->{board}};
+ if ($target->{id} ne $target->{board}) {
+ print "\nconfig TARGET_".$target->{boardconf}."\n\tbool\n";
+ $board{$target->{board}} = 1;
+ }
+ }
print <<EOF;
choice