mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
allow targets to define a default subtarget when using automatic subtarget detection from r27407
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27444 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -56,6 +56,7 @@ sub parse_target_metadata() {
|
||||
/^Linux-Version:\s*(.+)\s*$/ and $target->{version} = $1;
|
||||
/^Linux-Release:\s*(.+)\s*$/ and $target->{release} = $1;
|
||||
/^Linux-Kernel-Arch:\s*(.+)\s*$/ and $target->{karch} = $1;
|
||||
/^Default-Subtarget:\s*(.+)\s*$/ and $target->{def_subtarget} = $1;
|
||||
/^Default-Packages:\s*(.+)\s*$/ and $target->{packages} = [ split(/\s+/, $1) ];
|
||||
/^Target-Profile:\s*(.+)\s*$/ and do {
|
||||
$profile = {
|
||||
@@ -282,6 +283,14 @@ endchoice
|
||||
|
||||
choice
|
||||
prompt "Subtarget" if HAS_SUBTARGETS
|
||||
EOF
|
||||
foreach my $target (@target) {
|
||||
next unless $target->{def_subtarget};
|
||||
print <<EOF;
|
||||
default TARGET_$target->{conf}_$target->{def_subtarget} if TARGET_$target->{conf}
|
||||
EOF
|
||||
}
|
||||
print <<EOF;
|
||||
|
||||
EOF
|
||||
foreach my $target (@target) {
|
||||
|
||||
Reference in New Issue
Block a user