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 /^Target-Optimization:\s*(.+)\s*$/ and $target->{cflags} = $1;
56 /^Linux-Version:\s*(.+)\s*$/ and $target->{version} = $1;
57 /^Linux-Release:\s*(.+)\s*$/ and $target->{release} = $1;
58 /^Linux-Kernel-Arch:\s*(.+)\s*$/ and $target->{karch} = $1;
59 /^Default-Packages:\s*(.+)\s*$/ and $target->{packages} = [ split(/\s+/, $1) ];
60 /^Target-Profile:\s*(.+)\s*$/ and do {
66 push @{$target->{profiles}}, $profile;
68 /^Target-Profile-Name:\s*(.+)\s*$/ and $profile->{name} = $1;
69 /^Target-Profile-Packages:\s*(.*)\s*$/ and $profile->{packages} = [ split(/\s+/, $1) ];
70 /^Target-Profile-Description:\s*(.*)\s*/ and $profile->{desc} = get_multiline(*FILE);
71 /^Target-Profile-Config:/ and $profile->{config} = get_multiline(*FILE, "\t");
72 /^Target-Profile-Kconfig:/ and $profile->{kconfig} = 1;
75 foreach my $target (@target) {
76 next if @{$target->{subtargets}} > 0;
77 @{$target->{profiles}} > 0 or $target->{profiles} = [
88 sub gen_kconfig_overrides() {
92 my $pkginfo = shift @ARGV;
93 my $cfgfile = shift @ARGV;
95 # parameter 2: build system config
96 open FILE, "<$cfgfile" or return;
98 /^(CONFIG_.+?)=(.+)$/ and $config{$1} = 1;
102 # parameter 1: package metadata
103 open FILE, "<$pkginfo" or return;
105 /^Package:\s*(.+?)\s*$/ and $package = $1;
106 /^Kernel-Config:\s*(.+?)\s*$/ and do {
107 my @config = split /\s+/, $1;
108 foreach my $config (@config) {
111 if ($config =~ /^(.+?)=(.+)$/) {
116 if ($config{"CONFIG_PACKAGE_$package"} and ($config ne 'n')) {
117 $kconfig{$config} = $val;
118 } elsif (!$override) {
119 $kconfig{$config} or $kconfig{$config} = 'n';
126 foreach my $kconfig (sort keys %kconfig) {
127 if ($kconfig{$kconfig} eq 'n') {
128 print "# $kconfig is not set\n";
130 print "$kconfig=$kconfig{$kconfig}\n";
135 sub merge_package_lists($$) {
141 foreach my $pkg (@$list1, @$list2) {
144 foreach my $pkg (keys %pkgs) {
145 push @l, $pkg unless ($pkg =~ /^-/ or $pkgs{"-$pkg"});
150 sub target_config_features(@) {
153 while ($_ = shift @_) {
154 /broken/ and $ret .= "\tdepends BROKEN\n";
155 /audio/ and $ret .= "\tselect AUDIO_SUPPORT\n";
156 /display/ and $ret .= "\tselect DISPLAY_SUPPORT\n";
157 /gpio/ and $ret .= "\tselect GPIO_SUPPORT\n";
158 /pci/ and $ret .= "\tselect PCI_SUPPORT\n";
159 /pcie/ and $ret .= "\tselect PCIE_SUPPORT\n";
160 /usb/ and $ret .= "\tselect USB_SUPPORT\n";
161 /pcmcia/ and $ret .= "\tselect PCMCIA_SUPPORT\n";
162 /squashfs/ and $ret .= "\tselect USES_SQUASHFS\n";
163 /jffs2/ and $ret .= "\tselect USES_JFFS2\n";
164 /ext2/ and $ret .= "\tselect USES_EXT2\n";
165 /targz/ and $ret .= "\tselect USES_TARGZ\n";
166 /cpiogz/ and $ret .= "\tselect USES_CPIOGZ\n";
167 /ubifs/ and $ret .= "\tselect USES_UBIFS\n";
168 /fpu/ and $ret .= "\tselect HAS_FPU\n";
169 /ramdisk/ and $ret .= "\tselect USES_INITRAMFS\n";
170 /powerpc64/ and $ret .= "\tselect powerpc64\n";
171 /nommu/ and $ret .= "\tselect NOMMU\n";
178 my $parent = $target->{parent};
180 return $target->{parent}->{name}." - ".$target->{name};
182 return $target->{name};
189 $v =~ /(\d+_\d+_\d+)(_\d+)?/ and $v = $1;
193 sub print_target($) {
195 my $features = target_config_features(@{$target->{features}});
196 my $help = $target->{desc};
197 my $kernel = $target->{kernel};
203 if ($help =~ /\w+/) {
204 $help =~ s/^\s*/\t /mg;
205 $help = "\thelp\n$help";
210 my $v = kver($target->{version});
211 if (@{$target->{subtargets}} == 0) {
213 config TARGET_$target->{conf}
214 bool "$target->{name}"
221 config TARGET_$target->{conf}
222 bool "$target->{name}"
225 if ($target->{subtarget}) {
226 $confstr .= "\tdepends TARGET_$target->{boardconf}\n";
228 if (@{$target->{subtargets}} > 0) {
229 $confstr .= "\tselect HAS_SUBTARGETS\n";
232 if ($target->{arch} =~ /\w/) {
233 $confstr .= "\tselect $target->{arch}\n";
235 foreach my $dep (@{$target->{depends}}) {
236 my $mode = "depends";
240 $dep =~ /^([@\+\-]+)(.+)$/;
244 next if $name =~ /:/;
245 $flags =~ /-/ and $mode = "deselect";
246 $flags =~ /\+/ and $mode = "select";
247 $flags =~ /@/ and $confstr .= "\t$mode $name\n";
249 $confstr .= $features;
250 $confstr .= "$help\n\n";
254 sub gen_target_config() {
255 my @target = parse_target_metadata();
258 my @target_sort = sort {
259 target_name($a) cmp target_name($b);
265 prompt "Target System"
266 default TARGET_brcm_2_4
271 foreach my $target (@target_sort) {
272 next if $target->{subtarget};
273 print_target($target);
280 prompt "Subtarget" if HAS_SUBTARGETS
283 foreach my $target (@target) {
284 next unless $target->{subtarget};
285 print_target($target);
292 prompt "Target Profile"
296 foreach my $target (@target) {
297 my $profiles = $target->{profiles};
299 foreach my $profile (@$profiles) {
301 config TARGET_$target->{conf}_$profile->{id}
302 bool "$profile->{name}"
303 depends TARGET_$target->{conf}
306 $profile->{kconfig} and print "\tselect PROFILE_KCONFIG\n";
307 my @pkglist = merge_package_lists($target->{packages}, $profile->{packages});
308 foreach my $pkg (@pkglist) {
309 print "\tselect DEFAULT_$pkg\n";
312 my $help = $profile->{desc};
313 if ($help =~ /\w+/) {
314 $help =~ s/^\s*/\t /mg;
315 $help = "\thelp\n$help";
326 config HAS_SUBTARGETS
333 foreach my $target (@target) {
334 $target->{subtarget} or print "\t\tdefault \"".$target->{board}."\" if TARGET_".$target->{conf}."\n";
338 config DEFAULT_TARGET_OPTIMIZATION
341 foreach my $target (@target) {
342 next if @{$target->{subtargets}} > 0;
343 print "\tdefault \"".$target->{cflags}."\" if TARGET_".$target->{conf}."\n";
345 print "\tdefault \"-Os -pipe -funit-at-a-time\"\n";
348 foreach my $target (@target) {
349 my $v = kver($target->{version});
359 foreach my $def (sort keys %defaults) {
360 print "\tconfig DEFAULT_".$def."\n";
361 print "\t\tbool\n\n";
366 sub __find_package_dep($$) {
369 my $deps = ($pkg->{vdepends} or $pkg->{depends});
371 return 0 unless defined $deps;
372 foreach my $dep (@{$deps}) {
373 next if $dep_check{$dep};
374 $dep_check{$dep} = 1;
375 return 1 if $dep eq $name;
376 return 1 if ($package{$dep} and (__find_package_dep($package{$dep},$name) == 1));
381 # wrapper to avoid infinite recursion
382 sub find_package_dep($$) {
387 return __find_package_dep($pkg, $name);
390 sub package_depends($$) {
395 return 0 if ($a->{submenu} ne $b->{submenu});
396 if (find_package_dep($a, $b->{name}) == 1) {
398 } elsif (find_package_dep($b, $a->{name}) == 1) {
409 my $only_dep = shift;
413 my $parent_condition = shift;
418 my @depends = @$depends;
419 foreach my $depend (@depends) {
422 $depend =~ s/^([@\+]+)// and $flags = $1;
424 my $condition = $parent_condition;
426 next if $condition eq $depend;
427 next if $seen->{"$parent_condition:$depend"};
428 $seen->{"$parent_condition:$depend"} = 1;
429 if ($depend =~ /^(.+):(.+)$/) {
430 if ($1 ne "PACKAGE_$pkgname") {
432 $condition = "$condition && $1";
439 next if $package{$depend} and $package{$depend}->{buildonly};
440 if ($vdep = $package{$depend}->{vdepends}) {
441 $depend = join("||", map { "PACKAGE_".$_ } @$vdep);
443 $flags =~ /\+/ and do {
444 # Menuconfig will not treat 'select FOO' as a real dependency
445 # thus if FOO depends on other config options, these dependencies
446 # will not be checked. To fix this, we simply emit all of FOO's
447 # depends here as well.
448 $package{$depend} and mconf_depends($pkgname, $package{$depend}->{depends}, 1, $dep, $seen, $condition);
453 $flags =~ /@/ or $depend = "PACKAGE_$depend";
455 if ($m =~ /select/) {
456 $depend = "$depend if $condition";
458 $depend = "!($condition) || $depend";
462 $dep->{$depend} =~ /select/ or $dep->{$depend} = $m;
464 foreach my $depend (keys %$dep) {
465 my $m = $dep->{$depend};
466 $res .= "\t\t$m $depend\n";
471 sub print_package_config_category($) {
476 return unless $category{$cat};
478 print "menu \"$cat\"\n\n";
479 my %spkg = %{$category{$cat}};
481 foreach my $spkg (sort {uc($a) cmp uc($b)} keys %spkg) {
482 foreach my $pkg (@{$spkg{$spkg}}) {
483 next if $pkg->{buildonly};
484 my $menu = $pkg->{submenu};
486 $menu_dep{$menu} or $menu_dep{$menu} = $pkg->{submenudep};
490 $menus{$menu} or $menus{$menu} = [];
491 push @{$menus{$menu}}, $pkg;
495 ($a eq 'undef' ? 1 : 0) or
496 ($b eq 'undef' ? -1 : 0) or
500 foreach my $menu (@menus) {
502 package_depends($a, $b) or
503 ($a->{name} cmp $b->{name})
505 if ($menu ne 'undef') {
506 $menu_dep{$menu} and print "if $menu_dep{$menu}\n";
507 print "menu \"$menu\"\n";
509 foreach my $pkg (@pkgs) {
510 my $title = $pkg->{name};
511 my $c = (72 - length($pkg->{name}) - length($pkg->{title}));
513 $title .= ("." x $c). " ". $pkg->{title};
516 $pkg->{menu} and print "menu";
517 print "config PACKAGE_".$pkg->{name}."\n";
518 print "\t\t".($pkg->{tristate} ? 'tristate' : 'bool')." \"$title\"\n";
519 print "\t\tdefault y if DEFAULT_".$pkg->{name}."\n";
520 foreach my $default (split /\s*,\s*/, $pkg->{default}) {
521 print "\t\tdefault $default\n";
523 print mconf_depends($pkg->{name}, $pkg->{depends}, 0);
525 print $pkg->{description};
528 $pkg->{config} and print $pkg->{config}."\n";
530 if ($menu ne 'undef') {
532 $menu_dep{$menu} and print "endif\n";
537 undef $category{$cat};
540 sub print_package_features() {
541 keys %features > 0 or return;
542 print "menu \"Package features\"\n";
543 foreach my $n (keys %features) {
544 my @features = sort { $b->{priority} <=> $a->{priority} or $a->{title} cmp $b->{title} } @{$features{$n}};
547 prompt "$features[0]->{target_title}"
548 default FEATURE_$features[0]->{name}
551 foreach my $feature (@features) {
553 config FEATURE_$feature->{name}
554 bool "$feature->{title}"
556 $feature->{description} =~ /\w/ and do {
557 print "\t\thelp\n".$feature->{description}."\n";
565 sub gen_package_config() {
566 parse_package_metadata($ARGV[0]) or exit 1;
567 print "menuconfig IMAGEOPT\n\tbool \"Image configuration\"\n\tdefault n\n";
568 foreach my $preconfig (keys %preconfig) {
569 foreach my $cfg (keys %{$preconfig{$preconfig}}) {
570 my $conf = $preconfig{$preconfig}->{$cfg}->{id};
573 config UCI_PRECONFIG_$conf
574 string "$preconfig{$preconfig}->{$cfg}->{label}" if IMAGEOPT
575 depends PACKAGE_$preconfig
576 default "$preconfig{$preconfig}->{$cfg}->{default}"
581 print "source \"package/*/image-config.in\"\n";
582 if (scalar glob "package/feeds/*/*/image-config.in") {
583 print "source \"package/feeds/*/*/image-config.in\"\n";
585 print_package_features();
586 print_package_config_category 'Base system';
587 foreach my $cat (keys %category) {
588 print_package_config_category $cat;
592 sub get_conditional_dep($$) {
593 my $condition = shift;
596 if ($condition =~ /^!(.+)/) {
597 return "\$(if \$(CONFIG_$1),,$depstr)";
599 return "\$(if \$(CONFIG_$condition),$depstr)";
606 sub gen_package_mk() {
612 parse_package_metadata($ARGV[0]) or exit 1;
613 foreach my $name (sort {uc($a) cmp uc($b)} keys %package) {
615 my $pkg = $package{$name};
618 next if defined $pkg->{vdepends};
621 $conf{$pkg->{src}} or do {
623 $conf{$pkg->{src}} = 1;
626 $config = "\$(CONFIG_PACKAGE_$name)"
629 $pkg->{buildonly} and $config = "";
630 print "package-$config += $pkg->{subdir}$pkg->{src}\n";
631 if ($pkg->{variant}) {
632 print "\$(curdir)/$pkg->{subdir}$pkg->{src}/variants += \$(if $config,$pkg->{variant})\n"
634 $pkg->{prereq} and print "prereq-$config += $pkg->{subdir}$pkg->{src}\n";
637 next if $done{$pkg->{src}};
638 $done{$pkg->{src}} = 1;
640 if (@{$pkg->{buildtypes}} > 0) {
641 print "buildtypes-$pkg->{subdir}$pkg->{src} = ".join(' ', @{$pkg->{buildtypes}})."\n";
644 foreach my $spkg (@{$srcpackage{$pkg->{src}}}) {
645 foreach my $dep (@{$spkg->{depends}}, @{$spkg->{builddepends}}) {
652 foreach my $type (@{$pkg->{buildtypes}}) {
656 next unless $pkg->{"builddepends/$type"};
657 foreach my $dep (@{$pkg->{"builddepends/$type"}}) {
661 if ($dep =~ /^(.+):(.+)/) {
665 if ($dep =~ /^(.+)(\/.+)/) {
669 my $pkg_dep = $package{$dep};
670 next unless $pkg_dep;
673 if (defined $pkg_dep->{src}) {
674 $idx = $pkg_dep->{subdir}.$pkg_dep->{src};
675 } elsif (defined($srcpackage{$dep})) {
676 $idx = $subdir{$dep}.$dep;
678 my $depstr = "\$(curdir)/$idx$suffix/compile";
679 my $depline = get_conditional_dep($condition, $depstr);
681 $deplines{$dep} = $depline;
684 my $depline = join(" ", values %deplines);
686 $line .= "\$(curdir)/".$pkg->{subdir}."$pkg->{src}/$type/compile += $depline\n";
692 foreach my $deps (@srcdeps) {
698 if ($deps =~ /^(.+):(.+)/) {
702 if ($deps =~ /^(.+)(\/.+)/) {
707 my $pkg_dep = $package{$deps};
710 if ($pkg_dep->{vdepends}) {
711 @deps = @{$pkg_dep->{vdepends}};
716 foreach my $dep (@deps) {
717 $pkg_dep = $package{$deps};
718 if (defined $pkg_dep->{src}) {
719 ($pkg->{src} ne $pkg_dep->{src}.$suffix) and $idx = $pkg_dep->{subdir}.$pkg_dep->{src};
720 } elsif (defined($srcpackage{$dep})) {
721 $idx = $subdir{$dep}.$dep;
724 undef $idx if $idx =~ /^(kernel)|(base-files)$/;
727 next if $pkg->{src} eq $pkg_dep->{src}.$suffix;
728 next if $dep{$pkg->{src}."->".$idx};
729 next if $dep{$pkg->{src}."->($dep)".$idx} and $pkg_dep->{vdepends};
732 if ($pkg_dep->{vdepends}) {
733 $depstr = "\$(if \$(CONFIG_PACKAGE_$dep),\$(curdir)/$idx/compile)";
734 $dep{$pkg->{src}."->($dep)".$idx} = 1;
736 $depstr = "\$(curdir)/$idx/compile";
737 $dep{$pkg->{src}."->".$idx} = 1;
739 $depline = get_conditional_dep($condition, $depstr);
741 $deplines{$idx.$dep} = $depline;
746 my $depline = join(" ", values %deplines);
748 $line .= "\$(curdir)/".$pkg->{subdir}."$pkg->{src}/compile += $depline\n";
755 foreach my $preconfig (keys %preconfig) {
757 foreach my $cfg (keys %{$preconfig{$preconfig}}) {
758 my $conf = $preconfig{$preconfig}->{$cfg}->{id};
760 $cmds .= "\techo \"uci set '$preconfig{$preconfig}->{$cfg}->{id}=\$(subst \",,\$(CONFIG_UCI_PRECONFIG_$conf))'\"; \\\n";
765 \$(TARGET_DIR)/etc/uci-defaults/$preconfig: FORCE
770 ifneq (\$(IMAGEOPT)\$(CONFIG_IMAGEOPT),)
771 package/preconfig: \$(TARGET_DIR)/etc/uci-defaults/$preconfig
777 sub gen_package_source() {
778 parse_package_metadata($ARGV[0]) or exit 1;
779 foreach my $name (sort {uc($a) cmp uc($b)} keys %package) {
780 my $pkg = $package{$name};
781 if ($pkg->{name} && $pkg->{source}) {
782 print "$pkg->{name}: ";
783 print "$pkg->{source}\n";
788 sub parse_command() {
789 my $cmd = shift @ARGV;
791 /^target_config$/ and return gen_target_config();
792 /^package_mk$/ and return gen_package_mk();
793 /^package_config$/ and return gen_package_config();
794 /^kconfig/ and return gen_kconfig_overrides();
795 /^package_source$/ and return gen_package_source();
799 $0 target_config [file] Target metadata in Kconfig format
800 $0 package_mk [file] Package metadata in makefile format
801 $0 package_config [file] Package metadata in Kconfig format
802 $0 kconfig [file] [config] Kernel config overrides
803 $0 package_source [file] Package source file information