mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 06:06:32 +00:00
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>
This commit is contained in:
parent
f7313cadf2
commit
ab0ff59ee5
@ -230,9 +230,9 @@ config BR2_UCLIBC_MIPS_ISA
|
|||||||
default 2 if BR2_mips_2
|
default 2 if BR2_mips_2
|
||||||
default 3 if BR2_mips_3
|
default 3 if BR2_mips_3
|
||||||
default 4 if BR2_mips_4
|
default 4 if BR2_mips_4
|
||||||
default mips32 if BR2_mips_32
|
default MIPS32 if BR2_mips_32
|
||||||
default mips32r2 if BR2_mips_32r2
|
default MIPS32R2 if BR2_mips_32r2
|
||||||
default mips64 if BR2_mips_64
|
default MIPS64 if BR2_mips_64
|
||||||
|
|
||||||
config BR2_UCLIBC_SH_TYPE
|
config BR2_UCLIBC_SH_TYPE
|
||||||
string
|
string
|
||||||
|
Loading…
x
Reference in New Issue
Block a user