reorganize subtargets, sort subtargets below top level targets

SVN-Revision: 9378
lede-17.01
Felix Fietkau 2007-10-20 19:10:06 +00:00
parent d529f387c4
commit 86a906bed2
8 changed files with 118 additions and 92 deletions

View File

@ -23,15 +23,6 @@ endif
TARGETID:=$(BOARD)$(if $(SUBTARGET),/$(SUBTARGET)) TARGETID:=$(BOARD)$(if $(SUBTARGET),/$(SUBTARGET))
PLATFORM_SUBDIR:=$(PLATFORM_DIR)$(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) ifneq ($(TARGET_BUILD),1)
include $(PLATFORM_DIR)/Makefile include $(PLATFORM_DIR)/Makefile
ifneq ($(PLATFORM_DIR),$(PLATFORM_SUBDIR)) ifneq ($(PLATFORM_DIR),$(PLATFORM_SUBDIR))
@ -132,18 +123,13 @@ ifeq ($(DUMP),1)
endif endif
endif endif
define BuildTargets/DumpAll
dumpinfo:
@$(foreach SUBTARGET,$(KERNEL_TARGETS),$(SUBMAKE) -s DUMP=1 SUBTARGET=$(SUBTARGET); )
endef
define BuildTargets/DumpCurrent define BuildTargets/DumpCurrent
.PHONY: dumpinfo
dumpinfo: dumpinfo:
@echo 'Target: $(TARGETID)'; \ @echo 'Target: $(TARGETID)'; \
echo 'Target-Board: $(BOARD)'; \ echo 'Target-Board: $(BOARD)'; \
echo 'Target-Kernel: $(KERNEL)'; \ echo 'Target-Kernel: $(KERNEL)'; \
echo 'Target-Name: $(BOARDNAME) [$(KERNEL)]'; \ echo 'Target-Name: $(BOARDNAME)$(if $(SUBTARGET),, [$(KERNEL)])'; \
echo 'Target-Path: $(subst $(TOPDIR)/,,$(PWD))'; \ echo 'Target-Path: $(subst $(TOPDIR)/,,$(PWD))'; \
echo 'Target-Arch: $(ARCH)'; \ echo 'Target-Arch: $(ARCH)'; \
echo 'Target-Features: $(FEATURES)'; \ echo 'Target-Features: $(FEATURES)'; \
@ -156,6 +142,7 @@ define BuildTargets/DumpCurrent
echo '@@'; \ echo '@@'; \
echo 'Default-Packages: $(DEFAULT_PACKAGES)'; \ echo 'Default-Packages: $(DEFAULT_PACKAGES)'; \
$(DUMPINFO) $(DUMPINFO)
$(if $(SUBTARGET),,@$(foreach SUBTARGET,$(SUBTARGETS),$(SUBMAKE) -s DUMP=1 SUBTARGET=$(SUBTARGET); ))
endef endef
include $(INCLUDE_DIR)/kernel.mk include $(INCLUDE_DIR)/kernel.mk

View File

