diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-10-10 12:27:44 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-10-10 12:27:44 +0000 |
commit | 80a79d3910aafeab3d9959953b8b1261854ca3a7 (patch) | |
tree | cd72dbd39c40559135894f3adb2030d597906aeb | |
parent | e3b3338f099dce2af33b1e97797b6404d5fe7c32 (diff) | |
download | upstream-80a79d3910aafeab3d9959953b8b1261854ca3a7.tar.gz upstream-80a79d3910aafeab3d9959953b8b1261854ca3a7.tar.bz2 upstream-80a79d3910aafeab3d9959953b8b1261854ca3a7.zip |
metadata.pl: don't emit LINUX_2_6 selects anymore
SVN-Revision: 23375
-rwxr-xr-x | scripts/metadata.pl | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/scripts/metadata.pl b/scripts/metadata.pl index 45d202e439..e86178d423 100755 --- 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 } |