add sdk option for gen_deps.pl
SVN-Revision: 4034
This commit is contained in:
parent
4ced39ac6f
commit
00dee08dd9
1 changed files with 13 additions and 1 deletions
|
@ -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) {
|
||||
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 = "";
|
||||
|
|
Loading…
Reference in a new issue