15 $str .= (($_ and $prefix) ?
$prefix . $_ : $_);
21 sub parse_target_metadata
() {
22 my ($target, @target, $profile);
25 /^Target:\s*((.+)-(\d+\.\d+))\s*$/ and do {
26 my $conf = uc $3.'_'.$2;
35 push @target, $target;
37 /^Target-Name:\s*(.+)\s*$/ and $target->{name
} = $1;
38 /^Target-Path:\s*(.+)\s*$/ and $target->{path
} = $1;
39 /^Target-Arch:\s*(.+)\s*$/ and $target->{arch
} = $1;
40 /^Target-Features:\s*(.+)\s*$/ and $target->{features
} = [ split(/\s+/, $1) ];
41 /^Target-Description:/ and $target->{desc
} = get_multiline
();
42 /^Linux-Version:\s*(.+)\s*$/ and $target->{version
} = $1;
43 /^Linux-Release:\s*(.+)\s*$/ and $target->{release
} = $1;
44 /^Linux-Kernel-Arch:\s*(.+)\s*$/ and $target->{karch
} = $1;
45 /^Default-Packages:\s*(.+)\s*$/ and $target->{packages
} = [ split(/\s+/, $1) ];
46 /^Target-Profile:\s*(.+)\s*$/ and do {
52 push @
{$target->{profiles
}}, $profile;
54 /^Target-Profile-Name:\s*(.+)\s*$/ and $profile->{name
} = $1;
55 /^Target-Profile-Packages:\s*(.*)\s*$/ and $profile->{packages
} = [ split(/\s+/, $1) ];
56 /^Target-Profile-Description:\s*(.*)\s*/ and $profile->{desc
} = get_multiline
();
57 /^Target-Profile-Config:/ and $profile->{config
} = get_multiline
("\t");
58 /^Target-Profile-Kconfig:/ and $profile->{kconfig
} = 1;
60 foreach my $target (@target) {
61 @
{$target->{profiles
}} > 0 or $target->{profiles
} = [
72 sub parse_package_metadata
() {
80 /^Source-Makefile: \s*((.+\/)([^\
/]+)\/Makefile
)\s
*$/ and do {
84 $subdir =~ s/^package\///;
85 $subdir{$src} = $subdir;
86 $srcpackage{$src} = [];
89 /^Package:\s*(.+?)\s*$/ and do {
92 $pkg->{makefile
} = $makefile;
94 $pkg->{default} = "m if ALL";
96 $pkg->{builddepends
} = [];
97 $pkg->{subdir
} = $subdir;
99 push @
{$srcpackage{$src}}, $pkg;
101 /^Version: \s*(.+)\s*$/ and $pkg->{version
} = $1;
102 /^Title: \s*(.+)\s*$/ and $pkg->{title
} = $1;
103 /^Menu: \s*(.+)\s*$/ and $pkg->{menu
} = $1;
104 /^Submenu: \s*(.+)\s*$/ and $pkg->{submenu
} = $1;
105 /^Submenu-Depends: \s*(.+)\s*$/ and $pkg->{submenudep
} = $1;
106 /^Default: \s*(.+)\s*$/ and $pkg->{default} = $1;
107 /^Provides: \s*(.+)\s*$/ and do {
108 my @vpkg = split /\s+/, $1;
109 foreach my $vpkg (@vpkg) {
110 $package{$vpkg} or $package{$vpkg} = { vdepends
=> [] };
111 push @
{$package{$vpkg}->{vdepends
}}, $pkg->{name
};
114 /^Depends: \s*(.+)\s*$/ and $pkg->{depends
} = [ split /\s+/, $1 ];
115 /^Build-Depends: \s*(.+)\s*$/ and $pkg->{builddepends
} = [ split /\s+/, $1 ];
116 /^Category: \s*(.+)\s*$/ and do {
117 $pkg->{category
} = $1;
118 defined $category{$1} or $category{$1} = {};
119 defined $category{$1}->{$src} or $category{$1}->{$src} = [];
120 push @
{$category{$1}->{$src}}, $pkg;
122 /^Description: \s*(.*)\s*$/ and $pkg->{description
} = "\t\t $1\n". get_multiline
("\t\t ");
123 /^Config: \s*(.*)\s*$/ and $pkg->{config
} = "$1\n".get_multiline
();
124 /^Prereq-Check:/ and $pkg->{prereq
} = 1;
125 /^Preconfig:\s*(.+)\s*$/ and do {
126 my $pkgname = $pkg->{name
};
127 $preconfig{$pkgname} or $preconfig{$pkgname} = [];
131 push @
{$preconfig{$pkgname}}, $preconfig;
133 /^Preconfig-Type:\s*(.*?)\s*$/ and $preconfig->{type
} = $1;
134 /^Preconfig-Label:\s*(.*?)\s*$/ and $preconfig->{label
} = $1;
135 /^Preconfig-Default:\s*(.*?)\s*$/ and $preconfig->{default} = $1;
140 sub gen_kconfig_overrides
() {
144 my $pkginfo = shift @ARGV;
145 my $cfgfile = shift @ARGV;
147 # parameter 2: build system config
148 open FILE
, "<$cfgfile" or return;
150 /^(CONFIG_.+?)=(.+)$/ and $config{$1} = 1;
154 # parameter 1: package metadata
155 open FILE
, "<$pkginfo" or return;
157 /^Package:\s*(.+?)\s*$/ and $package = $1;
158 /^Kernel-Config:\s*(.+?)\s*$/ and do {
159 my @config = split /\s+/, $1;
160 foreach my $config (@config) {
163 if ($config =~ /^(.+?)=(.+)$/) {
168 if ($config{"CONFIG_PACKAGE_$package"} and ($config ne 'n')) {
169 $kconfig{$config} = $val;
170 } elsif (!$override) {
171 $kconfig{$config} or $kconfig{$config} = 'n';
178 foreach my $kconfig (sort keys %kconfig) {
179 if ($kconfig{$kconfig} eq 'n') {
180 print "# $kconfig is not set\n";
182 print "$kconfig=$kconfig{$kconfig}\n";
187 sub merge_package_lists
($$) {
193 foreach my $pkg (@
$list1, @
$list2) {
196 foreach my $pkg (keys %pkgs) {
197 push @l, $pkg unless ($pkg =~ /^-/ or $pkgs{"-$pkg"});
202 sub gen_target_mk
() {
203 my @target = parse_target_metadata
();
206 $a->{id
} cmp $b->{id
}
209 foreach my $target (@target) {
210 my ($profiles_def, $profiles_eval);
211 my $conf = uc $target->{kernel
}.'_'.$target->{board
};
214 foreach my $profile (@
{$target->{profiles
}}) {
216 define Profile/$conf\_$profile->{id}
218 NAME:=$profile->{name}
219 PACKAGES:=".join(" ", merge_package_lists
($target->{packages
}, $profile->{packages
}))."\n";
220 $profile->{kconfig
} and $profiles_def .= " KCONFIG:=1\n";
221 $profiles_def .= " endef";
223 \$(eval \$(call AddProfile,$conf\_$profile->{id}))"
226 ifeq (\$(CONFIG_LINUX_$conf),y)
228 KERNEL:=$target->{kernel}
229 BOARD:=$target->{board}
230 BOARDNAME:=$target->{name}
231 LINUX_VERSION:=$target->{version}
232 LINUX_RELEASE:=$target->{release}
233 LINUX_KARCH:=$target->{karch}
234 DEFAULT_PACKAGES:=".join(" ", @
{$target->{packages
}})."
240 print "\$(eval \$(call Target))\n";
243 sub target_config_features
(@
) {
246 while ($_ = shift @_) {
247 /broken/ and $ret .= "\tdepends BROKEN\n";
248 /pci/ and $ret .= "\tselect PCI_SUPPORT\n";
249 /usb/ and $ret .= "\tselect USB_SUPPORT\n";
250 /atm/ and $ret .= "\tselect ATM_SUPPORT\n";
251 /pcmcia/ and $ret .= "\tselect PCMCIA_SUPPORT\n";
252 /video/ and $ret .= "\tselect VIDEO_SUPPORT\n";
253 /squashfs/ and $ret .= "\tselect USES_SQUASHFS\n";
254 /jffs2/ and $ret .= "\tselect USES_JFFS2\n";
255 /ext2/ and $ret .= "\tselect USES_EXT2\n";
261 sub gen_target_config
() {
262 my @target = parse_target_metadata
();
265 $a->{name
} cmp $b->{name
}
271 prompt "Target System"
272 default LINUX_2_4_BRCM
277 foreach my $target (@target) {
278 my $features = target_config_features
(@
{$target->{features
}});
279 my $help = $target->{desc
};
280 my $kernel = $target->{kernel
};
285 if ($help =~ /\w+/) {
286 $help =~ s/^\s*/\t /mg;
287 $help = "\thelp\n$help";
293 config LINUX_$target->{conf}
294 bool "$target->{name}"
295 select $target->{arch}
306 bool "UNSUPPORTED little-endian arm platform"
311 config LINUX_2_6_CRIS
312 bool "UNSUPPORTED cris platform"
317 config LINUX_2_6_M68K
318 bool "UNSUPPORTED m68k platform"
324 bool "UNSUPPORTED little-endian sh3 platform"
329 config LINUX_2_6_SH3EB
330 bool "UNSUPPORTED big-endian sh3 platform"
336 bool "UNSUPPORTED little-endian sh4 platform"
341 config LINUX_2_6_SH4EB
342 bool "UNSUPPORTED big-endian sh4 platform"
347 config LINUX_2_6_SPARC
348 bool "UNSUPPORTED sparc platform"
358 prompt "Target Profile"
362 foreach my $target (@target) {
363 my $profiles = $target->{profiles
};
365 foreach my $profile (@
$profiles) {
367 config LINUX_$target->{conf}_$profile->{id}
368 bool "$profile->{name}"
369 depends LINUX_$target->{conf}
372 $profile->{kconfig
} and print "\tselect PROFILE_KCONFIG\n";
373 my @pkglist = merge_package_lists
($target->{packages
}, $profile->{packages
});
374 foreach my $pkg (@pkglist) {
375 print "\tselect DEFAULT_$pkg\n";
385 sub find_package_dep
($$) {
388 my $deps = ($pkg->{vdepends
} or $pkg->{depends
});
390 return 0 unless defined $deps;
391 foreach my $dep (@
{$deps}) {
392 return 1 if $dep eq $name;
393 return 1 if ($package{$dep} and (find_package_dep
($package{$dep},$name) == 1));
398 sub package_depends
($$) {
403 return 0 if ($a->{submenu
} ne $b->{submenu
});
404 if (find_package_dep
($a, $b->{name
}) == 1) {
406 } elsif (find_package_dep
($b, $a->{name
}) == 1) {
414 sub mconf_depends
($$) {
416 my $only_dep = shift;
420 my @depends = @
$depends;
421 foreach my $depend (@depends) {
423 $depend =~ s/^([@\+]+)//;
427 if ($vdep = $package{$depend}->{vdepends
}) {
428 $depend = join("||", map { "PACKAGE_".$_ } @
$vdep);
430 $flags =~ /\+/ and do {
434 # Menuconfig will not treat 'select FOO' as a real dependency
435 # thus if FOO depends on other config options, these dependencies
436 # will not be checked. To fix this, we simply emit all of FOO's
437 # depends here as well.
438 $package{$depend} and $res .= mconf_depends
($package{$depend}->{depends
}, 1);
440 $flags =~ /@/ or $depend = "PACKAGE_$depend";
442 $res .= "\t\t$m $depend\n";
447 sub print_package_config_category
($) {
452 return unless $category{$cat};
454 print "menu \"$cat\"\n\n";
455 my %spkg = %{$category{$cat}};
457 foreach my $spkg (sort {uc($a) cmp uc($b)} keys %spkg) {
458 foreach my $pkg (@
{$spkg{$spkg}}) {
459 my $menu = $pkg->{submenu
};
461 $menu_dep{$menu} or $menu_dep{$menu} = $pkg->{submenudep
};
465 $menus{$menu} or $menus{$menu} = [];
466 push @
{$menus{$menu}}, $pkg;
467 print "\tconfig DEFAULT_".$pkg->{name
}."\n";
468 print "\t\tbool\n\n";
472 ($a eq 'undef' ?
1 : 0) or
473 ($b eq 'undef' ?
-1 : 0) or
477 foreach my $menu (@menus) {
479 package_depends
($a, $b) or
480 ($a->{name
} cmp $b->{name
})
482 if ($menu ne 'undef') {
483 $menu_dep{$menu} and print "if $menu_dep{$menu}\n";
484 print "menu \"$menu\"\n";
486 foreach my $pkg (@pkgs) {
487 my $title = $pkg->{name
};
488 my $c = (72 - length($pkg->{name
}) - length($pkg->{title
}));
490 $title .= ("." x
$c). " ". $pkg->{title
};
493 $pkg->{menu
} and print "menu";
494 print "config PACKAGE_".$pkg->{name
}."\n";
495 print "\t\ttristate \"$title\"\n";
496 print "\t\tdefault y if DEFAULT_".$pkg->{name
}."\n";
497 foreach my $default (split /\s*,\s*/, $pkg->{default}) {
498 print "\t\tdefault $default\n";
500 print mconf_depends
($pkg->{depends
}, 0);
502 print $pkg->{description
};
505 $pkg->{config
} and print $pkg->{config
}."\n";
507 if ($menu ne 'undef') {
509 $menu_dep{$menu} and print "endif\n";
514 undef $category{$cat};
517 sub gen_package_config
() {
518 parse_package_metadata
();
519 print "menuconfig UCI_PRECONFIG\n\tbool \"Image configuration\"\n";
520 foreach my $preconfig (keys %preconfig) {
521 foreach my $cfg (@
{$preconfig{$preconfig}}) {
522 my $conf = $cfg->{id
};
525 config UCI_PRECONFIG_$conf
526 string "$cfg->{label}" if UCI_PRECONFIG
527 depends PACKAGE_$preconfig
528 default "$cfg->{default}"
533 print_package_config_category
'Base system';
534 foreach my $cat (keys %category) {
535 print_package_config_category
$cat;
539 sub gen_package_mk
() {
544 parse_package_metadata
();
545 foreach my $name (sort {uc($a) cmp uc($b)} keys %package) {
547 my $pkg = $package{$name};
549 next if defined $pkg->{vdepends
};
551 $conf{$pkg->{src
}} or do {
553 $conf{$pkg->{src
}} = 1;
556 $config = "\$(CONFIG_PACKAGE_$name)"
559 print "package-$config += $pkg->{subdir}$pkg->{src}\n";
560 $pkg->{prereq
} and print "prereq-$config += $pkg->{src}\n";
565 foreach my $dep (@
{$pkg->{depends
}}, @
{$pkg->{builddepends
}}) {
569 my $pkg_dep = $package{$dep};
570 next if defined $pkg_dep->{vdepends
};
572 if (defined $pkg_dep->{src
}) {
573 ($pkg->{src
} ne $pkg_dep->{src
}) and $idx = $pkg_dep->{subdir
}.$pkg_dep->{src
};
574 } elsif (defined($srcpackage{$dep})) {
575 $idx = $subdir{$dep}.$dep;
577 undef $idx if $idx =~ /^(kernel)|(base-files)$/;
579 next if $dep{$pkg->{src
}."->".$idx};
580 $depline .= " $idx\-compile";
581 $dep{$pkg->{src
}."->".$idx} = 1;
585 $line .= $pkg->{subdir
}."$pkg->{src}-compile: $depline\n";
592 foreach my $preconfig (keys %preconfig) {
594 foreach my $cfg (@
{$preconfig{$preconfig}}) {
595 my $conf = $cfg->{id
};
597 $cmds .= "\techo \"uci set '$cfg->{id}=\$(subst \",,\$(CONFIG_UCI_PRECONFIG_$conf))'\"; \\\n";
602 \$(TARGET_DIR)/etc/uci-defaults/$preconfig: FORCE
607 ifneq (\$(UCI_PRECONFIG)\$(CONFIG_UCI_PRECONFIG),)
608 preconfig: \$(TARGET_DIR)/etc/uci-defaults/$preconfig
615 sub parse_command
() {
616 my $cmd = shift @ARGV;
618 /^target_mk$/ and return gen_target_mk
();
619 /^target_config$/ and return gen_target_config
();
620 /^package_mk$/ and return gen_package_mk
();
621 /^package_config$/ and return gen_package_config
();
622 /^kconfig/ and return gen_kconfig_overrides
();
626 $0 target_mk [file] Target metadata in makefile format
627 $0 target_config [file] Target metadata in Kconfig format
628 $0 package_mk [file] Package metadata in makefile format
629 $0 package_config [file] Package metadata in Kconfig format
630 $0 kconfig [file] [config] Kernel config overrides