diff options
author | Imre Kaloz <kaloz@openwrt.org> | 2013-11-22 12:01:01 +0000 |
---|---|---|
committer | Imre Kaloz <kaloz@openwrt.org> | 2013-11-22 12:01:01 +0000 |
commit | f3e2331e18708d7080cbd12cbb967e076fd747d1 (patch) | |
tree | a4591b666464fb73af8d9de45f00110ab47842de /scripts/metadata.pl | |
parent | 4242b42880c535007e68cc1bedbe83a4aef36814 (diff) | |
download | upstream-f3e2331e18708d7080cbd12cbb967e076fd747d1.tar.gz upstream-f3e2331e18708d7080cbd12cbb967e076fd747d1.tar.bz2 upstream-f3e2331e18708d7080cbd12cbb967e076fd747d1.zip |
add a feature flag for device tree support
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 38893
Diffstat (limited to 'scripts/metadata.pl')
-rwxr-xr-x | scripts/metadata.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/metadata.pl b/scripts/metadata.pl index ddcf50bf32..135ec9a938 100755 --- a/scripts/metadata.pl +++ b/scripts/metadata.pl @@ -158,6 +158,7 @@ sub target_config_features(@) { /broken/ and $ret .= "\tdepends on BROKEN\n"; /audio/ and $ret .= "\tselect AUDIO_SUPPORT\n"; /display/ and $ret .= "\tselect DISPLAY_SUPPORT\n"; + /dt/ and $ret .= "\tselect USES_DEVICETREE\n"; /gpio/ and $ret .= "\tselect GPIO_SUPPORT\n"; /pci/ and $ret .= "\tselect PCI_SUPPORT\n"; /pcie/ and $ret .= "\tselect PCIE_SUPPORT\n"; |