From b10a40535d5a69ba0fba44272e72657bf4e409a1 Mon Sep 17 00:00:00 2001 From: Vicente Olivert Riera Date: Fri, 3 Jan 2014 14:36:19 +0000 Subject: Disable MIPS64 ISAs for MIPS32 targets Currently you can select MIPS64 ISAs, like mips64 and mips64r2, for MIPS32 targets. This is incorrect, so we disable the possibility to do that. Reviewed-by: Markos Chandras Signed-off-by: Vicente Olivert Riera Signed-off-by: Thomas Petazzoni --- arch/Config.in.mips | 2 ++ 1 file changed, 2 insertions(+) (limited to 'arch') diff --git a/arch/Config.in.mips b/arch/Config.in.mips index 412120076b..9b3fff4c24 100644 --- a/arch/Config.in.mips +++ b/arch/Config.in.mips @@ -29,8 +29,10 @@ config BR2_mips_32r2 depends on !BR2_ARCH_IS_64 config BR2_mips_64 bool "mips 64" + depends on BR2_ARCH_IS_64 config BR2_mips_64r2 bool "mips 64r2" + depends on BR2_ARCH_IS_64 endchoice -- cgit v1.2.1