@ -15,6 +15,8 @@ sub confstr($) {
sub parse_target_metadata() { sub parse_target_metadata() {
my $file = shift @ARGV; my $file = shift @ARGV;
my ($target, @target, $profile); my ($target, @target, $profile);
my %target;
open FILE, "<$file" or do { open FILE, "<$file" or do {
warn "Can't open file '$file': $!\n"; warn "Can't open file '$file': $!\n";
return; return;
@ -22,18 +24,26 @@ sub parse_target_metadata() {
while (<FILE>) { while (<FILE>) {
chomp; chomp;
/^Target:\s*(.+)\s*$/ and do { /^Target:\s*(.+)\s*$/ and do {
my $name = $1;
$target = { $target = {
id => $1, id => $name,
conf => confstr($1), board => $name,
boardconf => confstr($name),
conf => confstr($name),
profiles => [], profiles => [],
features => [], features => [],
depends => [] depends => [],
subtargets => []
}; };
push @target, $target; push @target, $target;
}; $target{$name} = $target;
/^Target-Board:\s*(.+)\s*$/ and do { if ($name =~ /([^\/]+)\/([^\/]+)/) {
$target->{board} = $1; push @{$target{$1}->{subtargets}}, $2;
$target->{boardconf} = confstr($1); $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-Kernel:\s*(\d+\.\d+)\s*$/ and $target->{kernel} = $1;
/^Target-Name:\s*(.+)\s*$/ and $target->{name} = $1; /^Target-Name:\s*(.+)\s*$/ and $target->{name} = $1;
@ -151,47 +161,45 @@ sub target_config_features(@) {
return $ret; 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() { sub print_target($) {
my @target = parse_target_metadata(); my $target = shift;
my $features = target_config_features(@{$target->{features}});
my $help = $target->{desc};
my $kernel = $target->{kernel};
my $confstr;
$kernel =~ tr/./_/;
@target = sort { chomp $features;
$a->{name} cmp $b->{name} $features .= "\n";
} @target; if ($help =~ /\w+/) {
$help =~ s/^\s*/\t /mg;
$help = "\thelp\n$help";
print <<EOF; } else {
choice undef $help;
prompt "Target System" }
default TARGET_brcm_2_4
reset if !DEVEL
EOF
foreach my $target (@target) { $confstr = <<EOF;
my $features = target_config_features(@{$target->{features}});
my $help = $target->{desc};
my $kernel = $target->{kernel};
$kernel =~ tr/./_/;
chomp $features;
$features .= "\n";
if ($help =~ /\w+/) {
$help =~ s/^\s*/\t /mg;
$help = "\thelp\n$help";
} else {
undef $help;
}
print <<EOF;
config TARGET_$target->{conf} config TARGET_$target->{conf}
bool "$target->{name}" bool "$target->{name}"
select $target->{arch}
select LINUX_$kernel select LINUX_$kernel
EOF EOF
if ($target->{id} ne $target->{board}) { if ($target->{subtarget}) {
print "\tselect TARGET_".$target->{boardconf}."\n"; $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}}) { foreach my $dep (@{$target->{depends}}) {
my $mode = "depends"; my $mode = "depends";
my $flags; my $flags;
@ -203,40 +211,59 @@ EOF
$flags =~ /-/ and $mode = "deselect"; $flags =~ /-/ and $mode = "deselect";
$flags =~ /\+/ and $mode = "select"; $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; print <<EOF;
endchoice endchoice
config TARGET_BOARD choice
string prompt "Subtarget" if HAS_SUBTARGETS
EOF EOF
foreach my $target (@target) { 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 print <<EOF;
foreach my $target (@target) { endchoice
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;
choice choice
prompt "Target Profile" prompt "Target Profile"
EOF EOF
foreach my $target (@target) { foreach my $target (@target) {
my $profiles = $target->{profiles}; my $profiles = $target->{profiles};
foreach my $profile (@$profiles) { foreach my $profile (@$profiles) {
print <<EOF; print <<EOF;
config TARGET_$target->{conf}_$profile->{id} config TARGET_$target->{conf}_$profile->{id}
@ -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; my %dep_check;
@ -311,7 +351,7 @@ sub mconf_depends($$) {
$depend =~ s/^([@\+]+)//; $depend =~ s/^([@\+]+)//;
my $flags = $1; my $flags = $1;
my $vdep; my $vdep;
if ($vdep = $package{$depend}->{vdepends}) { if ($vdep = $package{$depend}->{vdepends}) {
$depend = join("||", map { "PACKAGE_".$_ } @$vdep); $depend = join("||", map { "PACKAGE_".$_ } @$vdep);
} else { } else {
@ -340,12 +380,12 @@ sub print_package_config_category($) {
my $cat = shift; my $cat = shift;
my %menus; my %menus;
my %menu_dep; my %menu_dep;
return unless $category{$cat}; return unless $category{$cat};
print "menu \"$cat\"\n\n"; print "menu \"$cat\"\n\n";
my %spkg = %{$category{$cat}}; my %spkg = %{$category{$cat}};
foreach my $spkg (sort {uc($a) cmp uc($b)} keys %spkg) { foreach my $spkg (sort {uc($a) cmp uc($b)} keys %spkg) {
foreach my $pkg (@{$spkg{$spkg}}) { foreach my $pkg (@{$spkg{$spkg}}) {
my $menu = $pkg->{submenu}; my $menu = $pkg->{submenu};
@ -402,7 +442,7 @@ sub print_package_config_category($) {
} }
} }
print "endmenu\n\n"; print "endmenu\n\n";
undef $category{$cat}; undef $category{$cat};
} }
@ -437,7 +477,7 @@ sub gen_package_mk() {
foreach my $name (sort {uc($a) cmp uc($b)} keys %package) { foreach my $name (sort {uc($a) cmp uc($b)} keys %package) {
my $config; my $config;
my $pkg = $package{$name}; my $pkg = $package{$name};
next if defined $pkg->{vdepends}; next if defined $pkg->{vdepends};
if ($ENV{SDK}) { if ($ENV{SDK}) {
$conf{$pkg->{src}} or do { $conf{$pkg->{src}} or do {
@ -451,7 +491,7 @@ sub gen_package_mk() {
print "package-$config += $pkg->{subdir}$pkg->{src}\n"; print "package-$config += $pkg->{subdir}$pkg->{src}\n";
$pkg->{prereq} and print "prereq-$config += $pkg->{subdir}$pkg->{src}\n"; $pkg->{prereq} and print "prereq-$config += $pkg->{subdir}$pkg->{src}\n";
} }
my $hasdeps = 0; my $hasdeps = 0;
my $depline = ""; my $depline = "";
foreach my $dep (@{$pkg->{depends}}, @{$pkg->{builddepends}}) { foreach my $dep (@{$pkg->{depends}}, @{$pkg->{builddepends}}) {
@ -477,7 +517,7 @@ sub gen_package_mk() {
$line .= "\$(curdir)/".$pkg->{subdir}."$pkg->{src}/compile += $depline\n"; $line .= "\$(curdir)/".$pkg->{subdir}."$pkg->{src}/compile += $depline\n";
} }
} }
if ($line ne "") { if ($line ne "") {
print "\n$line"; print "\n$line";
} }

View File

@ -8,13 +8,13 @@
include $(TOPDIR)/rules.mk include $(TOPDIR)/rules.mk
BOARD:=adm5120 BOARD:=adm5120
BOARDNAME:=Infineon ADM5120
LINUX_VERSION:=2.6.23 LINUX_VERSION:=2.6.23
FEATURES:=squashfs jffs2 tgz broken FEATURES:=squashfs jffs2 tgz broken
SUBTARGETS:=router_le router_be
include $(INCLUDE_DIR)/target.mk include $(INCLUDE_DIR)/target.mk
DEFAULT_PACKAGES += admswconfig DEFAULT_PACKAGES += admswconfig
$(eval $(call Target,router_be))
$(eval $(call Target,router_le))
$(eval $(call BuildTarget)) $(eval $(call BuildTarget))

View File

@ -1,6 +1,6 @@
ARCH:=mips ARCH:=mips
SUBTARGET:=router_be SUBTARGET:=router_be
BOARDNAME:=ADM5120 Boards (Big Endian) BOARDNAME:=Big Endian
define Target/Description define Target/Description
Build firmware images for Infineon/ADMTek ADM5120 based boards running in big-endian mode Build firmware images for Infineon/ADMTek ADM5120 based boards running in big-endian mode

View File

@ -1,6 +1,6 @@
ARCH:=mipsel ARCH:=mipsel
SUBTARGET:=router_le SUBTARGET:=router_le
BOARDNAME:=ADM5120 Boards (Little Endian) BOARDNAME:=Little Endian
define Target/Description define Target/Description
Build firmware images for Infineon/ADMtek ADM5120 based boards Build firmware images for Infineon/ADMtek ADM5120 based boards

View File

@ -10,15 +10,15 @@ ARCH=i386
BOARD:=x86 BOARD:=x86
BOARDNAME:=x86 BOARDNAME:=x86
FEATURES:=squashfs jffs2 ext2 FEATURES:=squashfs jffs2 ext2
SUBTARGETS=generic mediacenter
LINUX_VERSION:=2.6.23 LINUX_VERSION:=2.6.23
include $(INCLUDE_DIR)/target.mk include $(INCLUDE_DIR)/target.mk
DEFAULT_PACKAGES += kmod-natsemi kmod-ne2k-pci DEFAULT_PACKAGES += kmod-natsemi kmod-ne2k-pci
$(eval $(call Target,generic))
$(eval $(call Target,mediacenter))
$(eval $(call BuildTarget)) $(eval $(call BuildTarget))
$(eval $(call $(if $(CONFIG_TARGET_ROOTFS_ISO),RequireCommand,Ignore),mkisofs, \ $(eval $(call $(if $(CONFIG_TARGET_ROOTFS_ISO),RequireCommand,Ignore),mkisofs, \
Please install mkisofs. \ Please install mkisofs. \
)) ))

View File

@ -1,4 +1,4 @@
SUBTARGET:=generic BOARDNAME:=Generic
define Target/Description define Target/Description
Build firmware images for x86 based boards Build firmware images for x86 based boards

View File

@ -1,6 +1,5 @@
ARCH:=i686 ARCH:=i686
SUBTARGET:=Mediacenter BOARDNAME:=Mediacenter
BOARDNAME:=X86 (Mediacenter)
define Target/Description define Target/Description
Build firmware images for i686 based Mediacenters Build firmware images for i686 based Mediacenters