aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorLars-Peter Clausen <lars@metafoo.de>2010-02-15 20:03:18 +0000
committerLars-Peter Clausen <lars@metafoo.de>2010-02-15 20:03:18 +0000
commit900de421864beceaf7a17142dd1f1f56caadafb2 (patch)
tree5ba66564e7ed87e05bae86d2d7100dbafd7fc49d /scripts
parent1d1e4d10354832fbb2884d55464fc3f3ddbe2390 (diff)
downloadupstream-900de421864beceaf7a17142dd1f1f56caadafb2.tar.gz
upstream-900de421864beceaf7a17142dd1f1f56caadafb2.tar.bz2
upstream-900de421864beceaf7a17142dd1f1f56caadafb2.zip
Add audio feature flag.
There are targets which neither have usb host nor pci support but do have audio capabilities. Those targets should expliclitly specifiy that they support audio through the new feature flag. The audio feature flag is also implicitly selected by the usb and pci feature flags. SVN-Revision: 19643
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/metadata.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/metadata.pl b/scripts/metadata.pl
index 9260a1b24b..c963964ba3 100755
--- a/scripts/metadata.pl
+++ b/scripts/metadata.pl
@@ -152,6 +152,7 @@ sub target_config_features(@) {
while ($_ = shift @_) {
/broken/ and $ret .= "\tdepends BROKEN\n";
+ /audio/ and $ret .= "\tselect AUDIO_SUPPORT\n";
/display/ and $ret .= "\tselect DISPLAY_SUPPORT\n";
/gpio/ and $ret .= "\tselect GPIO_SUPPORT\n";
/pci/ and $ret .= "\tselect PCI_SUPPORT\n";