3 use lib
"$FindBin::Bin";
11 $conf =~ tr
#/\.\-/#___#;
15 sub parse_target_metadata
() {
16 my $file = shift @ARGV;
17 my ($target, @target, $profile);
20 open FILE
, "<$file" or do {
21 warn "Can't open file '$file': $!\n";
26 /^Target:\s*(.+)\s*$/ and do {
31 boardconf
=> confstr
($name),
32 conf
=> confstr
($name),
38 push @target, $target;
39 $target{$name} = $target;
40 if ($name =~ /([^\/]+)\
/([^\/]+)/) {
41 push @
{$target{$1}->{subtargets
}}, $2;
42 $target->{board
} = $1;
43 $target->{boardconf
} = confstr
($1);
44 $target->{subtarget
} = 1;
45 $target->{parent
} = $target{$1};
48 /^Target-Kernel:\s*(\d+\.\d+)\s*$/ and $target->{kernel
} = $1;
49 /^Target-Name:\s*(.+)\s*$/ and $target->{name
} = $1;
50 /^Target-Path:\s*(.+)\s*$/ and $target->{path
} = $1;
51 /^Target-Arch:\s*(.+)\s*$/ and $target->{arch
} = $1;
52 /^Target-Features:\s*(.+)\s*$/ and $target->{features
} = [ split(/\s+/, $1) ];
53 /^Target-Depends:\s*(.+)\s*$/ and $target->{depends
} = [ split(/\s+/, $1) ];
54 /^Target-Description:/ and $target->{desc
} = get_multiline
(*FILE
);
55 /^Linux-Version:\s*(.+)\s*$/ and $target->{version
} = $1;
56 /^Linux-Release:\s*(.+)\s*$/ and $target->{release
} = $1;
57 /^Linux-Kernel-Arch:\s*(.+)\s*$/ and $target->{karch
} = $1;
58 /^Default-Packages:\s*(.+)\s*$/ and $target->{packages
} = [ split(/\s+/, $1) ];
59 /^Target-Profile:\s*(.+)\s*$/ and do {
65 push @
{$target->{profiles
}}, $profile;
67 /^Target-Profile-Name:\s*(.+)\s*$/ and $profile->{name
} = $1;
68 /^Target-Profile-Packages:\s*(.*)\s*$/ and $profile->{packages
} = [ split(/\s+/, $1) ];
69 /^Target-Profile-Description:\s*(.*)\s*/ and $profile->{desc
} = get_multiline
(*FILE
);
70 /^Target-Profile-Config:/ and $profile->{config
} = get_multiline
(*FILE
, "\t");
71 /^Target-Profile-Kconfig:/ and $profile->{kconfig
} = 1;
74 foreach my $target (@target) {
75 next if @
{$target->{subtargets
}} > 0;
76 @
{$target->{profiles
}} > 0 or $target->{profiles
} = [
87 sub gen_kconfig_overrides
() {
91 my $pkginfo = shift @ARGV;
92 my $cfgfile = shift @ARGV;
94 # parameter 2: build system config
95 open FILE
, "<$cfgfile" or return;
97 /^(CONFIG_.+?)=(.+)$/ and $config{$1} = 1;
101 # parameter 1: package metadata
102 open FILE
, "<$pkginfo" or return;
104 /^Package:\s*(.+?)\s*$/ and $package = $1;
105 /^Kernel-Config:\s*(.+?)\s*$/ and do {
106 my @config = split /\s+/, $1;
107 foreach my $config (@config) {
110 if ($config =~ /^(.+?)=(.+)$/) {
115 if ($config{"CONFIG_PACKAGE_$package"} and ($config ne 'n')) {
116 $kconfig{$config} = $val;
117 } elsif (!$override) {
118 $kconfig{$config} or $kconfig{$config} = 'n';
125 foreach my $kconfig (sort keys %kconfig) {
126 if ($kconfig{$kconfig} eq 'n') {
127 print "# $kconfig is not set\n";
129 print "$kconfig=$kconfig{$kconfig}\n";
134 sub merge_package_lists
($$) {
140 foreach my $pkg (@
$list1, @
$list2) {
143 foreach my $pkg (keys %pkgs) {
144 push @l, $pkg unless ($pkg =~ /^-/ or $pkgs{"-$pkg"});
149 sub target_config_features
(@
) {
152 while ($_ = shift @_) {
153 /broken/ and $ret .= "\tdepends BROKEN\n";
154 /display/ and $ret .= "\tselect DISPLAY_SUPPORT\n";
155 /gpio/ and $ret .= "\tselect GPIO_SUPPORT\n";
156 /pci/ and $ret .= "\tselect PCI_SUPPORT\n";
157 /usb/ and $ret .= "\tselect USB_SUPPORT\n";
158 /pcmcia/ and $ret .= "\tselect PCMCIA_SUPPORT\n";
159 /squashfs/ and $ret .= "\tselect USES_SQUASHFS\n";
160 /jffs2/ and $ret .= "\tselect USES_JFFS2\n";
161 /ext2/ and $ret .= "\tselect USES_EXT2\n";
162 /tgz/ and $ret .= "\tselect USES_TGZ\n";
163 /cpiogz/ and $ret .= "\tselect USES_CPIOGZ\n";
164 /fpu/ and $ret .= "\tselect HAS_FPU\n";
171 my $parent = $target->{parent
};
173 return $target->{parent
}->{name
}." - ".$target->{name
};
175 return $target->{name
};
182 $v =~ /(\d+_\d+_\d+)(_\d+)?/ and $v = $1;
186 sub print_target
($) {
188 my $features = target_config_features
(@
{$target->{features
}});
189 my $help = $target->{desc
};
190 my $kernel = $target->{kernel
};
196 if ($help =~ /\w+/) {
197 $help =~ s/^\s*/\t /mg;
198 $help = "\thelp\n$help";
203 my $v = kver
($target->{version
});
205 config TARGET_$target->{conf}
206 bool "$target->{name}"
210 if ($target->{subtarget
}) {
211 $confstr .= "\tdepends TARGET_$target->{boardconf}\n";
213 if (@
{$target->{subtargets
}} > 0) {
214 $confstr .= "\tselect HAS_SUBTARGETS\n";
216 $confstr .= "\tselect $target->{arch}\n";
217 foreach my $dep (@
{$target->{depends
}}) {
218 my $mode = "depends";
222 $dep =~ /^([@\+\-]+)(.+)$/;
226 next if $name =~ /:/;
227 $flags =~ /-/ and $mode = "deselect";
228 $flags =~ /\+/ and $mode = "select";
229 $flags =~ /@/ and $confstr .= "\t$mode $name\n";
231 $confstr .= $features;
234 $confstr .= "$help\n\n";
238 sub gen_target_config
() {
239 my @target = parse_target_metadata
();
242 my @target_sort = sort {
243 target_name
($a) cmp target_name
($b);
249 prompt "Target System"
250 default TARGET_brcm_2_4
255 foreach my $target (@target_sort) {
256 next if $target->{subtarget
};
257 print_target
($target);
264 prompt "Subtarget" if HAS_SUBTARGETS
267 foreach my $target (@target) {
268 next unless $target->{subtarget
};
269 print_target
($target);
276 prompt "Target Profile"
280 foreach my $target (@target) {
281 my $profiles = $target->{profiles
};
283 foreach my $profile (@
$profiles) {
285 config TARGET_$target->{conf}_$profile->{id}
286 bool "$profile->{name}"
287 depends TARGET_$target->{conf}
290 $profile->{kconfig
} and print "\tselect PROFILE_KCONFIG\n";
291 my @pkglist = merge_package_lists
($target->{packages
}, $profile->{packages
});
292 foreach my $pkg (@pkglist) {
293 print "\tselect DEFAULT_$pkg\n";
303 config HAS_SUBTARGETS
310 foreach my $target (@target) {
311 $target->{subtarget
} or print "\t\tdefault \"".$target->{board
}."\" if TARGET_".$target->{conf
}."\n";
315 foreach my $target (@target) {
316 my $v = kver
($target->{version
});
324 foreach my $def (sort keys %defaults) {
325 print "\tconfig DEFAULT_".$def."\n";
326 print "\t\tbool\n\n";
331 sub __find_package_dep
($$) {
334 my $deps = ($pkg->{vdepends
} or $pkg->{depends
});
336 return 0 unless defined $deps;
337 foreach my $dep (@
{$deps}) {
338 next if $dep_check{$dep};
339 $dep_check{$dep} = 1;
340 return 1 if $dep eq $name;
341 return 1 if ($package{$dep} and (__find_package_dep
($package{$dep},$name) == 1));
346 # wrapper to avoid infinite recursion
347 sub find_package_dep
($$) {
352 return __find_package_dep
($pkg, $name);
355 sub package_depends
($$) {
360 return 0 if ($a->{submenu
} ne $b->{submenu
});
361 if (find_package_dep
($a, $b->{name
}) == 1) {
363 } elsif (find_package_dep
($b, $a->{name
}) == 1) {
371 sub mconf_depends
($$) {
373 my $only_dep = shift;
377 my $condition = shift;
382 my @depends = @
$depends;
383 foreach my $depend (@depends) {
385 $depend =~ s/^([@\+]+)//;
389 if ($depend =~ /^(.+):(.+)$/) {
390 $condition and $condition = "$condition && $1" or $condition = $1;
393 next if $seen->{$depend};
394 $seen->{$depend} = 1;
395 if ($vdep = $package{$depend}->{vdepends
}) {
396 $depend = join("||", map { "PACKAGE_".$_ } @
$vdep);
398 $flags =~ /\+/ and do {
399 # Menuconfig will not treat 'select FOO' as a real dependency
400 # thus if FOO depends on other config options, these dependencies
401 # will not be checked. To fix this, we simply emit all of FOO's
402 # depends here as well.
403 $package{$depend} and mconf_depends
($package{$depend}->{depends
}, 1, $dep, $seen, $condition);
408 $flags =~ /@/ or $depend = "PACKAGE_$depend";
409 $condition and ($m =~ /select/ and $depend = "$depend if $condition" or $depend = "!($condition) || $depend");
411 $dep->{$depend} =~ /select/ or $dep->{$depend} = $m;
413 foreach my $depend (keys %$dep) {
414 my $m = $dep->{$depend};
415 $res .= "\t\t$m $depend\n";
420 sub print_package_config_category
($) {
425 return unless $category{$cat};
427 print "menu \"$cat\"\n\n";
428 my %spkg = %{$category{$cat}};
430 foreach my $spkg (sort {uc($a) cmp uc($b)} keys %spkg) {
431 foreach my $pkg (@
{$spkg{$spkg}}) {
432 my $menu = $pkg->{submenu
};
434 $menu_dep{$menu} or $menu_dep{$menu} = $pkg->{submenudep
};
438 $menus{$menu} or $menus{$menu} = [];
439 push @
{$menus{$menu}}, $pkg;
443 ($a eq 'undef' ?
1 : 0) or
444 ($b eq 'undef' ?
-1 : 0) or
448 foreach my $menu (@menus) {
450 package_depends
($a, $b) or
451 ($a->{name
} cmp $b->{name
})
453 if ($menu ne 'undef') {
454 $menu_dep{$menu} and print "if $menu_dep{$menu}\n";
455 print "menu \"$menu\"\n";
457 foreach my $pkg (@pkgs) {
458 my $title = $pkg->{name
};
459 my $c = (72 - length($pkg->{name
}) - length($pkg->{title
}));
461 $title .= ("." x
$c). " ". $pkg->{title
};
464 $pkg->{menu
} and print "menu";
465 print "config PACKAGE_".$pkg->{name
}."\n";
466 print "\t\t".($pkg->{tristate
} ?
'tristate' : 'bool')." \"$title\"\n";
467 print "\t\tdefault y if DEFAULT_".$pkg->{name
}."\n";
468 foreach my $default (split /\s*,\s*/, $pkg->{default}) {
469 print "\t\tdefault $default\n";
471 print mconf_depends
($pkg->{depends
}, 0);
473 print $pkg->{description
};
476 $pkg->{config
} and print $pkg->{config
}."\n";
478 if ($menu ne 'undef') {
480 $menu_dep{$menu} and print "endif\n";
485 undef $category{$cat};
488 sub gen_package_config
() {
489 parse_package_metadata
($ARGV[0]) or exit 1;
490 print "menuconfig UCI_PRECONFIG\n\tbool \"Image configuration\"\n" if %preconfig;
491 foreach my $preconfig (keys %preconfig) {
492 foreach my $cfg (keys %{$preconfig{$preconfig}}) {
493 my $conf = $preconfig{$preconfig}->{$cfg}->{id
};
496 config UCI_PRECONFIG_$conf
497 string "$preconfig{$preconfig}->{$cfg}->{label}" if UCI_PRECONFIG
498 depends PACKAGE_$preconfig
499 default "$preconfig{$preconfig}->{$cfg}->{default}"
504 print_package_config_category
'Base system';
505 foreach my $cat (keys %category) {
506 print_package_config_category
$cat;
510 sub gen_package_mk
() {
516 parse_package_metadata
($ARGV[0]) or exit 1;
517 foreach my $name (sort {uc($a) cmp uc($b)} keys %package) {
519 my $pkg = $package{$name};
522 next if defined $pkg->{vdepends
};
525 $conf{$pkg->{src
}} or do {
527 $conf{$pkg->{src
}} = 1;
530 $config = "\$(CONFIG_PACKAGE_$name)"
533 print "package-$config += $pkg->{subdir}$pkg->{src}\n";
534 $pkg->{prereq
} and print "prereq-$config += $pkg->{subdir}$pkg->{src}\n";
537 next if $done{$pkg->{src
}};
538 $done{$pkg->{src
}} = 1;
540 foreach my $spkg (@
{$srcpackage{$pkg->{src
}}}) {
541 foreach my $dep (@
{$spkg->{depends
}}, @
{$spkg->{builddepends
}}) {
551 foreach my $deps (@srcdeps) {
555 if ($deps =~ /^(.+):(.+)/) {
560 my $pkg_dep = $package{$deps};
563 if ($pkg_dep->{vdepends
}) {
564 @deps = @
{$pkg_dep->{vdepends
}};
569 foreach my $dep (@deps) {
570 $pkg_dep = $package{$deps};
571 if (defined $pkg_dep->{src
}) {
572 ($pkg->{src
} ne $pkg_dep->{src
}) and $idx = $pkg_dep->{subdir
}.$pkg_dep->{src
};
573 } elsif (defined($srcpackage{$dep})) {
574 $idx = $subdir{$dep}.$dep;
576 undef $idx if $idx =~ /^(kernel)|(base-files)$/;
578 next if $pkg->{src
} eq $pkg_dep->{src
};
579 next if $dep{$pkg->{src
}."->".$idx};
580 next if $dep{$pkg->{src
}."->($dep)".$idx};
583 if ($pkg_dep->{vdepends
}) {
584 $depstr = "\$(if \$(CONFIG_PACKAGE_$dep),\$(curdir)/$idx/compile)";
585 $dep{$pkg->{src
}."->($dep)".$idx} = 1;
587 $depstr = "\$(curdir)/$idx/compile";
588 $dep{$pkg->{src
}."->".$idx} = 1;
591 if ($condition =~ /^!(.+)/) {
592 $depline .= " \$(if \$(CONFIG_$1),,$depstr)";
594 $depline .= " \$(if \$(CONFIG_$condition),$depstr)";
597 $depline .= " $depstr";
603 $line .= "\$(curdir)/".$pkg->{subdir
}."$pkg->{src}/compile += $depline\n";
610 foreach my $preconfig (keys %preconfig) {
612 foreach my $cfg (keys %{$preconfig{$preconfig}}) {
613 my $conf = $preconfig{$preconfig}->{$cfg}->{id
};
615 $cmds .= "\techo \"uci set '$preconfig{$preconfig}->{$cfg}->{id}=\$(subst \",,\$(CONFIG_UCI_PRECONFIG_$conf))'\"; \\\n";
620 \$(TARGET_DIR)/etc/uci-defaults/$preconfig: FORCE
625 ifneq (\$(UCI_PRECONFIG)\$(CONFIG_UCI_PRECONFIG),)
626 package/preconfig: \$(TARGET_DIR)/etc/uci-defaults/$preconfig
633 sub parse_command
() {
634 my $cmd = shift @ARGV;
636 /^target_config$/ and return gen_target_config
();
637 /^package_mk$/ and return gen_package_mk
();
638 /^package_config$/ and return gen_package_config
();
639 /^kconfig/ and return gen_kconfig_overrides
();
643 $0 target_config [file] Target metadata in Kconfig format
644 $0 package_mk [file] Package metadata in makefile format
645 $0 package_config [file] Package metadata in Kconfig format
646 $0 kconfig [file] [config] Kernel config overrides