diff options
Diffstat (limited to 'target/config')
-rw-r--r-- | target/config/Config.in.compiler | 8 | ||||
-rw-r--r-- | target/config/Config.in.mmu | 8 |
2 files changed, 7 insertions, 9 deletions
diff --git a/target/config/Config.in.compiler b/target/config/Config.in.compiler index 6d0924398..f2251e3a0 100644 --- a/target/config/Config.in.compiler +++ b/target/config/Config.in.compiler @@ -35,7 +35,6 @@ default ADK_TOOLCHAIN_GCC_CSKY if ADK_TARGET_ARCH_CSKY default ADK_TOOLCHAIN_GCC_METAG if ADK_TARGET_ARCH_METAG default ADK_TOOLCHAIN_GCC_NDS32 if ADK_TARGET_ARCH_NDS32 default ADK_TOOLCHAIN_GCC_OR1K if ADK_TARGET_ARCH_OR1K -default ADK_TOOLCHAIN_GCC_6 if ADK_TARGET_CPU_SH_J2 default ADK_TOOLCHAIN_GCC_7 config ADK_TOOLCHAIN_GCC_GIT @@ -45,7 +44,6 @@ config ADK_TOOLCHAIN_GCC_GIT depends on !ADK_TARGET_ARCH_METAG depends on !ADK_TARGET_ARCH_NDS32 depends on !ADK_TARGET_ARCH_OR1K - depends on !ADK_TARGET_CPU_SH_J2 config ADK_TOOLCHAIN_GCC_8 bool "8.1.0" @@ -55,7 +53,6 @@ config ADK_TOOLCHAIN_GCC_8 depends on !ADK_TARGET_ARCH_METAG depends on !ADK_TARGET_ARCH_NDS32 depends on !ADK_TARGET_ARCH_OR1K - depends on !ADK_TARGET_CPU_SH_J2 config ADK_TOOLCHAIN_GCC_7 bool "7.3.0" @@ -65,11 +62,6 @@ config ADK_TOOLCHAIN_GCC_7 depends on !ADK_TARGET_ARCH_METAG depends on !ADK_TARGET_ARCH_NDS32 depends on !ADK_TARGET_ARCH_OR1K - depends on !ADK_TARGET_CPU_SH_J2 - -config ADK_TOOLCHAIN_GCC_6 - bool "6.3.0" - depends on ADK_TARGET_CPU_SH_J2 config ADK_TOOLCHAIN_GCC_ARC bool "arc-2018.03-release" diff --git a/target/config/Config.in.mmu b/target/config/Config.in.mmu index 95f9db837..1d5cd52e1 100644 --- a/target/config/Config.in.mmu +++ b/target/config/Config.in.mmu @@ -4,7 +4,13 @@ config ADK_TARGET_WITH_MMU bool "MMU" depends on !ADK_APPLIANCE_TOOLCHAIN && !ADK_TARGET_CHOOSE_ARCH - depends on !ADK_TARGET_ARCH_BFIN && !ADK_TARGET_ARCH_C6X && !ADK_TARGET_ARCH_FRV && !ADK_TARGET_ARCH_H8300 && !ADK_TARGET_ARCH_LM32 + depends on !ADK_TARGET_ARCH_BFIN \ + && !ADK_TARGET_ARCH_C6X \ + && !ADK_TARGET_ARCH_FRV \ + && !ADK_TARGET_ARCH_H8300 \ + && !ADK_TARGET_CPU_SH_J2 \ + && !ADK_TARGET_ARCH_LM32 \ + && !ADK_TARGET_CPU_SH_SH2 select ADK_LINUX_KERNEL_MMU if ADK_TARGET_OS_LINUX select ADK_WALDUX_KERNEL_MMU if ADK_TARGET_OS_WALDUX default y |