From 9e1d2c15d905cf210760d9d4f654f91a5d6c5f42 Mon Sep 17 00:00:00 2001 From: Florian Fainelli 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 SVN-Revision: 36202 --- scripts/metadata.pl | 1 + 1 file changed, 1 insertion(+) (limited to 'scripts') diff --git a/scripts/metadata.pl b/scripts/metadata.pl index b04cd8cc3d..6249127e3d 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