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-Arch-Packages:\s*(.+)\s*$/ and $target->{arch_packages} = $1;
53 /^Target-Features:\s*(.+)\s*$/ and $target->{features} = [ split(/\s+/, $1) ];
54 /^Target-Depends:\s*(.+)\s*$/ and $target->{depends} = [ split(/\s+/, $1) ];
55 /^Target-Description:/ and $target->{desc} = get_multiline(*FILE);
56 /^Target-Optimization:\s*(.+)\s*$/ and $target->{cflags} = $1;
57 /^Linux-Version:\s*(.+)\s*$/ and $target->{version} = $1;
58 /^Linux-Release:\s*(.+)\s*$/ and $target->{release} = $1;
59 /^Linux-Kernel-Arch:\s*(.+)\s*$/ and $target->{karch} = $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 $kconfig{$config} = $val;
119 } elsif (!$override) {
120 $kconfig{$config} or $kconfig{$config} = 'n';
127 foreach my $kconfig (sort keys %kconfig) {
128 if ($kconfig{$kconfig} eq 'n') {
129 print "# $kconfig is not set\n";
131 print "$kconfig=$kconfig{$kconfig}\n";
136 sub merge_package_lists($$) {
142 foreach my $pkg (@$list1, @$list2) {
145 foreach my $pkg (keys %pkgs) {
146 push @l, $pkg unless ($pkg =~ /^-/ or $pkgs{"-$pkg"});
151 sub target_config_features(@) {
154 while ($_ = shift @_) {
155 /broken/ and $ret .= "\tdepends BROKEN\n";
156 /audio/ and $ret .= "\tselect AUDIO_SUPPORT\n";
157 /display/ and $ret .= "\tselect DISPLAY_SUPPORT\n";
158 /gpio/ and $ret .= "\tselect GPIO_SUPPORT\n";
159 /pci/ and $ret .= "\tselect PCI_SUPPORT\n";
160 /pcie/ and $ret .= "\tselect PCIE_SUPPORT\n";
161 /usb/ and $ret .= "\tselect USB_SUPPORT\n";
162 /usbgadget/ and $ret .= "\tselect USB_GADGET_SUPPORT\n";
163 /pcmcia/ and $ret .= "\tselect PCMCIA_SUPPORT\n";
164 /squashfs/ and $ret .= "\tselect USES_SQUASHFS\n";
165 /jffs2/ and $ret .= "\tselect USES_JFFS2\n";
166 /ext4/ and $ret .= "\tselect USES_EXT4\n";
167 /targz/ and $ret .= "\tselect USES_TARGZ\n";
168 /cpiogz/ and $ret .= "\tselect USES_CPIOGZ\n";
169 /ubifs/ and $ret .= "\tselect USES_UBIFS\n";
170 /fpu/ and $ret .= "\tselect HAS_FPU\n";
171 /spe_fpu/ and $ret .= "\tselect HAS_SPE_FPU\n";
172 /ramdisk/ and $ret .= "\tselect USES_INITRAMFS\n";
173 /powerpc64/ and $ret .= "\tselect powerpc64\n";
174 /nommu/ and $ret .= "\tselect NOMMU\n";
181 my $parent = $target->{parent};
183 return $target->{parent}->{name}." - ".$target->{name};
185 return $target->{name};
192 $v =~ /(\d+_\d+_\d+)(_\d+)?/ and $v = $1;
196 sub print_target($) {
198 my $features = target_config_features(@{$target->{features}});
199 my $help = $target->{desc};
204 if ($help =~ /\w+/) {
205 $help =~ s/^\s*/\t /mg;
206 $help = "\thelp\n$help";
211 my $v = kver($target->{version});
212 if (@{$target->{subtargets}} == 0) {
214 config TARGET_$target->{conf}
215 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_brcm47xx
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";
337 config TARGET_ARCH_PACKAGES
341 foreach my $target (@target) {
342 next if @{$target->{subtargets}} > 0;
343 print "\t\tdefault \"".($target->{arch_packages} || $target->{board})."\" if TARGET_".$target->{conf}."\n";
347 config DEFAULT_TARGET_OPTIMIZATION
350 foreach my $target (@target) {
351 next if @{$target->{subtargets}} > 0;
352 print "\tdefault \"".$target->{cflags}."\" if TARGET_".$target->{conf}."\n";
354 print "\tdefault \"-Os -pipe -funit-at-a-time\"\n";
357 foreach my $target (@target) {
358 my $v = kver($target->{version});
368 foreach my $def (sort keys %defaults) {
369 print "\tconfig DEFAULT_".$def."\n";
370 print "\t\tbool\n\n";
375 sub __find_package_dep($$) {
378 my $deps = ($pkg->{vdepends} or $pkg->{depends});
380 return 0 unless defined $deps;
381 foreach my $dep (@{$deps}) {
382 next if $dep_check{$dep};
383 $dep_check{$dep} = 1;
384 return 1 if $dep eq $name;
385 return 1 if ($package{$dep} and (__find_package_dep($package{$dep},$name) == 1));
390 # wrapper to avoid infinite recursion
391 sub find_package_dep($$) {
396 return __find_package_dep($pkg, $name);
399 sub package_depends($$) {
404 return 0 if ($a->{submenu} ne $b->{submenu});
405 if (find_package_dep($a, $b->{name}) == 1) {
407 } elsif (find_package_dep($b, $a->{name}) == 1) {
418 my $only_dep = shift;
422 my $parent_condition = shift;
427 my @depends = @$depends;
428 foreach my $depend (@depends) {
431 $depend =~ s/^([@\+]+)// and $flags = $1;
433 my $condition = $parent_condition;
435 next if $condition eq $depend;
436 next if $seen->{"$parent_condition:$depend"};
437 $seen->{"$parent_condition:$depend"} = 1;
438 if ($depend =~ /^(.+):(.+)$/) {
439 if ($1 ne "PACKAGE_$pkgname") {
441 $condition = "$condition && $1";
448 next if $package{$depend} and $package{$depend}->{buildonly};
449 if ($vdep = $package{$depend}->{vdepends}) {
450 $depend = join("||", map { "PACKAGE_".$_ } @$vdep);
452 $flags =~ /\+/ and do {
453 # Menuconfig will not treat 'select FOO' as a real dependency
454 # thus if FOO depends on other config options, these dependencies
455 # will not be checked. To fix this, we simply emit all of FOO's
456 # depends here as well.
457 $package{$depend} and mconf_depends($pkgname, $package{$depend}->{depends}, 1, $dep, $seen, $condition);
462 $flags =~ /@/ or $depend = "PACKAGE_$depend";
464 if ($m =~ /select/) {
465 $depend = "$depend if $condition";
467 $depend = "!($condition) || $depend";
471 $dep->{$depend} =~ /select/ or $dep->{$depend} = $m;
473 foreach my $depend (keys %$dep) {
474 my $m = $dep->{$depend};
475 $res .= "\t\t$m $depend\n";
480 sub print_package_config_category($) {
485 return unless $category{$cat};
487 print "menu \"$cat\"\n\n";
488 my %spkg = %{$category{$cat}};
490 foreach my $spkg (sort {uc($a) cmp uc($b)} keys %spkg) {
491 foreach my $pkg (@{$spkg{$spkg}}) {
492 next if $pkg->{buildonly};
493 my $menu = $pkg->{submenu};
495 $menu_dep{$menu} or $menu_dep{$menu} = $pkg->{submenudep};
499 $menus{$menu} or $menus{$menu} = [];
500 push @{$menus{$menu}}, $pkg;
504 ($a eq 'undef' ? 1 : 0) or
505 ($b eq 'undef' ? -1 : 0) or
509 foreach my $menu (@menus) {
511 package_depends($a, $b) or
512 ($a->{name} cmp $b->{name})
514 if ($menu ne 'undef') {
515 $menu_dep{$menu} and print "if $menu_dep{$menu}\n";
516 print "menu \"$menu\"\n";
518 foreach my $pkg (@pkgs) {
519 my $title = $pkg->{name};
520 my $c = (72 - length($pkg->{name}) - length($pkg->{title}));
522 $title .= ("." x $c). " ". $pkg->{title};
525 $pkg->{menu} and print "menu";
526 print "config PACKAGE_".$pkg->{name}."\n";
527 print "\t\t".($pkg->{tristate} ? 'tristate' : 'bool')." \"$title\"\n";
528 print "\t\tdefault y if DEFAULT_".$pkg->{name}."\n";
529 foreach my $default (split /\s*,\s*/, $pkg->{default}) {
530 print "\t\tdefault $default\n";
532 print mconf_depends($pkg->{name}, $pkg->{depends}, 0);
534 print $pkg->{description};
537 $pkg->{config} and print $pkg->{config}."\n";
539 if ($menu ne 'undef') {
541 $menu_dep{$menu} and print "endif\n";
546 undef $category{$cat};
549 sub print_package_features() {
550 keys %features > 0 or return;
551 print "menu \"Package features\"\n";
552 foreach my $n (keys %features) {
553 my @features = sort { $b->{priority} <=> $a->{priority} or $a->{title} cmp $b->{title} } @{$features{$n}};
556 prompt "$features[0]->{target_title}"
557 default FEATURE_$features[0]->{name}
560 foreach my $feature (@features) {
562 config FEATURE_$feature->{name}
563 bool "$feature->{title}"
565 $feature->{description} =~ /\w/ and do {
566 print "\t\thelp\n".$feature->{description}."\n";
574 sub gen_package_config() {
575 parse_package_metadata($ARGV[0]) or exit 1;
576 print "menuconfig IMAGEOPT\n\tbool \"Image configuration\"\n\tdefault n\n";
577 foreach my $preconfig (keys %preconfig) {
578 foreach my $cfg (keys %{$preconfig{$preconfig}}) {
579 my $conf = $preconfig{$preconfig}->{$cfg}->{id};
582 config UCI_PRECONFIG_$conf
583 string "$preconfig{$preconfig}->{$cfg}->{label}" if IMAGEOPT
584 depends PACKAGE_$preconfig
585 default "$preconfig{$preconfig}->{$cfg}->{default}"
590 print "source \"package/*/image-config.in\"\n";
591 if (scalar glob "package/feeds/*/*/image-config.in") {
592 print "source \"package/feeds/*/*/image-config.in\"\n";
594 print_package_features();
595 print_package_config_category 'Base system';
596 foreach my $cat (keys %category) {
597 print_package_config_category $cat;
601 sub get_conditional_dep($$) {
602 my $condition = shift;
605 if ($condition =~ /^!(.+)/) {
606 return "\$(if \$(CONFIG_$1),,$depstr)";
608 return "\$(if \$(CONFIG_$condition),$depstr)";
615 sub gen_package_mk() {
621 parse_package_metadata($ARGV[0]) or exit 1;
622 foreach my $name (sort {uc($a) cmp uc($b)} keys %package) {
624 my $pkg = $package{$name};
627 next if defined $pkg->{vdepends};
630 $conf{$pkg->{src}} or do {
632 $conf{$pkg->{src}} = 1;
635 $config = "\$(CONFIG_PACKAGE_$name)"
638 $pkg->{buildonly} and $config = "";
639 print "package-$config += $pkg->{subdir}$pkg->{src}\n";
640 if ($pkg->{variant}) {
641 if (!defined($done{$pkg->{src}})) {
642 print "\$(curdir)/$pkg->{subdir}$pkg->{src}/default-variant := $pkg->{variant}\n";
644 print "\$(curdir)/$pkg->{subdir}$pkg->{src}/variants += \$(if $config,$pkg->{variant})\n"
646 $pkg->{prereq} and print "prereq-$config += $pkg->{subdir}$pkg->{src}\n";
649 next if $done{$pkg->{src}};
650 $done{$pkg->{src}} = 1;
652 if (@{$pkg->{buildtypes}} > 0) {
653 print "buildtypes-$pkg->{subdir}$pkg->{src} = ".join(' ', @{$pkg->{buildtypes}})."\n";
656 foreach my $spkg (@{$srcpackage{$pkg->{src}}}) {
657 foreach my $dep (@{$spkg->{depends}}, @{$spkg->{builddepends}}) {
664 foreach my $type (@{$pkg->{buildtypes}}) {
668 next unless $pkg->{"builddepends/$type"};
669 foreach my $dep (@{$pkg->{"builddepends/$type"}}) {
673 if ($dep =~ /^(.+):(.+)/) {
677 if ($dep =~ /^(.+)(\/.+)/) {
683 my $pkg_dep = $package{$dep};
684 if (defined($pkg_dep) && defined($pkg_dep->{src})) {
685 $idx = $pkg_dep->{subdir}.$pkg_dep->{src};
686 } elsif (defined($srcpackage{$dep})) {
687 $idx = $subdir{$dep}.$dep;
691 my $depstr = "\$(curdir)/$idx$suffix/compile";
692 my $depline = get_conditional_dep($condition, $depstr);
694 $deplines{$dep} = $depline;
697 my $depline = join(" ", values %deplines);
699 $line .= "\$(curdir)/".$pkg->{subdir}."$pkg->{src}/$type/compile += $depline\n";
705 foreach my $deps (@srcdeps) {
711 if ($deps =~ /^(.+):(.+)/) {
715 if ($deps =~ /^(.+)(\/.+)/) {
720 my $pkg_dep = $package{$deps};
723 if ($pkg_dep->{vdepends}) {
724 @deps = @{$pkg_dep->{vdepends}};
729 foreach my $dep (@deps) {
730 $pkg_dep = $package{$deps};
731 if (defined $pkg_dep->{src}) {
732 ($pkg->{src} ne $pkg_dep->{src}.$suffix) and $idx = $pkg_dep->{subdir}.$pkg_dep->{src};
733 } elsif (defined($srcpackage{$dep})) {
734 $idx = $subdir{$dep}.$dep;
737 undef $idx if $idx =~ /^(kernel)|(base-files)$/;
740 next if $pkg->{src} eq $pkg_dep->{src}.$suffix;
741 next if $dep{$pkg->{src}."->".$idx};
742 next if $dep{$pkg->{src}."->($dep)".$idx} and $pkg_dep->{vdepends};
745 if ($pkg_dep->{vdepends}) {
746 $depstr = "\$(if \$(CONFIG_PACKAGE_$dep),\$(curdir)/$idx/compile)";
747 $dep{$pkg->{src}."->($dep)".$idx} = 1;
749 $depstr = "\$(curdir)/$idx/compile";
750 $dep{$pkg->{src}."->".$idx} = 1;
752 $depline = get_conditional_dep($condition, $depstr);
754 $deplines{$idx.$dep} = $depline;
759 my $depline = join(" ", values %deplines);
761 $line .= "\$(curdir)/".$pkg->{subdir}."$pkg->{src}/compile += $depline\n";
768 foreach my $preconfig (keys %preconfig) {
770 foreach my $cfg (keys %{$preconfig{$preconfig}}) {
771 my $conf = $preconfig{$preconfig}->{$cfg}->{id};
773 $cmds .= "\techo \"uci set '$preconfig{$preconfig}->{$cfg}->{id}=\$(subst \",,\$(CONFIG_UCI_PRECONFIG_$conf))'\"; \\\n";
778 ifndef DUMP_TARGET_DB
779 \$(TARGET_DIR)/etc/uci-defaults/$preconfig: FORCE
784 ifneq (\$(IMAGEOPT)\$(CONFIG_IMAGEOPT),)
785 package/preconfig: \$(TARGET_DIR)/etc/uci-defaults/$preconfig
793 sub gen_package_source() {
794 parse_package_metadata($ARGV[0]) or exit 1;
795 foreach my $name (sort {uc($a) cmp uc($b)} keys %package) {
796 my $pkg = $package{$name};
797 if ($pkg->{name} && $pkg->{source}) {
798 print "$pkg->{name}: ";
799 print "$pkg->{source}\n";
804 sub parse_command() {
805 my $cmd = shift @ARGV;
807 /^target_config$/ and return gen_target_config();
808 /^package_mk$/ and return gen_package_mk();
809 /^package_config$/ and return gen_package_config();
810 /^kconfig/ and return gen_kconfig_overrides();
811 /^package_source$/ and return gen_package_source();
815 $0 target_config [file] Target metadata in Kconfig format
816 $0 package_mk [file] Package metadata in makefile format
817 $0 package_config [file] Package metadata in Kconfig format
818 $0 kconfig [file] [config] Kernel config overrides
819 $0 package_source [file] Package source file information