diff options
Diffstat (limited to 'scripts')
-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 f5afb1e47b..260d06d712 100755 --- a/scripts/metadata.pl +++ b/scripts/metadata.pl @@ -337,6 +337,18 @@ EOF } } print <<EOF; +config TARGET_PROFILE + string +EOF + foreach my $target (@target) { + my $profiles = $target->{profiles}; + foreach my $profile (@$profiles) { + print "\tdefault \"$profile->{id}\" if TARGET_$target->{conf}_$profile->{id}\n"; + } + } + + print <<EOF; + config TARGET_ARCH_PACKAGES string |