backport swconfig kernel support and the ip175c driver from trunk to 8.09 and enable...
[openwrt/svn-archive/archive.git] / scripts / metadata.pl
1 #!/usr/bin/env perl
2 use FindBin;
3 use lib "$FindBin::Bin";
4 use strict;
5 use metadata;
6
7 my %board;
8
9 sub confstr($) {
10 my $conf = shift;
11 $conf =~ tr#/\.\-/#___#;
12 return $conf;
13 }
14
15 sub parse_target_metadata() {
16 my $file = shift @ARGV;
17 my ($target, @target, $profile);
18 my %target;
19
20 open FILE, "<$file" or do {
21 warn "Can't open file '$file': $!\n";
22 return;
23 };
24 while (<FILE>) {
25 chomp;
26 /^Target:\s*(.+)\s*$/ and do {
27 my $name = $1;
28 $target = {
29 id => $name,
30 board => $name,
31 boardconf => confstr($name),
32 conf => confstr($name),
33 profiles => [],
34 features => [],
35 depends => [],
36 subtargets => []
37 };
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};
46 }
47 };
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 {
60 $profile = {
61 id => $1,
62 name => $1,
63 packages => []
64 };
65 push @{$target->{profiles}}, $profile;
66 };
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;
72 }
73 close FILE;
74 foreach my $target (@target) {
75 next if @{$target->{subtargets}} > 0;
76 @{$target->{profiles}} > 0 or $target->{profiles} = [
77 {
78 id => 'Default',
79 name => 'Default',
80 packages => []
81 }
82 ];
83 }
84 return @target;
85 }
86
87 sub gen_kconfig_overrides() {
88 my %config;
89 my %kconfig;
90 my $package;
91 my $pkginfo = shift @ARGV;
92 my $cfgfile = shift @ARGV;
93
94 # parameter 2: build system config
95 open FILE, "<$cfgfile" or return;
96 while (<FILE>) {
97 /^(CONFIG_.+?)=(.+)$/ and $config{$1} = 1;
98 }
99 close FILE;
100
101 # parameter 1: package metadata
102 open FILE, "<$pkginfo" or return;
103 while (<FILE>) {
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) {
108 my $val = 'm';
109 my $override;
110 if ($config =~ /^(.+?)=(.+)$/) {
111 $config = $1;
112 $override = 1;
113 $val = $2;
114 }
115 if ($config{"CONFIG_PACKAGE_$package"} and ($config ne 'n')) {
116 $kconfig{$config} = $val;
117 } elsif (!$override) {
118 $kconfig{$config} or $kconfig{$config} = 'n';
119 }
120 }
121 };
122 };
123 close FILE;
124
125 foreach my $kconfig (sort keys %kconfig) {
126 if ($kconfig{$kconfig} eq 'n') {
127 print "# $kconfig is not set\n";
128 } else {
129 print "$kconfig=$kconfig{$kconfig}\n";
130 }
131 }
132 }
133
134 sub merge_package_lists($$) {
135 my $list1 = shift;
136 my $list2 = shift;
137 my @l = ();
138 my %pkgs;
139
140 foreach my $pkg (@$list1, @$list2) {
141 $pkgs{$pkg} = 1;
142 }
143 foreach my $pkg (keys %pkgs) {
144 push @l, $pkg unless ($pkg =~ /^-/ or $pkgs{"-$pkg"});
145 }
146 return sort(@l);
147 }
148
149 sub target_config_features(@) {
150 my $ret;
151
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";
165 }
166 return $ret;
167 }
168
169 sub target_name($) {
170 my $target = shift;
171 my $parent = $target->{parent};
172 if ($parent) {
173 return $target->{parent}->{name}." - ".$target->{name};
174 } else {
175 return $target->{name};
176 }
177 }
178
179 sub kver($) {
180 my $v = shift;
181 $v =~ tr/\./_/;
182 $v =~ /(\d+_\d+_\d+)(_\d+)?/ and $v = $1;
183 return $v;
184 }
185
186 sub print_target($) {
187 my $target = shift;
188 my $features = target_config_features(@{$target->{features}});
189 my $help = $target->{desc};
190 my $kernel = $target->{kernel};
191 my $confstr;
192 $kernel =~ tr/./_/;
193
194 chomp $features;
195 $features .= "\n";
196 if ($help =~ /\w+/) {
197 $help =~ s/^\s*/\t /mg;
198 $help = "\thelp\n$help";
199 } else {
200 undef $help;
201 }
202
203 my $v = kver($target->{version});
204 $confstr = <<EOF;
205 config TARGET_$target->{conf}
206 bool "$target->{name}"
207 select LINUX_$kernel
208 select LINUX_$v
209 EOF
210 if ($target->{subtarget}) {
211 $confstr .= "\tdepends TARGET_$target->{boardconf}\n";
212 }
213 if (@{$target->{subtargets}} > 0) {
214 $confstr .= "\tselect HAS_SUBTARGETS\n";
215 } else {
216 $confstr .= "\tselect $target->{arch}\n";
217 foreach my $dep (@{$target->{depends}}) {
218 my $mode = "depends";
219 my $flags;
220 my $name;
221
222 $dep =~ /^([@\+\-]+)(.+)$/;
223 $flags = $1;
224 $name = $2;
225
226 next if $name =~ /:/;
227 $flags =~ /-/ and $mode = "deselect";
228 $flags =~ /\+/ and $mode = "select";
229 $flags =~ /@/ and $confstr .= "\t$mode $name\n";
230 }
231 $confstr .= $features;
232 }
233
234 $confstr .= "$help\n\n";
235 print $confstr;
236 }
237
238 sub gen_target_config() {
239 my @target = parse_target_metadata();
240 my %defaults;
241
242 my @target_sort = sort {
243 target_name($a) cmp target_name($b);
244 } @target;
245
246
247 print <<EOF;
248 choice
249 prompt "Target System"
250 default TARGET_brcm_2_4
251 reset if !DEVEL
252
253 EOF
254
255 foreach my $target (@target_sort) {
256 next if $target->{subtarget};
257 print_target($target);
258 }
259
260 print <<EOF;
261 endchoice
262
263 choice
264 prompt "Subtarget" if HAS_SUBTARGETS
265
266 EOF
267 foreach my $target (@target) {
268 next unless $target->{subtarget};
269 print_target($target);
270 }
271
272 print <<EOF;
273 endchoice
274
275 choice
276 prompt "Target Profile"
277
278 EOF
279
280 foreach my $target (@target) {
281 my $profiles = $target->{profiles};
282
283 foreach my $profile (@$profiles) {
284 print <<EOF;
285 config TARGET_$target->{conf}_$profile->{id}
286 bool "$profile->{name}"
287 depends TARGET_$target->{conf}
288 $profile->{config}
289 EOF
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";
294 $defaults{$pkg} = 1;
295 }
296 print "\n";
297 }
298 }
299
300 print <<EOF;
301 endchoice
302
303 config HAS_SUBTARGETS
304 bool
305
306 config TARGET_BOARD
307 string
308
309 EOF
310 foreach my $target (@target) {
311 $target->{subtarget} or print "\t\tdefault \"".$target->{board}."\" if TARGET_".$target->{conf}."\n";
312 }
313
314 my %kver;
315 foreach my $target (@target) {
316 my $v = kver($target->{version});
317 next if $kver{$v};
318 $kver{$v} = 1;
319 print <<EOF;
320 config LINUX_$v
321 bool
322 EOF
323 }
324 foreach my $def (sort keys %defaults) {
325 print "\tconfig DEFAULT_".$def."\n";
326 print "\t\tbool\n\n";
327 }
328 }
329
330 my %dep_check;
331 sub __find_package_dep($$) {
332 my $pkg = shift;
333 my $name = shift;
334 my $deps = ($pkg->{vdepends} or $pkg->{depends});
335
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));
342 }
343 return 0;
344 }
345
346 # wrapper to avoid infinite recursion
347 sub find_package_dep($$) {
348 my $pkg = shift;
349 my $name = shift;
350
351 %dep_check = ();
352 return __find_package_dep($pkg, $name);
353 }
354
355 sub package_depends($$) {
356 my $a = shift;
357 my $b = shift;
358 my $ret;
359
360 return 0 if ($a->{submenu} ne $b->{submenu});
361 if (find_package_dep($a, $b->{name}) == 1) {
362 $ret = 1;
363 } elsif (find_package_dep($b, $a->{name}) == 1) {
364 $ret = -1;
365 } else {
366 return 0;
367 }
368 return $ret;
369 }
370
371 sub mconf_depends {
372 my $pkgname = shift;
373 my $depends = shift;
374 my $only_dep = shift;
375 my $res;
376 my $dep = shift;
377 my $seen = shift;
378 my $parent_condition = shift;
379 $dep or $dep = {};
380 $seen or $seen = {};
381
382 $depends or return;
383 my @depends = @$depends;
384 foreach my $depend (@depends) {
385 my $m = "depends";
386 $depend =~ s/^([@\+]+)//;
387 my $flags = $1;
388 my $vdep;
389 my $condition = $parent_condition;
390
391 if ($depend =~ /^(.+):(.+)$/) {
392 if ($1 ne "PACKAGE_$pkgname") {
393 if ($condition) {
394 $condition = "$condition && $1";
395 } else {
396 $condition = $1;
397 }
398 }
399 $depend = $2;
400 }
401 next if $seen->{$depend};
402 next if $package{$depend} and $package{$depend}->{buildonly};
403 $seen->{$depend} = 1;
404 if ($vdep = $package{$depend}->{vdepends}) {
405 $depend = join("||", map { "PACKAGE_".$_ } @$vdep);
406 } else {
407 $flags =~ /\+/ and do {
408 # Menuconfig will not treat 'select FOO' as a real dependency
409 # thus if FOO depends on other config options, these dependencies
410 # will not be checked. To fix this, we simply emit all of FOO's
411 # depends here as well.
412 $package{$depend} and mconf_depends($pkgname, $package{$depend}->{depends}, 1, $dep, $seen, $condition);
413
414 $m = "select";
415 next if $only_dep;
416 };
417 $flags =~ /@/ or $depend = "PACKAGE_$depend";
418 if ($condition) {
419 if ($m =~ /select/) {
420 $depend = "$depend if $condition";
421 } else {
422 $depend = "!($condition) || $depend";
423 }
424 }
425 }
426 $dep->{$depend} =~ /select/ or $dep->{$depend} = $m;
427 }
428 foreach my $depend (keys %$dep) {
429 my $m = $dep->{$depend};
430 $res .= "\t\t$m $depend\n";
431 }
432 return $res;
433 }
434
435 sub print_package_config_category($) {
436 my $cat = shift;
437 my %menus;
438 my %menu_dep;
439
440 return unless $category{$cat};
441
442 print "menu \"$cat\"\n\n";
443 my %spkg = %{$category{$cat}};
444
445 foreach my $spkg (sort {uc($a) cmp uc($b)} keys %spkg) {
446 foreach my $pkg (@{$spkg{$spkg}}) {
447 next if $pkg->{buildonly};
448 my $menu = $pkg->{submenu};
449 if ($menu) {
450 $menu_dep{$menu} or $menu_dep{$menu} = $pkg->{submenudep};
451 } else {
452 $menu = 'undef';
453 }
454 $menus{$menu} or $menus{$menu} = [];
455 push @{$menus{$menu}}, $pkg;
456 }
457 }
458 my @menus = sort {
459 ($a eq 'undef' ? 1 : 0) or
460 ($b eq 'undef' ? -1 : 0) or
461 ($a cmp $b)
462 } keys %menus;
463
464 foreach my $menu (@menus) {
465 my @pkgs = sort {
466 package_depends($a, $b) or
467 ($a->{name} cmp $b->{name})
468 } @{$menus{$menu}};
469 if ($menu ne 'undef') {
470 $menu_dep{$menu} and print "if $menu_dep{$menu}\n";
471 print "menu \"$menu\"\n";
472 }
473 foreach my $pkg (@pkgs) {
474 my $title = $pkg->{name};
475 my $c = (72 - length($pkg->{name}) - length($pkg->{title}));
476 if ($c > 0) {
477 $title .= ("." x $c). " ". $pkg->{title};
478 }
479 print "\t";
480 $pkg->{menu} and print "menu";
481 print "config PACKAGE_".$pkg->{name}."\n";
482 print "\t\t".($pkg->{tristate} ? 'tristate' : 'bool')." \"$title\"\n";
483 print "\t\tdefault y if DEFAULT_".$pkg->{name}."\n";
484 foreach my $default (split /\s*,\s*/, $pkg->{default}) {
485 print "\t\tdefault $default\n";
486 }
487 print mconf_depends($pkg->{name}, $pkg->{depends}, 0);
488 print "\t\thelp\n";
489 print $pkg->{description};
490 print "\n";
491
492 $pkg->{config} and print $pkg->{config}."\n";
493 }
494 if ($menu ne 'undef') {
495 print "endmenu\n";
496 $menu_dep{$menu} and print "endif\n";
497 }
498 }
499 print "endmenu\n\n";
500
501 undef $category{$cat};
502 }
503
504 sub gen_package_config() {
505 parse_package_metadata($ARGV[0]) or exit 1;
506 print "menuconfig UCI_PRECONFIG\n\tbool \"Image configuration\"\n" if %preconfig;
507 foreach my $preconfig (keys %preconfig) {
508 foreach my $cfg (keys %{$preconfig{$preconfig}}) {
509 my $conf = $preconfig{$preconfig}->{$cfg}->{id};
510 $conf =~ tr/\.-/__/;
511 print <<EOF
512 config UCI_PRECONFIG_$conf
513 string "$preconfig{$preconfig}->{$cfg}->{label}" if UCI_PRECONFIG
514 depends PACKAGE_$preconfig
515 default "$preconfig{$preconfig}->{$cfg}->{default}"
516
517 EOF
518 }
519 }
520 print_package_config_category 'Base system';
521 foreach my $cat (keys %category) {
522 print_package_config_category $cat;
523 }
524 }
525
526 sub get_conditional_dep($$) {
527 my $condition = shift;
528 my $depstr = shift;
529 if ($condition) {
530 if ($condition =~ /^!(.+)/) {
531 return "\$(if \$(CONFIG_$1),,$depstr)";
532 } else {
533 return "\$(if \$(CONFIG_$condition),$depstr)";
534 }
535 } else {
536 return $depstr;
537 }
538 }
539
540 sub gen_package_mk() {
541 my %conf;
542 my %dep;
543 my %done;
544 my $line;
545
546 parse_package_metadata($ARGV[0]) or exit 1;
547 foreach my $name (sort {uc($a) cmp uc($b)} keys %package) {
548 my $config;
549 my $pkg = $package{$name};
550 my @srcdeps;
551
552 next if defined $pkg->{vdepends};
553
554 if ($ENV{SDK}) {
555 $conf{$pkg->{src}} or do {
556 $config = 'm';
557 $conf{$pkg->{src}} = 1;
558 };
559 } else {
560 $config = "\$(CONFIG_PACKAGE_$name)"
561 }
562 if ($config) {
563 $pkg->{buildonly} and $config = "";
564 print "package-$config += $pkg->{subdir}$pkg->{src}\n";
565 $pkg->{prereq} and print "prereq-$config += $pkg->{subdir}$pkg->{src}\n";
566 }
567
568 next if $done{$pkg->{src}};
569 $done{$pkg->{src}} = 1;
570
571 if (@{$pkg->{buildtypes}} > 0) {
572 print "buildtypes-$pkg->{subdir}$pkg->{src} = ".join(' ', @{$pkg->{buildtypes}})."\n";
573 }
574
575 foreach my $spkg (@{$srcpackage{$pkg->{src}}}) {
576 foreach my $dep (@{$spkg->{depends}}, @{$spkg->{builddepends}}) {
577 $dep =~ /@/ or do {
578 $dep =~ s/\+//g;
579 push @srcdeps, $dep;
580 };
581 }
582 }
583 foreach my $type (@{$pkg->{buildtypes}}) {
584 my @extra_deps;
585 my %deplines;
586
587 next unless $pkg->{"builddepends/$type"};
588 foreach my $dep (@{$pkg->{"builddepends/$type"}}) {
589 my $suffix = "";
590 my $condition;
591
592 if ($dep =~ /^(.+):(.+)/) {
593 $condition = $1;
594 $dep = $2;
595 }
596 if ($dep =~ /^(.+)(\/.+)/) {
597 $dep = $1;
598 $suffix = $2;
599 }
600 my $pkg_dep = $package{$dep};
601 next unless $pkg_dep;
602
603 my $idx = "";
604 if (defined $pkg_dep->{src}) {
605 $idx = $pkg_dep->{subdir}.$pkg_dep->{src};
606 } elsif (defined($srcpackage{$dep})) {
607 $idx = $subdir{$dep}.$dep;
608 }
609 my $depstr = "\$(curdir)/$idx$suffix/compile";
610 my $depline = get_conditional_dep($condition, $depstr);
611 if ($depline) {
612 $deplines{$dep} = $depline;
613 }
614 }
615 my $depline = join(" ", values %deplines);
616 if ($depline) {
617 $line .= "\$(curdir)/".$pkg->{subdir}."$pkg->{src}/$type/compile += $depline\n";
618 }
619 }
620
621 my $hasdeps = 0;
622 my %deplines;
623 foreach my $deps (@srcdeps) {
624 my $idx;
625 my $condition;
626 my $prefix = "";
627 my $suffix = "";
628
629 if ($deps =~ /^(.+):(.+)/) {
630 $condition = $1;
631 $deps = $2;
632 }
633 if ($deps =~ /^(.+)(\/.+)/) {
634 $deps = $1;
635 $suffix = $2;
636 }
637
638 my $pkg_dep = $package{$deps};
639 my @deps;
640
641 if ($pkg_dep->{vdepends}) {
642 @deps = @{$pkg_dep->{vdepends}};
643 } else {
644 @deps = ($deps);
645 }
646
647 foreach my $dep (@deps) {
648 $pkg_dep = $package{$deps};
649 if (defined $pkg_dep->{src}) {
650 ($pkg->{src} ne $pkg_dep->{src}.$suffix) and $idx = $pkg_dep->{subdir}.$pkg_dep->{src};
651 } elsif (defined($srcpackage{$dep})) {
652 $idx = $subdir{$dep}.$dep;
653 }
654 $idx .= $suffix;
655 undef $idx if $idx =~ /^(kernel)|(base-files)$/;
656 if ($idx) {
657 my $depline;
658 next if $pkg->{src} eq $pkg_dep->{src}.$suffix;
659 next if $dep{$pkg->{src}."->".$idx};
660 next if $dep{$pkg->{src}."->($dep)".$idx} and $pkg_dep->{vdepends};
661 my $depstr;
662
663 if ($pkg_dep->{vdepends}) {
664 $depstr = "\$(if \$(CONFIG_PACKAGE_$dep),\$(curdir)/$idx/compile)";
665 $dep{$pkg->{src}."->($dep)".$idx} = 1;
666 } else {
667 $depstr = "\$(curdir)/$idx/compile";
668 $dep{$pkg->{src}."->".$idx} = 1;
669 }
670 $depline = get_conditional_dep($condition, $depstr);
671 if ($depline) {
672 $deplines{$idx.$dep} = $depline;
673 }
674 }
675 }
676 }
677 my $depline = join(" ", values %deplines);
678 if ($depline) {
679 $line .= "\$(curdir)/".$pkg->{subdir}."$pkg->{src}/compile += $depline\n";
680 }
681 }
682
683 if ($line ne "") {
684 print "\n$line";
685 }
686 foreach my $preconfig (keys %preconfig) {
687 my $cmds;
688 foreach my $cfg (keys %{$preconfig{$preconfig}}) {
689 my $conf = $preconfig{$preconfig}->{$cfg}->{id};
690 $conf =~ tr/\.-/__/;
691 $cmds .= "\techo \"uci set '$preconfig{$preconfig}->{$cfg}->{id}=\$(subst \",,\$(CONFIG_UCI_PRECONFIG_$conf))'\"; \\\n";
692 }
693 next unless $cmds;
694 print <<EOF
695
696 \$(TARGET_DIR)/etc/uci-defaults/$preconfig: FORCE
697 ( \\
698 $cmds \\
699 ) > \$@
700
701 ifneq (\$(UCI_PRECONFIG)\$(CONFIG_UCI_PRECONFIG),)
702 package/preconfig: \$(TARGET_DIR)/etc/uci-defaults/$preconfig
703 endif
704 EOF
705 }
706 }
707
708 sub gen_package_source() {
709 parse_package_metadata($ARGV[0]) or exit 1;
710 foreach my $name (sort {uc($a) cmp uc($b)} keys %package) {
711 my $pkg = $package{$name};
712 if ($pkg->{name} && $pkg->{source}) {
713 print "$pkg->{name}: ";
714 print "$pkg->{source}\n";
715 }
716 }
717 }
718
719 sub parse_command() {
720 my $cmd = shift @ARGV;
721 for ($cmd) {
722 /^target_config$/ and return gen_target_config();
723 /^package_mk$/ and return gen_package_mk();
724 /^package_config$/ and return gen_package_config();
725 /^kconfig/ and return gen_kconfig_overrides();
726 /^package_source$/ and return gen_package_source();
727 }
728 print <<EOF
729 Available Commands:
730 $0 target_config [file] Target metadata in Kconfig format
731 $0 package_mk [file] Package metadata in makefile format
732 $0 package_config [file] Package metadata in Kconfig format
733 $0 kconfig [file] [config] Kernel config overrides
734 $0 package_source [file] Package source file information
735
736 EOF
737 }
738
739 parse_command();