aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2007-09-08 19:55:42 +0000
committerFelix Fietkau <nbd@openwrt.org>2007-09-08 19:55:42 +0000
commita9d683ca912b2c4837b2e65909c09ca01babe3df (patch)
tree6cbca6e13dd0bb18c9d9f1d4baa9a0ea7801b959 /scripts
parent4a2e4920b1d909ca254853b0dce46af3123e8f74 (diff)
downloadupstream-a9d683ca912b2c4837b2e65909c09ca01babe3df.tar.gz
upstream-a9d683ca912b2c4837b2e65909c09ca01babe3df.tar.bz2
upstream-a9d683ca912b2c4837b2e65909c09ca01babe3df.zip
major target cleanup. it is now possible to have subtargets that can override many target settings, including arch - merge adm5120, adm5120eb. target profiles still need to be adapted for subtargets
SVN-Revision: 8694
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/kconfig.pl (renamed from scripts/config.pl)0
-rwxr-xr-xscripts/metadata.pl58
2 files changed, 13 insertions, 45 deletions
diff --git a/scripts/config.pl b/scripts/kconfig.pl
index 53b8f11025..53b8f11025 100755
--- a/scripts/config.pl
+++ b/scripts/kconfig.pl
diff --git a/scripts/metadata.pl b/scripts/metadata.pl
index fe135418ca..2fcbf82dfa 100755
--- a/scripts/metadata.pl
+++ b/scripts/metadata.pl
@@ -23,15 +23,16 @@ sub parse_target_metadata() {
while (<>) {
chomp;
/^Target:\s*(.+)\s*$/ and do {
- my $conf = uc $1;
- $conf =~ tr/\.-/__/;
+ my $conf = $1;
+ $conf =~ tr#/\.\-/#___#;
$target = {
+ id => $1,
conf => $conf,
- board => $1,
profiles => []
};
push @target, $target;
};
+ /^Target-Board:\s*(.+)\s*$/ and $target->{board} = $1;
/^Target-Kernel:\s*(\d+\.\d+)\s*$/ and $target->{kernel} = $1;
/^Target-Name:\s*(.+)\s*$/ and $target->{name} = $1;
/^Target-Path:\s*(.+)\s*$/ and $target->{path} = $1;
@@ -198,45 +199,6 @@ sub merge_package_lists($$) {
return sort(@l);
}
-sub gen_target_mk() {
- my @target = parse_target_metadata();
-
- @target = sort {
- $a->{board} cmp $b->{board}
- } @target;
-
- foreach my $target (@target) {
- my ($profiles_def, $profiles_eval);
-
- foreach my $profile (@{$target->{profiles}}) {
- $profiles_def .= "
- define Profile/$target->{conf}\_$profile->{id}
- ID:=$profile->{id}
- NAME:=$profile->{name}
- PACKAGES:=".join(" ", merge_package_lists($target->{packages}, $profile->{packages}))."\n";
- $profile->{kconfig} and $profiles_def .= " KCONFIG:=1\n";
- $profiles_def .= " endef";
- $profiles_eval .= "
-\$(eval \$(call AddProfile,$target->{conf}\_$profile->{id}))"
- }
- print "
-ifeq (\$(CONFIG_TARGET_$target->{conf}),y)
- define Target
- KERNEL:=$target->{kernel}
- BOARD:=$target->{board}
- BOARDNAME:=$target->{name}
- LINUX_VERSION:=$target->{version}
- LINUX_RELEASE:=$target->{release}
- LINUX_KARCH:=$target->{karch}
- DEFAULT_PACKAGES:=".join(" ", @{$target->{packages}})."
- endef$profiles_def
-endif$profiles_eval
-
-"
- }
- print "\$(eval \$(call Target))\n";
-}
-
sub target_config_features(@) {
my $ret;
@@ -265,7 +227,7 @@ sub gen_target_config() {
print <<EOF;
choice
prompt "Target System"
- default TARGET_BRCM_2_4
+ default TARGET_brcm_2_4
reset if !DEVEL
EOF
@@ -298,6 +260,14 @@ EOF
print <<EOF;
endchoice
+config TARGET_BOARD
+ string
+EOF
+ foreach my $target (@target) {
+ print "\t\tdefault \"".$target->{board}."\" if TARGET_".$target->{conf}."\n";
+ }
+ print <<EOF;
+
choice
prompt "Target Profile"
@@ -559,7 +529,6 @@ EOF
sub parse_command() {
my $cmd = shift @ARGV;
for ($cmd) {
- /^target_mk$/ and return gen_target_mk();
/^target_config$/ and return gen_target_config();
/^package_mk$/ and return gen_package_mk();
/^package_config$/ and return gen_package_config();
@@ -567,7 +536,6 @@ sub parse_command() {
}
print <<EOF
Available Commands:
- $0 target_mk [file] Target metadata in makefile format
$0 target_config [file] Target metadata in Kconfig format
$0 package_mk [file] Package metadata in makefile format
$0 package_config [file] Package metadata in Kconfig format