summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorVicente Olivert Riera <Vincent.Riera@imgtec.com>2016-09-30 10:36:48 +0100
committerPeter Korsgaard <peter@korsgaard.com>2016-10-15 13:22:17 +0200
commitf62cbd75b7f56d1842c9d59e6779b0e869d164f9 (patch)
tree546243f829953a7a54ac3752b858ef5e7862c6c7 /arch
parent6fae290a94d436d24fc19d27d1a70123baa07a86 (diff)
MIPS: target architecture variants select the appropriate CPU ISA
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/Config.in.mips6
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/Config.in.mips b/arch/Config.in.mips
index 5e97fd016..8771cd57d 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