summaryrefslogtreecommitdiffstats
path: root/package/uclibc
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2013-11-10 16:01:42 +0100
committerPeter Korsgaard <peter@korsgaard.com>2013-11-10 22:40:12 +0100
commitab0ff59ee5b2a0b5a910e72f4f558f001380b248 (patch)
treea9622a2adbcddde31cc453028fa0fdbcc8b215f1 /package/uclibc
parentf7313cadf2ca9e0195a873f62f6b6c38a58a3630 (diff)
downloadbuildroot-ab0ff59ee5b2a0b5a910e72f4f558f001380b248.tar.gz
buildroot-ab0ff59ee5b2a0b5a910e72f4f558f001380b248.zip
uclibc: fix MIPS variables
The BR2_UCLIBC_MIPS_ISA hidden Config.in variable defines which uClibc config option should be enabled for a given MIPS architecture variant. Therefore, using lower case names doesn't work: they should be upper case, to match uClibc config option names. This commit makes sure the mips32, mips32r2 and mips64 builds select the appropriate uClibc configuration. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Cc: Markos Chandras <Markos.Chandras@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/uclibc')
-rw-r--r--package/uclibc/Config.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/package/uclibc/Config.in b/package/uclibc/Config.in
index 2dbac12c85..82dd3aa72f 100644
--- a/package/uclibc/Config.in
+++ b/package/uclibc/Config.in
@@ -230,9 +230,9 @@ config BR2_UCLIBC_MIPS_ISA
default 2 if BR2_mips_2
default 3 if BR2_mips_3
default 4 if BR2_mips_4
- default mips32 if BR2_mips_32
- default mips32r2 if BR2_mips_32r2
- default mips64 if BR2_mips_64
+ default MIPS32 if BR2_mips_32
+ default MIPS32R2 if BR2_mips_32r2
+ default MIPS64 if BR2_mips_64
config BR2_UCLIBC_SH_TYPE
string
OpenPOWER on IntegriCloud