projects
/
openwrt
/
staging
/
neocturne.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e3b3338
)
metadata.pl: don't emit LINUX_2_6 selects anymore
author
Jo-Philipp Wich
<jow@openwrt.org>
Sun, 10 Oct 2010 12:27:44 +0000
(12:27 +0000)
committer
Jo-Philipp Wich
<jow@openwrt.org>
Sun, 10 Oct 2010 12:27:44 +0000
(12:27 +0000)
SVN-Revision: 23375
scripts/metadata.pl
patch
|
blob
|
history
diff --git
a/scripts/metadata.pl
b/scripts/metadata.pl
index 45d202e4391af865cf98c40d74a7f461439cf945..e86178d423c9f14d1d6ae2c5b4008bac72f19a4b 100755
(executable)
--- a/
scripts/metadata.pl
+++ b/
scripts/metadata.pl
@@
-196,9
+196,7
@@
sub print_target($) {
my $target = shift;
my $features = target_config_features(@{$target->{features}});
my $help = $target->{desc};
- my $kernel = $target->{kernel};
my $confstr;
- $kernel =~ tr/./_/;
chomp $features;
$features .= "\n";
@@
-214,7
+212,6
@@
sub print_target($) {
$confstr = <<EOF;
config TARGET_$target->{conf}
bool "$target->{name}"
- select LINUX_$kernel
select LINUX_$v
EOF
}