diff options
author | Felix Fietkau <nbd@openwrt.org> | 2014-06-02 17:04:38 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2014-06-02 17:04:38 +0000 |
commit | e90a2269bce350dbc3caa8cfd34b31ae6616ecb2 (patch) | |
tree | 67eb6795a0463ac23cf07bd2a441cb92df171713 /scripts | |
parent | a4816ec4b54391de7d59cdb1947b786ebb375f37 (diff) | |
download | upstream-e90a2269bce350dbc3caa8cfd34b31ae6616ecb2.tar.gz upstream-e90a2269bce350dbc3caa8cfd34b31ae6616ecb2.tar.bz2 upstream-e90a2269bce350dbc3caa8cfd34b31ae6616ecb2.zip |
build: add a feature flag for low-memory systems
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@40980 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts')
-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 041a250cdb..250a85ed84 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; } |