summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2013-05-13 15:04:58 +0000
committerFelix Fietkau <nbd@openwrt.org>2013-05-13 15:04:58 +0000
commiteea89fea6a5f97880811ba35ecc0ade6504f40d8 (patch)
tree4940db81b504285080c6ebbd2fc5c3ebeda5e952 /scripts
parent526aedb70532c8743d8e63f7ce3f3746793b914e (diff)
downloadmtk-20170518-eea89fea6a5f97880811ba35ecc0ade6504f40d8.zip
mtk-20170518-eea89fea6a5f97880811ba35ecc0ade6504f40d8.tar.gz
mtk-20170518-eea89fea6a5f97880811ba35ecc0ade6504f40d8.tar.bz2
build: add config symbols for different ARM arch levels
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 36620
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 b0abd78..13abcb2 100755
--- a/scripts/metadata.pl
+++ b/scripts/metadata.pl
@@ -153,6 +153,7 @@ sub target_config_features(@) {
my $ret;
while ($_ = shift @_) {
+ /arm_v(\w+)/ and $ret .= "\tselect arm_v$1\n";
/broken/ and $ret .= "\tdepends on BROKEN\n";
/audio/ and $ret .= "\tselect AUDIO_SUPPORT\n";
/display/ and $ret .= "\tselect DISPLAY_SUPPORT\n";