diff options
author | John Crispin <john@openwrt.org> | 2014-06-11 12:59:22 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2014-06-11 12:59:22 +0000 |
commit | ac5d5cbc795bc618dc426ac3631c88f4e73eaff5 (patch) | |
tree | bf670156337e54f3463fe1a3aed50a695d30f7dd /scripts | |
parent | 28a563dec3e8106022535c85537f955b6f2c8161 (diff) | |
download | upstream-ac5d5cbc795bc618dc426ac3631c88f4e73eaff5.tar.gz upstream-ac5d5cbc795bc618dc426ac3631c88f4e73eaff5.tar.bz2 upstream-ac5d5cbc795bc618dc426ac3631c88f4e73eaff5.zip |
kernel: add a NAND_SUPPORT symbol
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 41122
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 250a85ed84..eed1998d27 100755 --- a/scripts/metadata.pl +++ b/scripts/metadata.pl @@ -184,6 +184,7 @@ sub target_config_features(@) { /mips16/ and $ret .= "\tselect HAS_MIPS16\n"; /rfkill/ and $ret .= "\tselect RFKILL_SUPPORT\n"; /low_mem/ and $ret .= "\tselect LOW_MEMORY_FOOTPRINT\n"; + /nand/ and $ret .= "\tselect NAND_SUPPORT\n"; } return $ret; } |