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-Name:\s*(.+)\s*$/ and $target->{name} = $1;
49 /^Target-Path:\s*(.+)\s*$/ and $target->{path} = $1;
50 /^Target-Arch:\s*(.+)\s*$/ and $target->{arch} = $1;
51 /^Target-Arch-Packages:\s*(.+)\s*$/ and $target->{arch_packages} = $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-Subtarget:\s*(.+)\s*$/ and $target->{def_subtarget} = $1;
60 /^Default-Packages:\s*(.+)\s*$/ and $target->{packages} = [ split(/\s+/, $1) ];
61 /^Target-Profile:\s*(.+)\s*$/ and do {
67 push @{$target->{profiles}}, $profile;
69 /^Target-Profile-Name:\s*(.+)\s*$/ and $profile->{name} = $1;
70 /^Target-Profile-Packages:\s*(.*)\s*$/ and $profile->{packages} = [ split(/\s+/, $1) ];
71 /^Target-Profile-Description:\s*(.*)\s*/ and $profile->{desc} = get_multiline(*FILE);
72 /^Target-Profile-Config:/ and $profile->{config} = get_multiline(*FILE, "\t");
73 /^Target-Profile-Kconfig:/ and $profile->{kconfig} = 1;
76 foreach my $target (@target) {
77 next if @{$target->{subtargets}} > 0;
78 @{$target->{profiles}} > 0 or $target->{profiles} = [
89 sub gen_kconfig_overrides() {
93 my $pkginfo = shift @ARGV;
94 my $cfgfile = shift @ARGV;
96 # parameter 2: build system config
97 open FILE, "<$cfgfile" or return;
99 /^(CONFIG_.+?)=(.+)$/ and $config{$1} = 1;
103 # parameter 1: package metadata
104 open FILE, "<$pkginfo" or return;
106 /^Package:\s*(.+?)\s*$/ and $package = $1;
107 /^Kernel-Config:\s*(.+?)\s*$/ and do {
108 my @config = split /\s+/, $1;
109 foreach my $config (@config) {
112 if ($config =~ /^(.+?)=(.+)$/) {
117 if ($config{"CONFIG_PACKAGE_$package"} and ($config ne 'n')) {
118 next if $kconfig{$config} eq 'y';
119 $kconfig{$config} = $val;
120 } elsif (!$override) {
121 $kconfig{$config} or $kconfig{$config} = 'n';
128 foreach my $kconfig (sort keys %kconfig) {
129 if ($kconfig{$kconfig} eq 'n') {
130 print "# $kconfig is not set\n";
132 print "$kconfig=$kconfig{$kconfig}\n";
137 sub merge_package_lists($$) {
143 foreach my $pkg (@$list1, @$list2) {
146 foreach my $pkg (keys %pkgs) {
147 push @l, $pkg unless ($pkg =~ /^-/ or $pkgs{"-$pkg"});
152 sub target_config_features(@) {
155 while ($_ = shift @_) {
156 /arm_v(\w+)/ and $ret .= "\tselect arm_v$1\n";
157 /broken/ and $ret .= "\tdepends on BROKEN\n";
158 /audio/ and $ret .= "\tselect AUDIO_SUPPORT\n";
159 /display/ and $ret .= "\tselect DISPLAY_SUPPORT\n";
160 /gpio/ and $ret .= "\tselect GPIO_SUPPORT\n";
161 /pci/ and $ret .= "\tselect PCI_SUPPORT\n";
162 /pcie/ and $ret .= "\tselect PCIE_SUPPORT\n";
163 /usb/ and $ret .= "\tselect USB_SUPPORT\n";
164 /usbgadget/ and $ret .= "\tselect USB_GADGET_SUPPORT\n";
165 /pcmcia/ and $ret .= "\tselect PCMCIA_SUPPORT\n";
166 /rtc/ and $ret .= "\tselect RTC_SUPPORT\n";
167 /squashfs/ and $ret .= "\tselect USES_SQUASHFS\n";
168 /jffs2$/ and $ret .= "\tselect USES_JFFS2\n";
169 /jffs2_nand/ and $ret .= "\tselect USES_JFFS2_NAND\n";
170 /ext4/ and $ret .= "\tselect USES_EXT4\n";
171 /targz/ and $ret .= "\tselect USES_TARGZ\n";
172 /cpiogz/ and $ret .= "\tselect USES_CPIOGZ\n";
173 /ubifs/ and $ret .= "\tselect USES_UBIFS\n";
174 /fpu/ and $ret .= "\tselect HAS_FPU\n";
175 /spe_fpu/ and $ret .= "\tselect HAS_SPE_FPU\n";
176 /ramdisk/ and $ret .= "\tselect USES_INITRAMFS\n";
177 /powerpc64/ and $ret .= "\tselect powerpc64\n";
178 /nommu/ and $ret .= "\tselect NOMMU\n";
179 /mips16/ and $ret .= "\tselect HAS_MIPS16\n";
180 /rfkill/ and $ret .= "\tselect RFKILL_SUPPORT\n";
187 my $parent = $target->{parent};
189 return $target->{parent}->{name}." - ".$target->{name};
191 return $target->{name};
198 if (substr($v,0,2) eq "2_") {
199 $v =~ /(\d+_\d+_\d+)(_\d+)?/ and $v = $1;
201 $v =~ /(\d+_\d+)(_\d+)?/ and $v = $1;
206 sub print_target($) {
208 my $features = target_config_features(@{$target->{features}});
209 my $help = $target->{desc};
214 if ($help =~ /\w+/) {
215 $help =~ s/^\s*/\t /mg;
216 $help = "\thelp\n$help";
221 my $v = kver($target->{version});
222 if (@{$target->{subtargets}} == 0) {
224 config TARGET_$target->{conf}
225 bool "$target->{name}"
231 config TARGET_$target->{conf}
232 bool "$target->{name}"
235 if ($target->{subtarget}) {
236 $confstr .= "\tdepends on TARGET_$target->{boardconf}\n";
238 if (@{$target->{subtargets}} > 0) {
239 $confstr .= "\tselect HAS_SUBTARGETS\n";
240 grep { /broken/ } @{$target->{features}} and $confstr .= "\tdepends on BROKEN\n";
242 $confstr .= $features;
245 if ($target->{arch} =~ /\w/) {
246 $confstr .= "\tselect $target->{arch}\n";
248 foreach my $dep (@{$target->{depends}}) {
249 my $mode = "depends on";
253 $dep =~ /^([@\+\-]+)(.+)$/;
257 next if $name =~ /:/;
258 $flags =~ /-/ and $mode = "deselect";
259 $flags =~ /\+/ and $mode = "select";
260 $flags =~ /@/ and $confstr .= "\t$mode $name\n";
262 $confstr .= "$help\n\n";
266 sub gen_target_config() {
267 my @target = parse_target_metadata();
270 my @target_sort = sort {
271 target_name($a) cmp target_name($b);
277 prompt "Target System"
278 default TARGET_ar71xx
283 foreach my $target (@target_sort) {
284 next if $target->{subtarget};
285 print_target($target);
292 prompt "Subtarget" if HAS_SUBTARGETS
294 foreach my $target (@target) {
295 next unless $target->{def_subtarget};
297 default TARGET_$target->{conf}_$target->{def_subtarget} if TARGET_$target->{conf}
303 foreach my $target (@target) {
304 next unless $target->{subtarget};
305 print_target($target);
312 prompt "Target Profile"
316 foreach my $target (@target) {
317 my $profiles = $target->{profiles};
319 foreach my $profile (@$profiles) {
321 config TARGET_$target->{conf}_$profile->{id}
322 bool "$profile->{name}"
323 depends on TARGET_$target->{conf}
326 $profile->{kconfig} and print "\tselect PROFILE_KCONFIG\n";
327 my @pkglist = merge_package_lists($target->{packages}, $profile->{packages});
328 foreach my $pkg (@pkglist) {
329 print "\tselect DEFAULT_$pkg\n";
332 my $help = $profile->{desc};
333 if ($help =~ /\w+/) {
334 $help =~ s/^\s*/\t /mg;
335 $help = "\thelp\n$help";
346 config HAS_SUBTARGETS
353 foreach my $target (@target) {
354 $target->{subtarget} or print "\t\tdefault \"".$target->{board}."\" if TARGET_".$target->{conf}."\n";
357 config TARGET_ARCH_PACKAGES
361 foreach my $target (@target) {
362 next if @{$target->{subtargets}} > 0;
363 print "\t\tdefault \"".($target->{arch_packages} || $target->{board})."\" if TARGET_".$target->{conf}."\n";
367 config DEFAULT_TARGET_OPTIMIZATION
370 foreach my $target (@target) {
371 next if @{$target->{subtargets}} > 0;
372 print "\tdefault \"".$target->{cflags}."\" if TARGET_".$target->{conf}."\n";
374 print "\tdefault \"-Os -pipe -funit-at-a-time\"\n";
377 foreach my $target (@target) {
378 my $v = kver($target->{version});
388 foreach my $def (sort keys %defaults) {
389 print "\tconfig DEFAULT_".$def."\n";
390 print "\t\tbool\n\n";
395 sub __find_package_dep($$) {
398 my $deps = ($pkg->{vdepends} or $pkg->{depends});
400 return 0 unless defined $deps;
401 foreach my $dep (@{$deps}) {
402 next if $dep_check{$dep};
403 $dep_check{$dep} = 1;
404 return 1 if $dep eq $name;
405 return 1 if ($package{$dep} and (__find_package_dep($package{$dep},$name) == 1));
410 # wrapper to avoid infinite recursion
411 sub find_package_dep($$) {
416 return __find_package_dep($pkg, $name);
419 sub package_depends($$) {
424 return 0 if ($a->{submenu} ne $b->{submenu});
425 if (find_package_dep($a, $b->{name}) == 1) {
427 } elsif (find_package_dep($b, $a->{name}) == 1) {
438 my $only_dep = shift;
442 my $parent_condition = shift;
448 my @depends = @$depends;
449 foreach my $depend (@depends) {
450 my $m = "depends on";
452 $depend =~ s/^([@\+]+)// and $flags = $1;
454 my $condition = $parent_condition;
456 next if $condition eq $depend;
457 next if $seen->{"$parent_condition:$depend"};
458 next if $seen->{":$depend"};
459 $seen->{"$parent_condition:$depend"} = 1;
460 if ($depend =~ /^(.+):(.+)$/) {
461 if ($1 ne "PACKAGE_$pkgname") {
463 $condition = "$condition && $1";
470 next if $package{$depend} and $package{$depend}->{buildonly};
471 if ($vdep = $package{$depend}->{vdepends}) {
472 $depend = join("||", map { "PACKAGE_".$_ } @$vdep);
474 $flags =~ /\+/ and do {
475 # Menuconfig will not treat 'select FOO' as a real dependency
476 # thus if FOO depends on other config options, these dependencies
477 # will not be checked. To fix this, we simply emit all of FOO's
478 # depends here as well.
479 $package{$depend} and push @t_depends, [ $package{$depend}->{depends}, $condition ];
484 $flags =~ /@/ or $depend = "PACKAGE_$depend";
486 if ($m =~ /select/) {
487 next if $depend eq $condition;
488 $depend = "$depend if $condition";
490 $depend = "!($condition) || $depend";
494 $dep->{$depend} =~ /select/ or $dep->{$depend} = $m;
497 foreach my $tdep (@t_depends) {
498 mconf_depends($pkgname, $tdep->[0], 1, $dep, $seen, $tdep->[1]);
501 foreach my $depend (keys %$dep) {
502 my $m = $dep->{$depend};
503 $res .= "\t\t$m $depend\n";
508 sub print_package_config_category($) {
513 return unless $category{$cat};
515 print "menu \"$cat\"\n\n";
516 my %spkg = %{$category{$cat}};
518 foreach my $spkg (sort {uc($a) cmp uc($b)} keys %spkg) {
519 foreach my $pkg (@{$spkg{$spkg}}) {
520 next if $pkg->{buildonly};
521 my $menu = $pkg->{submenu};
523 $menu_dep{$menu} or $menu_dep{$menu} = $pkg->{submenudep};
527 $menus{$menu} or $menus{$menu} = [];
528 push @{$menus{$menu}}, $pkg;
532 ($a eq 'undef' ? 1 : 0) or
533 ($b eq 'undef' ? -1 : 0) or
537 foreach my $menu (@menus) {
539 package_depends($a, $b) or
540 ($a->{name} cmp $b->{name})
542 if ($menu ne 'undef') {
543 $menu_dep{$menu} and print "if $menu_dep{$menu}\n";
544 print "menu \"$menu\"\n";
546 foreach my $pkg (@pkgs) {
547 my $title = $pkg->{name};
548 my $c = (72 - length($pkg->{name}) - length($pkg->{title}));
550 $title .= ("." x $c). " ". $pkg->{title};
552 $title = "\"$title\"";
554 $pkg->{menu} and print "menu";
555 print "config PACKAGE_".$pkg->{name}."\n";
556 $pkg->{hidden} and $title = "";
557 print "\t\t".($pkg->{tristate} ? 'tristate' : 'bool')." $title\n";
558 print "\t\tdefault y if DEFAULT_".$pkg->{name}."\n";
559 unless ($pkg->{hidden}) {
560 $pkg->{default} ||= "m if ALL";
562 if ($pkg->{default}) {
563 foreach my $default (split /\s*,\s*/, $pkg->{default}) {
564 print "\t\tdefault $default\n";
567 print mconf_depends($pkg->{name}, $pkg->{depends}, 0);
568 print mconf_depends($pkg->{name}, $pkg->{mdepends}, 0);
570 print $pkg->{description};
573 $pkg->{config} and print $pkg->{config}."\n";
575 if ($menu ne 'undef') {
577 $menu_dep{$menu} and print "endif\n";
582 undef $category{$cat};
585 sub print_package_features() {
586 keys %features > 0 or return;
587 print "menu \"Package features\"\n";
588 foreach my $n (keys %features) {
589 my @features = sort { $b->{priority} <=> $a->{priority} or $a->{title} cmp $b->{title} } @{$features{$n}};
592 prompt "$features[0]->{target_title}"
593 default FEATURE_$features[0]->{name}
596 foreach my $feature (@features) {
598 config FEATURE_$feature->{name}
599 bool "$feature->{title}"
601 $feature->{description} =~ /\w/ and do {
602 print "\t\thelp\n".$feature->{description}."\n";
610 sub gen_package_config() {
611 parse_package_metadata($ARGV[0]) or exit 1;
612 print "menuconfig IMAGEOPT\n\tbool \"Image configuration\"\n\tdefault n\n";
613 foreach my $preconfig (keys %preconfig) {
614 foreach my $cfg (keys %{$preconfig{$preconfig}}) {
615 my $conf = $preconfig{$preconfig}->{$cfg}->{id};
618 config UCI_PRECONFIG_$conf
619 string "$preconfig{$preconfig}->{$cfg}->{label}" if IMAGEOPT
620 depends on PACKAGE_$preconfig
621 default "$preconfig{$preconfig}->{$cfg}->{default}"
626 print "source \"package/*/image-config.in\"\n";
627 if (scalar glob "package/feeds/*/*/image-config.in") {
628 print "source \"package/feeds/*/*/image-config.in\"\n";
630 print_package_features();
631 print_package_config_category 'Base system';
632 foreach my $cat (sort {uc($a) cmp uc($b)} keys %category) {
633 print_package_config_category $cat;
637 sub get_conditional_dep($$) {
638 my $condition = shift;
641 if ($condition =~ /^!(.+)/) {
642 return "\$(if \$(CONFIG_$1),,$depstr)";
644 return "\$(if \$(CONFIG_$condition),$depstr)";
651 sub gen_package_mk() {
657 parse_package_metadata($ARGV[0]) or exit 1;
658 foreach my $name (sort {uc($a) cmp uc($b)} keys %package) {
660 my $pkg = $package{$name};
663 next if defined $pkg->{vdepends};
666 $conf{$pkg->{src}} or do {
668 $conf{$pkg->{src}} = 1;
671 $config = "\$(CONFIG_PACKAGE_$name)"
674 $pkg->{buildonly} and $config = "";
675 print "package-$config += $pkg->{subdir}$pkg->{src}\n";
676 if ($pkg->{variant}) {
677 if (!defined($done{$pkg->{src}})) {
678 print "\$(curdir)/$pkg->{subdir}$pkg->{src}/default-variant := $pkg->{variant}\n";
680 print "\$(curdir)/$pkg->{subdir}$pkg->{src}/variants += \$(if $config,$pkg->{variant})\n"
682 $pkg->{prereq} and print "prereq-$config += $pkg->{subdir}$pkg->{src}\n";
685 next if $done{$pkg->{src}};
686 $done{$pkg->{src}} = 1;
688 if (@{$pkg->{buildtypes}} > 0) {
689 print "buildtypes-$pkg->{subdir}$pkg->{src} = ".join(' ', @{$pkg->{buildtypes}})."\n";
692 foreach my $spkg (@{$srcpackage{$pkg->{src}}}) {
693 foreach my $dep (@{$spkg->{depends}}, @{$spkg->{builddepends}}) {
700 foreach my $type (@{$pkg->{buildtypes}}) {
704 next unless $pkg->{"builddepends/$type"};
705 foreach my $dep (@{$pkg->{"builddepends/$type"}}) {
709 if ($dep =~ /^(.+):(.+)/) {
713 if ($dep =~ /^(.+)(\/.+)/) {
719 my $pkg_dep = $package{$dep};
720 if (defined($pkg_dep) && defined($pkg_dep->{src})) {
721 $idx = $pkg_dep->{subdir}.$pkg_dep->{src};
722 } elsif (defined($srcpackage{$dep})) {
723 $idx = $subdir{$dep}.$dep;
727 my $depstr = "\$(curdir)/$idx$suffix/compile";
728 my $depline = get_conditional_dep($condition, $depstr);
730 $deplines{$depline}++;
733 my $depline = join(" ", sort keys %deplines);
735 $line .= "\$(curdir)/".$pkg->{subdir}."$pkg->{src}/$type/compile += $depline\n";
741 foreach my $deps (@srcdeps) {
747 if ($deps =~ /^(.+):(.+)/) {
751 if ($deps =~ /^(.+)(\/.+)/) {
756 my $pkg_dep = $package{$deps};
759 if ($pkg_dep->{vdepends}) {
760 @deps = @{$pkg_dep->{vdepends}};
765 foreach my $dep (@deps) {
766 $pkg_dep = $package{$deps};
767 if (defined $pkg_dep->{src}) {
768 ($pkg->{src} ne $pkg_dep->{src}.$suffix) and $idx = $pkg_dep->{subdir}.$pkg_dep->{src};
769 } elsif (defined($srcpackage{$dep})) {
770 $idx = $subdir{$dep}.$dep;
773 undef $idx if $idx eq 'base-files';
776 next if $pkg->{src} eq $pkg_dep->{src}.$suffix;
777 next if $dep{$condition.":".$pkg->{src}."->".$idx};
778 next if $dep{$pkg->{src}."->($dep)".$idx} and $pkg_dep->{vdepends};
781 if ($pkg_dep->{vdepends}) {
782 $depstr = "\$(if \$(CONFIG_PACKAGE_$dep),\$(curdir)/$idx/compile)";
783 $dep{$pkg->{src}."->($dep)".$idx} = 1;
785 $depstr = "\$(curdir)/$idx/compile";
786 $dep{$pkg->{src}."->".$idx} = 1;
788 $depline = get_conditional_dep($condition, $depstr);
790 $deplines{$depline}++;
795 my $depline = join(" ", sort keys %deplines);
797 $line .= "\$(curdir)/".$pkg->{subdir}."$pkg->{src}/compile += $depline\n";
804 foreach my $preconfig (keys %preconfig) {
806 foreach my $cfg (keys %{$preconfig{$preconfig}}) {
807 my $conf = $preconfig{$preconfig}->{$cfg}->{id};
809 $cmds .= "\techo \"uci set '$preconfig{$preconfig}->{$cfg}->{id}=\$(subst \",,\$(CONFIG_UCI_PRECONFIG_$conf))'\"; \\\n";
814 ifndef DUMP_TARGET_DB
815 \$(TARGET_DIR)/etc/uci-defaults/$preconfig: FORCE
820 ifneq (\$(IMAGEOPT)\$(CONFIG_IMAGEOPT),)
821 package/preconfig: \$(TARGET_DIR)/etc/uci-defaults/$preconfig
829 sub gen_package_source() {
830 parse_package_metadata($ARGV[0]) or exit 1;
831 foreach my $name (sort {uc($a) cmp uc($b)} keys %package) {
832 my $pkg = $package{$name};
833 if ($pkg->{name} && $pkg->{source}) {
834 print "$pkg->{name}: ";
835 print "$pkg->{source}\n";
840 sub parse_command() {
841 my $cmd = shift @ARGV;
843 /^target_config$/ and return gen_target_config();
844 /^package_mk$/ and return gen_package_mk();
845 /^package_config$/ and return gen_package_config();
846 /^kconfig/ and return gen_kconfig_overrides();
847 /^package_source$/ and return gen_package_source();
851 $0 target_config [file] Target metadata in Kconfig format
852 $0 package_mk [file] Package metadata in makefile format
853 $0 package_config [file] Package metadata in Kconfig format
854 $0 kconfig [file] [config] Kernel config overrides
855 $0 package_source [file] Package source file information