From be92401dd332dde5e1a009a0bdd9c8ce01be71a1 Mon Sep 17 00:00:00 2001 From: florian Date: Fri, 5 Apr 2013 12:36:12 +0000 Subject: buildroot: allow enabling MIPS16 user-space build Enabling MIPS16 is made conditional on advertising the "mips16" feature for a specific target since it requires support from the CPU (HAS_MIPS16) and the actual use of MIPS16 for building packages (USE_MIPS16). Signed-off-by: Florian Fainelli git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36202 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- scripts/metadata.pl | 1 + 1 file changed, 1 insertion(+) (limited to 'scripts') diff --git a/scripts/metadata.pl b/scripts/metadata.pl index b04cd8cc3..6249127e3 100755 --- a/scripts/metadata.pl +++ b/scripts/metadata.pl @@ -174,6 +174,7 @@ sub target_config_features(@) { /ramdisk/ and $ret .= "\tselect USES_INITRAMFS\n"; /powerpc64/ and $ret .= "\tselect powerpc64\n"; /nommu/ and $ret .= "\tselect NOMMU\n"; + /mips16/ and $ret .= "\tselect HAS_MIPS16\n"; } return $ret; } -- cgit v1.2.3