reorganize subtargets, sort subtargets below top level targets
SVN-Revision: 9378
This commit is contained in:
parent
d529f387c4
commit
86a906bed2
8 changed files with 118 additions and 92 deletions
|
@ -23,15 +23,6 @@ endif
|
|||
TARGETID:=$(BOARD)$(if $(SUBTARGET),/$(SUBTARGET))
|
||||
PLATFORM_SUBDIR:=$(PLATFORM_DIR)$(if $(SUBTARGET),/$(SUBTARGET))
|
||||
|
||||
define Target
|
||||
KERNEL_TARGETS+=$(1)
|
||||
ifeq ($(DUMP),1)
|
||||
ifeq ($(SUBTARGET),)
|
||||
BuildTarget=$$(BuildTargets/DumpAll)
|
||||
endif
|
||||
endif
|
||||
endef
|
||||
|
||||
ifneq ($(TARGET_BUILD),1)
|
||||
include $(PLATFORM_DIR)/Makefile
|
||||
ifneq ($(PLATFORM_DIR),$(PLATFORM_SUBDIR))
|
||||
|
@ -132,18 +123,13 @@ ifeq ($(DUMP),1)
|
|||
endif
|
||||
endif
|
||||
|
||||
define BuildTargets/DumpAll
|
||||
dumpinfo:
|
||||
@$(foreach SUBTARGET,$(KERNEL_TARGETS),$(SUBMAKE) -s DUMP=1 SUBTARGET=$(SUBTARGET); )
|
||||
endef
|
||||
|
||||
define BuildTargets/DumpCurrent
|
||||
|
||||
.PHONY: dumpinfo
|
||||
dumpinfo:
|
||||
@echo 'Target: $(TARGETID)'; \
|
||||
echo 'Target-Board: $(BOARD)'; \
|
||||
echo 'Target-Kernel: $(KERNEL)'; \
|
||||
echo 'Target-Name: $(BOARDNAME) [$(KERNEL)]'; \
|
||||
echo 'Target-Name: $(BOARDNAME)$(if $(SUBTARGET),, [$(KERNEL)])'; \
|
||||
echo 'Target-Path: $(subst $(TOPDIR)/,,$(PWD))'; \
|
||||
echo 'Target-Arch: $(ARCH)'; \
|
||||
echo 'Target-Features: $(FEATURES)'; \
|
||||
|
@ -156,6 +142,7 @@ define BuildTargets/DumpCurrent
|
|||
echo '@@'; \
|
||||
echo 'Default-Packages: $(DEFAULT_PACKAGES)'; \
|
||||
$(DUMPINFO)
|
||||
$(if $(SUBTARGET),,@$(foreach SUBTARGET,$(SUBTARGETS),$(SUBMAKE) -s DUMP=1 SUBTARGET=$(SUBTARGET); ))
|
||||
endef
|
||||
|
||||
include $(INCLUDE_DIR)/kernel.mk
|
||||
|
|
|
@ -15,6 +15,8 @@ sub confstr($) {
|
|||
sub parse_target_metadata() {
|
||||
my $file = shift @ARGV;
|
||||
my ($target, @target, $profile);
|
||||
my %target;
|
||||
|
||||
open FILE, "<$file" or do {
|
||||
warn "Can't open file '$file': $!\n";
|
||||
return;
|
||||
|
@ -22,18 +24,26 @@ sub parse_target_metadata() {
|
|||
while (<FILE>) {
|
||||
chomp;
|
||||
/^Target:\s*(.+)\s*$/ and do {
|
||||
my $name = $1;
|
||||
$target = {
|
||||
id => $1,
|
||||
conf => confstr($1),
|
||||
id => $name,
|
||||
board => $name,
|
||||
boardconf => confstr($name),
|
||||
conf => confstr($name),
|
||||
profiles => [],
|
||||
features => [],
|
||||
depends => []
|
||||
depends => [],
|
||||
subtargets => []
|
||||
};
|
||||
push @target, $target;
|
||||
};
|
||||
/^Target-Board:\s*(.+)\s*$/ and do {
|
||||
$target{$name} = $target;
|
||||
if ($name =~ /([^\/]+)\/([^\/]+)/) {
|
||||
push @{$target{$1}->{subtargets}}, $2;
|
||||
$target->{board} = $1;
|
||||
$target->{boardconf} = confstr($1);
|
||||
$target->{subtarget} = 1;
|
||||
$target->{parent} = $target{$1};
|
||||
}
|
||||
};
|
||||
/^Target-Kernel:\s*(\d+\.\d+)\s*$/ and $target->{kernel} = $1;
|
||||
/^Target-Name:\s*(.+)\s*$/ and $target->{name} = $1;
|
||||
|
@ -151,27 +161,22 @@ sub target_config_features(@) {
|
|||
return $ret;
|
||||
}
|
||||
|
||||
sub target_name($) {
|
||||
my $target = shift;
|
||||
my $parent = $target->{parent};
|
||||
if ($parent) {
|
||||
return $target->{parent}->{name}." - ".$target->{name};
|
||||
} else {
|
||||
return $target->{name};
|
||||
}
|
||||
}
|
||||
|
||||
sub gen_target_config() {
|
||||
my @target = parse_target_metadata();
|
||||
|
||||
@target = sort {
|
||||
$a->{name} cmp $b->{name}
|
||||
} @target;
|
||||
|
||||
|
||||
print <<EOF;
|
||||
choice
|
||||
prompt "Target System"
|
||||
default TARGET_brcm_2_4
|
||||
reset if !DEVEL
|
||||
|
||||
EOF
|
||||
|
||||
foreach my $target (@target) {
|
||||
sub print_target($) {
|
||||
my $target = shift;
|
||||
my $features = target_config_features(@{$target->{features}});
|
||||
my $help = $target->{desc};
|
||||
my $kernel = $target->{kernel};
|
||||
my $confstr;
|
||||
$kernel =~ tr/./_/;
|
||||
|
||||
chomp $features;
|
||||
|
@ -183,15 +188,18 @@ EOF
|
|||
undef $help;
|
||||
}
|
||||
|
||||
print <<EOF;
|
||||
$confstr = <<EOF;
|
||||
config TARGET_$target->{conf}
|
||||
bool "$target->{name}"
|
||||
select $target->{arch}
|
||||
select LINUX_$kernel
|
||||
EOF
|
||||
if ($target->{id} ne $target->{board}) {
|
||||
print "\tselect TARGET_".$target->{boardconf}."\n";
|
||||
if ($target->{subtarget}) {
|
||||
$confstr .= "\tdepends TARGET_$target->{boardconf}\n";
|
||||
}
|
||||
if (@{$target->{subtargets}} > 0) {
|
||||
$confstr .= "\tselect HAS_SUBTARGETS\n";
|
||||
} else {
|
||||
$confstr .= "\tselect $target->{arch}\n";
|
||||
foreach my $dep (@{$target->{depends}}) {
|
||||
my $mode = "depends";
|
||||
my $flags;
|
||||
|
@ -203,31 +211,50 @@ EOF
|
|||
|
||||
$flags =~ /-/ and $mode = "deselect";
|
||||
$flags =~ /\+/ and $mode = "select";
|
||||
$flags =~ /@/ and print "\t$mode $name\n";
|
||||
$flags =~ /@/ and $confstr .= "\t$mode $name\n";
|
||||
}
|
||||
$confstr .= $features;
|
||||
}
|
||||
|
||||
print "$features$help\n\n"
|
||||
$confstr .= "$help\n\n";
|
||||
print $confstr;
|
||||
}
|
||||
|
||||
sub gen_target_config() {
|
||||
my @target = parse_target_metadata();
|
||||
|
||||
my @target_sort = sort {
|
||||
target_name($a) cmp target_name($b);
|
||||
} @target;
|
||||
|
||||
|
||||
print <<EOF;
|
||||
choice
|
||||
prompt "Target System"
|
||||
default TARGET_brcm_2_4
|
||||
reset if !DEVEL
|
||||
|
||||
EOF
|
||||
|
||||
foreach my $target (@target_sort) {
|
||||
next if $target->{subtarget};
|
||||
print_target($target);
|
||||
}
|
||||
|
||||
print <<EOF;
|
||||
endchoice
|
||||
|
||||
config TARGET_BOARD
|
||||
string
|
||||
choice
|
||||
prompt "Subtarget" if HAS_SUBTARGETS
|
||||
|
||||
EOF
|
||||
foreach my $target (@target) {
|
||||
print "\t\tdefault \"".$target->{board}."\" if TARGET_".$target->{conf}."\n";
|
||||
next unless $target->{subtarget};
|
||||
print_target($target);
|
||||
}
|
||||
|
||||
# add hidden target config options
|
||||
foreach my $target (@target) {
|
||||
next if $board{$target->{board}};
|
||||
if ($target->{id} ne $target->{board}) {
|
||||
print "\nconfig TARGET_".$target->{boardconf}."\n\tbool\n";
|
||||
$board{$target->{board}} = 1;
|
||||
}
|
||||
}
|
||||
print <<EOF;
|
||||
print <<EOF;
|
||||
endchoice
|
||||
|
||||
choice
|
||||
prompt "Target Profile"
|
||||
|
@ -253,7 +280,20 @@ EOF
|
|||
}
|
||||
}
|
||||
|
||||
print "endchoice\n";
|
||||
print <<EOF;
|
||||
endchoice
|
||||
|
||||
config HAS_SUBTARGETS
|
||||
bool
|
||||
|
||||
config TARGET_BOARD
|
||||
string
|
||||
|
||||
EOF
|
||||
foreach my $target (@target) {
|
||||
$target->{subtarget} or print "\t\tdefault \"".$target->{board}."\" if TARGET_".$target->{conf}."\n";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
my %dep_check;
|
||||
|
|
|
@ -8,13 +8,13 @@
|
|||
include $(TOPDIR)/rules.mk
|
||||
|
||||
BOARD:=adm5120
|
||||
BOARDNAME:=Infineon ADM5120
|
||||
LINUX_VERSION:=2.6.23
|
||||
FEATURES:=squashfs jffs2 tgz broken
|
||||
SUBTARGETS:=router_le router_be
|
||||
|
||||
include $(INCLUDE_DIR)/target.mk
|
||||
|
||||
DEFAULT_PACKAGES += admswconfig
|
||||
|
||||
$(eval $(call Target,router_be))
|
||||
$(eval $(call Target,router_le))
|
||||
$(eval $(call BuildTarget))
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
ARCH:=mips
|
||||
SUBTARGET:=router_be
|
||||
BOARDNAME:=ADM5120 Boards (Big Endian)
|
||||
BOARDNAME:=Big Endian
|
||||
|
||||
define Target/Description
|
||||
Build firmware images for Infineon/ADMTek ADM5120 based boards running in big-endian mode
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
ARCH:=mipsel
|
||||
SUBTARGET:=router_le
|
||||
BOARDNAME:=ADM5120 Boards (Little Endian)
|
||||
BOARDNAME:=Little Endian
|
||||
|
||||
define Target/Description
|
||||
Build firmware images for Infineon/ADMtek ADM5120 based boards
|
||||
|
|
|
@ -10,15 +10,15 @@ ARCH=i386
|
|||
BOARD:=x86
|
||||
BOARDNAME:=x86
|
||||
FEATURES:=squashfs jffs2 ext2
|
||||
SUBTARGETS=generic mediacenter
|
||||
|
||||
LINUX_VERSION:=2.6.23
|
||||
|
||||
include $(INCLUDE_DIR)/target.mk
|
||||
DEFAULT_PACKAGES += kmod-natsemi kmod-ne2k-pci
|
||||
|
||||
$(eval $(call Target,generic))
|
||||
$(eval $(call Target,mediacenter))
|
||||
$(eval $(call BuildTarget))
|
||||
|
||||
$(eval $(call $(if $(CONFIG_TARGET_ROOTFS_ISO),RequireCommand,Ignore),mkisofs, \
|
||||
Please install mkisofs. \
|
||||
))
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
SUBTARGET:=generic
|
||||
BOARDNAME:=Generic
|
||||
|
||||
define Target/Description
|
||||
Build firmware images for x86 based boards
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
ARCH:=i686
|
||||
SUBTARGET:=Mediacenter
|
||||
BOARDNAME:=X86 (Mediacenter)
|
||||
BOARDNAME:=Mediacenter
|
||||
|
||||
define Target/Description
|
||||
Build firmware images for i686 based Mediacenters
|
||||
|
|
Loading…
Reference in a new issue