diff options
author | Hamish Guthrie <hcg@openwrt.org> | 2009-03-18 15:57:18 +0000 |
---|---|---|
committer | Hamish Guthrie <hcg@openwrt.org> | 2009-03-18 15:57:18 +0000 |
commit | 8b4b882158ca8d522481f71f39835da12881c6a5 (patch) | |
tree | 71f9b95b71bfc4cfaa2bb0c858327a2655d4c2ba /scripts | |
parent | 81f7f38aca9d5cef305353e72491e59c4aaf35c6 (diff) | |
download | upstream-8b4b882158ca8d522481f71f39835da12881c6a5.tar.gz upstream-8b4b882158ca8d522481f71f39835da12881c6a5.tar.bz2 upstream-8b4b882158ca8d522481f71f39835da12881c6a5.zip |
Add FEATURE ramdisk to be able to select the use of INITRAMFS for a sub-target
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14939 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 3d9d68a654..c341e65261 100755 --- a/scripts/metadata.pl +++ b/scripts/metadata.pl @@ -163,6 +163,7 @@ sub target_config_features(@) { /tgz/ and $ret .= "\tselect USES_TGZ\n"; /cpiogz/ and $ret .= "\tselect USES_CPIOGZ\n"; /fpu/ and $ret .= "\tselect HAS_FPU\n"; + /ramdisk/ and $ret .= "\tselect USES_INITRAMFS\n"; } return $ret; } |