diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-10-17 22:11:21 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-10-17 22:11:21 +0000 |
commit | 94cdcbde6d2fa931d27a239452ef794ab35f46ef (patch) | |
tree | bff4cd1b0fa8e32e2ba5a9ac6c36c8c8bcc61e52 /scripts/metadata.pl | |
parent | f970dff78d3bbd1467857fc48beab43cb527447d (diff) | |
download | master-31e0f0ae-94cdcbde6d2fa931d27a239452ef794ab35f46ef.tar.gz master-31e0f0ae-94cdcbde6d2fa931d27a239452ef794ab35f46ef.tar.bz2 master-31e0f0ae-94cdcbde6d2fa931d27a239452ef794ab35f46ef.zip |
add experimental support for a new menuconfig submenu "Package features". allows selection between multiple packages providing the same feature, which affects dependencies of other packages. will be used e.g. for choosing between DirectFB and X.org for libraries like GTK2
SVN-Revision: 18056
Diffstat (limited to 'scripts/metadata.pl')
-rwxr-xr-x | scripts/metadata.pl | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/scripts/metadata.pl b/scripts/metadata.pl index 8f146c3b00..2da8851171 100755 --- a/scripts/metadata.pl +++ b/scripts/metadata.pl @@ -533,6 +533,30 @@ sub print_package_config_category($) { undef $category{$cat}; } +sub print_package_features() { + keys %features > 0 or return; + print "menu \"Package features\"\n"; + foreach my $n (keys %features) { + my @features = sort { $b->{priority} <=> $a->{priority} or $a->{title} cmp $b->{title} } @{$features{$n}}; + print <<EOF; +choice + prompt "$features[0]->{target_title}" + default FEATURE_$features[0]->{name} +EOF + + foreach my $feature (@features) { + print <<EOF; + config FEATURE_$feature->{name} + bool "$feature->{title}" + help +$feature->{description} +EOF + } + print "endchoice\n" + } + print "endmenu\n\n"; +} + sub gen_package_config() { parse_package_metadata($ARGV[0]) or exit 1; print "menuconfig UCI_PRECONFIG\n\tbool \"Image configuration\"\n" if %preconfig; @@ -549,6 +573,7 @@ sub gen_package_config() { EOF } } + print_package_features(); print_package_config_category 'Base system'; foreach my $cat (keys %category) { print_package_config_category $cat; |