summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2014-06-02 17:04:38 +0000
committerFelix Fietkau <nbd@openwrt.org>2014-06-02 17:04:38 +0000
commitb24897ee5c53b6488d1b984b63ab65220e486ed7 (patch)
tree3393a7c0deebca29987752e0cf9bae86b4283221 /scripts
parent5eecccd75edc9a5adbdf966a6a87f46695aa72a9 (diff)
downloadmtk-20170518-b24897ee5c53b6488d1b984b63ab65220e486ed7.zip
mtk-20170518-b24897ee5c53b6488d1b984b63ab65220e486ed7.tar.gz
mtk-20170518-b24897ee5c53b6488d1b984b63ab65220e486ed7.tar.bz2
build: add a feature flag for low-memory systems
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 40980
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 041a250..250a85e 100755
--- a/scripts/metadata.pl
+++ b/scripts/metadata.pl
@@ -183,6 +183,7 @@ sub target_config_features(@) {
/nommu/ and $ret .= "\tselect NOMMU\n";
/mips16/ and $ret .= "\tselect HAS_MIPS16\n";
/rfkill/ and $ret .= "\tselect RFKILL_SUPPORT\n";
+ /low_mem/ and $ret .= "\tselect LOW_MEMORY_FOOTPRINT\n";
}
return $ret;
}