@@ -359,6 +359,10 @@ config ARCH_MULTIPLATFORM
select SPARSE_IRQ
select USE_OF
+config ARM_SOC_RENESAS_V7
+ bool "Renesas ARM SoCs"
+ select ARM_SINGLE_ARMV7
+
config ARM_SINGLE_ARMV7M
bool "ARMv7-M based platforms (Cortex-M0/M3/M4)"
depends on !MMU
@@ -31,7 +31,7 @@ config ARCH_RMOBILE
menuconfig ARCH_RENESAS
bool "Renesas ARM SoCs"
- depends on ARCH_MULTI_V7 && MMU
+ depends on (ARCH_MULTI_V7 || ARM_SOC_RENESAS_V7) && MMU
select ARCH_DMA_ADDR_T_64BIT if ARM_LPAE
select ARCH_SHMOBILE
select ARCH_SHMOBILE_MULTI
Allows users to select "Renesas ARM SoCs" as opposed to multiplatform. ARM_SINGLE_ARMV7 is then selected to help with the behind the scenes work in the build scripts. Signed-off-by: Chris Brandt <chris.brandt@renesas.com> --- arch/arm/Kconfig | 4 ++++ arch/arm/mach-shmobile/Kconfig | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-)