projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
remove x86-2.4
[openwrt.git]
/
scripts
/
gen_deps.pl
diff --git
a/scripts/gen_deps.pl
b/scripts/gen_deps.pl
index
0983186
..
e7daf18
100755
(executable)
--- a/
scripts/gen_deps.pl
+++ b/
scripts/gen_deps.pl
@@
-1,11
+1,27
@@
#!/usr/bin/perl
#!/usr/bin/perl
+#
+# Copyright (C) 2006 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
use strict;
my $name;
my $src;
my $makefile;
use strict;
my $name;
my $src;
my $makefile;
+my %conf;
my %pkg;
my %pkg;
+my %prereq;
+my $prereq;
my %dep;
my %dep;
+my %options;
+my $opt;
+
+while ($opt = shift @ARGV) {
+ $opt =~ /^-s/ and $options{SDK} = 1;
+}
my $line;
while ($line = <>) {
my $line;
while ($line = <>) {
@@
-19,10
+35,14
@@
while ($line = <>) {
defined $pkg{$name} or $pkg{$name} = {};
$pkg{$name}->{src} = $src;
};
defined $pkg{$name} or $pkg{$name} = {};
$pkg{$name}->{src} = $src;
};
+ $line =~ /^Prereq-Check:/ and !defined $prereq{$src} and do {
+ $prereq{$src} = 1;
+ $prereq .= "package-prereq += $src\n";
+ };
$line =~ /^(Build-)?Depends: \s*(.+)\s*$/ and do {
$pkg{$name}->{depends} ||= [];
foreach my $v (split /\s+/, $2) {
$line =~ /^(Build-)?Depends: \s*(.+)\s*$/ and do {
$pkg{$name}->{depends} ||= [];
foreach my $v (split /\s+/, $2) {
- next if $v =~ /^@/;
+ next if $v =~ /^
[\+]?
@/;
$v =~ s/^\+//;
push @{$pkg{$name}->{depends}}, $v;
}
$v =~ s/^\+//;
push @{$pkg{$name}->{depends}}, $v;
}
@@
-32,7
+52,12
@@
while ($line = <>) {
$line="";
foreach $name (sort {uc($a) cmp uc($b)} keys %pkg) {
$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 = "";
my $hasdeps = 0;
my $depline = "";
@@
-40,9
+65,10
@@
foreach $name (sort {uc($a) cmp uc($b)} keys %pkg) {
my $idx;
if (defined $pkg{$dep}->{src}) {
($pkg{$name}->{src} ne $pkg{$dep}->{src}) and $idx = $pkg{$dep}->{src};
my $idx;
if (defined $pkg{$dep}->{src}) {
($pkg{$name}->{src} ne $pkg{$dep}->{src}) and $idx = $pkg{$dep}->{src};
- } elsif (defined
$pkg{$dep
}) {
+ } elsif (defined
($pkg{$dep}) && !$options{SDK
}) {
$idx = $dep;
}
$idx = $dep;
}
+ undef $idx if $idx =~ /^(kernel)|(base-files)$/;
if ($idx) {
next if $dep{$pkg{$name}->{src}."->".$idx};
$depline .= " $idx\-compile";
if ($idx) {
next if $dep{$pkg{$name}->{src}."->".$idx};
$depline .= " $idx\-compile";
@@
-55,5
+81,5
@@
foreach $name (sort {uc($a) cmp uc($b)} keys %pkg) {
}
if ($line ne "") {
}
if ($line ne "") {
- print "\n$line";
+ print "\n$line
\n$prereq
";
}
}
This page took
0.028893 seconds
and
4
git commands to generate.