diff mbox

[v2] Mark MIPS I, II, III and IV as deprecated

Message ID 1384947598-16486-1-git-send-email-Vincent.Riera@imgtec.com
State Accepted
Commit 831dad2d61bcf4daf25778bc41aef40d55e8ead6
Headers show

Commit Message

Vicente Olivert Riera Nov. 20, 2013, 11:39 a.m. UTC
Deprecate old MIPS ISAs since they are rarely used anymore and they cause
multiple build problems for new packages

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
---
 arch/Config.in.mips |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

Comments

Peter Korsgaard Nov. 20, 2013, 12:44 p.m. UTC | #1
>>>>> "Vicente" == Vicente Olivert Riera <Vincent.Riera@imgtec.com> writes:

 > Deprecate old MIPS ISAs since they are rarely used anymore and they cause
 > multiple build problems for new packages

Committed, thanks.
diff mbox

Patch

diff --git a/arch/Config.in.mips b/arch/Config.in.mips
index d70fd63..4121200 100644
--- a/arch/Config.in.mips
+++ b/arch/Config.in.mips
@@ -1,8 +1,7 @@ 
 choice
 	prompt "Target Architecture Variant"
 	depends on BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el
-	default BR2_mips_3 if BR2_mips
-	default BR2_mips_1 if BR2_mipsel
+	default BR2_mips_32 if BR2_mips || BR2_mipsel
 	default BR2_mips_64 if BR2_mips64 || BR2_mips64el
 	help
 	  Specific CPU variant to use
@@ -12,14 +11,16 @@  choice
 
 config BR2_mips_1
 	bool "mips I (generic)"
-	depends on !BR2_ARCH_IS_64
+	depends on !BR2_ARCH_IS_64 && BR2_DEPRECATED
 config BR2_mips_2
 	bool "mips II"
-	depends on !BR2_ARCH_IS_64
+	depends on !BR2_ARCH_IS_64 && BR2_DEPRECATED
 config BR2_mips_3
 	bool "mips III"
+	depends on BR2_DEPRECATED
 config BR2_mips_4
 	bool "mips IV"
+	depends on BR2_DEPRECATED
 config BR2_mips_32
 	bool "mips 32"
 	depends on !BR2_ARCH_IS_64