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 /pci/ and $ret .= "\tselect PCI_SUPPORT\n";
156 /usb/ and $ret .= "\tselect USB_SUPPORT\n";
157 /pcmcia/ and $ret .= "\tselect PCMCIA_SUPPORT\n";
158 /squashfs/ and $ret .= "\tselect USES_SQUASHFS\n";
159 /jffs2/ and $ret .= "\tselect USES_JFFS2\n";
160 /ext2/ and $ret .= "\tselect USES_EXT2\n";
161 /tgz/ and $ret .= "\tselect USES_TGZ\n";
168 my $parent = $target->{parent
};
170 return $target->{parent
}->{name
}." - ".$target->{name
};
172 return $target->{name
};
179 $v =~ /(\d+_\d+_\d+)(_\d+)?/ and $v = $1;
183 sub print_target
($) {
185 my $features = target_config_features
(@
{$target->{features
}});
186 my $help = $target->{desc
};
187 my $kernel = $target->{kernel
};
193 if ($help =~ /\w+/) {
194 $help =~ s/^\s*/\t /mg;
195 $help = "\thelp\n$help";
200 my $v = kver
($target->{version
});
202 config TARGET_$target->{conf}
203 bool "$target->{name}"
207 if ($target->{subtarget
}) {
208 $confstr .= "\tdepends TARGET_$target->{boardconf}\n";
210 if (@
{$target->{subtargets
}} > 0) {
211 $confstr .= "\tselect HAS_SUBTARGETS\n";
213 $confstr .= "\tselect $target->{arch}\n";
214 foreach my $dep (@
{$target->{depends
}}) {
215 my $mode = "depends";
219 $dep =~ /^([@\+\-]+)(.+)$/;
223 $flags =~ /-/ and $mode = "deselect";
224 $flags =~ /\+/ and $mode = "select";
225 $flags =~ /@/ and $confstr .= "\t$mode $name\n";
227 $confstr .= $features;
230 $confstr .= "$help\n\n";
234 sub gen_target_config
() {
235 my @target = parse_target_metadata
();
237 my @target_sort = sort {
238 target_name
($a) cmp target_name
($b);
244 prompt "Target System"
245 default TARGET_brcm_2_4
250 foreach my $target (@target_sort) {
251 next if $target->{subtarget
};
252 print_target
($target);
259 prompt "Subtarget" if HAS_SUBTARGETS
262 foreach my $target (@target) {
263 next unless $target->{subtarget
};
264 print_target
($target);
271 prompt "Target Profile"
275 foreach my $target (@target) {
276 my $profiles = $target->{profiles
};
278 foreach my $profile (@
$profiles) {
280 config TARGET_$target->{conf}_$profile->{id}
281 bool "$profile->{name}"
282 depends TARGET_$target->{conf}
285 $profile->{kconfig
} and print "\tselect PROFILE_KCONFIG\n";
286 my @pkglist = merge_package_lists
($target->{packages
}, $profile->{packages
});
287 foreach my $pkg (@pkglist) {
288 print "\tselect DEFAULT_$pkg\n";
297 config HAS_SUBTARGETS
304 foreach my $target (@target) {
305 $target->{subtarget
} or print "\t\tdefault \"".$target->{board
}."\" if TARGET_".$target->{conf
}."\n";
309 foreach my $target (@target) {
310 my $v = kver
($target->{version
});
321 sub __find_package_dep
($$) {
324 my $deps = ($pkg->{vdepends
} or $pkg->{depends
});
326 return 0 unless defined $deps;
327 foreach my $dep (@
{$deps}) {
328 next if $dep_check{$dep};
329 $dep_check{$dep} = 1;
330 return 1 if $dep eq $name;
331 return 1 if ($package{$dep} and (__find_package_dep
($package{$dep},$name) == 1));
336 # wrapper to avoid infinite recursion
337 sub find_package_dep
($$) {
342 return __find_package_dep
($pkg, $name);
345 sub package_depends
($$) {
350 return 0 if ($a->{submenu
} ne $b->{submenu
});
351 if (find_package_dep
($a, $b->{name
}) == 1) {
353 } elsif (find_package_dep
($b, $a->{name
}) == 1) {
361 sub mconf_depends
($$) {
363 my $only_dep = shift;
369 my @depends = @
$depends;
370 foreach my $depend (@depends) {
372 $depend =~ s/^([@\+]+)//;
376 if ($vdep = $package{$depend}->{vdepends
}) {
377 $depend = join("||", map { "PACKAGE_".$_ } @
$vdep);
379 $flags =~ /\+/ and do {
383 # Menuconfig will not treat 'select FOO' as a real dependency
384 # thus if FOO depends on other config options, these dependencies
385 # will not be checked. To fix this, we simply emit all of FOO's
386 # depends here as well.
387 $package{$depend} and mconf_depends
($package{$depend}->{depends
}, 1, $dep);
389 $flags =~ /@/ or $depend = "PACKAGE_$depend";
391 $dep->{$depend} =~ /select/ or $dep->{$depend} = $m;
393 foreach my $depend (keys %$dep) {
394 my $m = $dep->{$depend};
395 $res .= "\t\t$m $depend\n";
400 sub print_package_config_category
($) {
405 return unless $category{$cat};
407 print "menu \"$cat\"\n\n";
408 my %spkg = %{$category{$cat}};
410 foreach my $spkg (sort {uc($a) cmp uc($b)} keys %spkg) {
411 foreach my $pkg (@
{$spkg{$spkg}}) {
412 my $menu = $pkg->{submenu
};
414 $menu_dep{$menu} or $menu_dep{$menu} = $pkg->{submenudep
};
418 $menus{$menu} or $menus{$menu} = [];
419 push @
{$menus{$menu}}, $pkg;
420 print "\tconfig DEFAULT_".$pkg->{name
}."\n";
421 print "\t\tbool\n\n";
425 ($a eq 'undef' ?
1 : 0) or
426 ($b eq 'undef' ?
-1 : 0) or
430 foreach my $menu (@menus) {
432 package_depends
($a, $b) or
433 ($a->{name
} cmp $b->{name
})
435 if ($menu ne 'undef') {
436 $menu_dep{$menu} and print "if $menu_dep{$menu}\n";
437 print "menu \"$menu\"\n";
439 foreach my $pkg (@pkgs) {
440 my $title = $pkg->{name
};
441 my $c = (72 - length($pkg->{name
}) - length($pkg->{title
}));
443 $title .= ("." x
$c). " ". $pkg->{title
};
446 $pkg->{menu
} and print "menu";
447 print "config PACKAGE_".$pkg->{name
}."\n";
448 print "\t\t".($pkg->{tristate
} ?
'tristate' : 'bool')." \"$title\"\n";
449 print "\t\tdefault y if DEFAULT_".$pkg->{name
}."\n";
450 foreach my $default (split /\s*,\s*/, $pkg->{default}) {
451 print "\t\tdefault $default\n";
453 print mconf_depends
($pkg->{depends
}, 0);
455 print $pkg->{description
};
458 $pkg->{config
} and print $pkg->{config
}."\n";
460 if ($menu ne 'undef') {
462 $menu_dep{$menu} and print "endif\n";
467 undef $category{$cat};
470 sub gen_package_config
() {
471 parse_package_metadata
($ARGV[0]) or exit 1;
472 print "menuconfig UCI_PRECONFIG\n\tbool \"Image configuration\"\n";
473 foreach my $preconfig (keys %preconfig) {
474 foreach my $cfg (keys %{$preconfig{$preconfig}}) {
475 my $conf = $preconfig{$preconfig}->{$cfg}->{id
};
478 config UCI_PRECONFIG_$conf
479 string "$preconfig{$preconfig}->{$cfg}->{label}" if UCI_PRECONFIG
480 depends PACKAGE_$preconfig
481 default "$preconfig{$preconfig}->{$cfg}->{default}"
486 print_package_config_category
'Base system';
487 foreach my $cat (keys %category) {
488 print_package_config_category
$cat;
492 sub gen_package_mk
() {
497 parse_package_metadata
($ARGV[0]) or exit 1;
498 foreach my $name (sort {uc($a) cmp uc($b)} keys %package) {
500 my $pkg = $package{$name};
502 next if defined $pkg->{vdepends
};
504 $conf{$pkg->{src
}} or do {
506 $conf{$pkg->{src
}} = 1;
509 $config = "\$(CONFIG_PACKAGE_$name)"
512 print "package-$config += $pkg->{subdir}$pkg->{src}\n";
513 $pkg->{prereq
} and print "prereq-$config += $pkg->{subdir}$pkg->{src}\n";
518 foreach my $dep (@
{$pkg->{depends
}}, @
{$pkg->{builddepends
}}) {
522 my $pkg_dep = $package{$dep};
523 next if defined $pkg_dep->{vdepends
};
525 if (defined $pkg_dep->{src
}) {
526 ($pkg->{src
} ne $pkg_dep->{src
}) and $idx = $pkg_dep->{subdir
}.$pkg_dep->{src
};
527 } elsif (defined($srcpackage{$dep})) {
528 $idx = $subdir{$dep}.$dep;
530 undef $idx if $idx =~ /^(kernel)|(base-files)$/;
532 next if $dep{$pkg->{src
}."->".$idx};
533 $depline .= " \$(curdir)/$idx/compile";
534 $dep{$pkg->{src
}."->".$idx} = 1;
538 $line .= "\$(curdir)/".$pkg->{subdir
}."$pkg->{src}/compile += $depline\n";
545 foreach my $preconfig (keys %preconfig) {
547 foreach my $cfg (keys %{$preconfig{$preconfig}}) {
548 my $conf = $preconfig{$preconfig}->{$cfg}->{id
};
550 $cmds .= "\techo \"uci set '$preconfig{$preconfig}->{$cfg}->{id}=\$(subst \",,\$(CONFIG_UCI_PRECONFIG_$conf))'\"; \\\n";
555 \$(TARGET_DIR)/etc/uci-defaults/$preconfig: FORCE
560 ifneq (\$(UCI_PRECONFIG)\$(CONFIG_UCI_PRECONFIG),)
561 package/preconfig: \$(TARGET_DIR)/etc/uci-defaults/$preconfig
568 sub parse_command
() {
569 my $cmd = shift @ARGV;
571 /^target_config$/ and return gen_target_config
();
572 /^package_mk$/ and return gen_package_mk
();
573 /^package_config$/ and return gen_package_config
();
574 /^kconfig/ and return gen_kconfig_overrides
();
578 $0 target_config [file] Target metadata in Kconfig format
579 $0 package_mk [file] Package metadata in makefile format
580 $0 package_config [file] Package metadata in Kconfig format
581 $0 kconfig [file] [config] Kernel config overrides