diff mbox

[02/13] MIPS: target architecture variants select the appropriate CPU ISA

Message ID 20160930093659.35032-3-Vincent.Riera@imgtec.com
State Accepted
Commit f62cbd75b7f56d1842c9d59e6779b0e869d164f9
Headers show

Commit Message

Vicente Olivert Riera Sept. 30, 2016, 9:36 a.m. UTC
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
---
 arch/Config.in.mips | 6 ++++++
 1 file changed, 6 insertions(+)
diff mbox

Patch

diff --git a/arch/Config.in.mips b/arch/Config.in.mips
index 5e97fd0..8771cd5 100644
--- a/arch/Config.in.mips
+++ b/arch/Config.in.mips
@@ -26,21 +26,27 @@  choice
 config BR2_mips_32
 	bool "mips 32"
 	depends on !BR2_ARCH_IS_64
+	select BR2_MIPS_CPU_MIPS32
 config BR2_mips_32r2
 	bool "mips 32r2"
 	depends on !BR2_ARCH_IS_64
+	select BR2_MIPS_CPU_MIPS32R2
 config BR2_mips_32r6
 	bool "mips 32r6"
 	depends on !BR2_ARCH_IS_64
+	select BR2_MIPS_CPU_MIPS32R6
 config BR2_mips_64
 	bool "mips 64"
 	depends on BR2_ARCH_IS_64
+	select BR2_MIPS_CPU_MIPS64
 config BR2_mips_64r2
 	bool "mips 64r2"
 	depends on BR2_ARCH_IS_64
+	select BR2_MIPS_CPU_MIPS64R2
 config BR2_mips_64r6
 	bool "mips 64r6"
 	depends on BR2_ARCH_IS_64
+	select BR2_MIPS_CPU_MIPS64R6
 endchoice