add sdk option for gen_deps.pl

SVN-Revision: 4034
owl
Felix Fietkau 2006-06-21 02:45:02 +00:00
parent 4ced39ac6f
commit 00dee08dd9
1 changed files with 13 additions and 1 deletions

View File

@ -4,8 +4,15 @@ use strict;
my $name;
my $src;
my $makefile;
my %conf;
my %pkg;
my %dep;
my %options;
my $opt;
while ($opt = shift @ARGV) {
$opt =~ /^-s/ and $options{SDK} = 1;
}
my $line;
while ($line = <>) {
@ -32,7 +39,12 @@ while ($line = <>) {
$line="";
foreach $name (sort {uc($a) cmp uc($b)} keys %pkg) {
print "package-\$(CONFIG_PACKAGE_$name) += $pkg{$name}->{src}\n";
if ($options{SDK}) {
$conf{$pkg{$name}->{src}} or print "package-m += $pkg{$name}->{src}\n";
$conf{$pkg{$name}->{src}} = 1;
} else {
print "package-\$(CONFIG_PACKAGE_$name) += $pkg{$name}->{src}\n";
}
my $hasdeps = 0;
my $depline = "";