diff options
Diffstat (limited to 'scripts/metadata.pl')
-rwxr-xr-x | scripts/metadata.pl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/metadata.pl b/scripts/metadata.pl index 99fdba1c81..6ad3c39f00 100755 --- a/scripts/metadata.pl +++ b/scripts/metadata.pl @@ -321,6 +321,18 @@ EOF $target->{subtarget} or print "\t\tdefault \"".$target->{board}."\" if TARGET_".$target->{conf}."\n"; } print <<EOF; +config TARGET_SUBTARGET + string + default "generic" if !HAS_SUBTARGETS + +EOF + + foreach my $target (@target) { + foreach my $subtarget (@{$target->{subtargets}}) { + print "\t\tdefault \"$subtarget\" if TARGET_".$target->{conf}."_$subtarget\n"; + } + } + print <<EOF; config TARGET_ARCH_PACKAGES string |