arm: soc: Elaborate Kconfig strings for MPU selection

Some of the SoCs specify "Enable MPU" in Kconfig for enabling MPU
support. This will create ambiguity while selecting options via
menuconfig. Hence, append SoC family name to the selection strings
to looks more elaborative.

Signed-off-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
This commit is contained in:
Manivannan Sadhasivam 2018-04-28 08:58:14 +05:30 committed by Anas Nashif
parent c36e5ac129
commit 42a7c5732f
3 changed files with 6 additions and 6 deletions

View file

@ -16,9 +16,9 @@ config SOC_BEETLE_R0
endchoice
config ARM_MPU_ENABLE
bool "Enable MPU"
bool "Enable MPU on ARM Beetle"
depends on CPU_HAS_MPU
select ARM_MPU
default n
help
Enable MPU
Enable MPU support on ARM Beetle SoCs

View file

@ -42,12 +42,12 @@ config HAS_MCG
Set if the multipurpose clock generator (MCG) module is present in the SoC.
config HAS_SYSMPU
bool "Enable MPU"
bool "Enable MPU on NXP Kinetis"
depends on CPU_HAS_MPU
select NXP_MPU
default n
help
Enable MPU
Enable MPU support on NXP Kinetis SoCs
if HAS_OSC

View file

@ -23,11 +23,11 @@ config SOC_FAMILY
endif
config STM32_ARM_MPU_ENABLE
bool "Enable MPU"
bool "Enable MPU on STM32"
depends on CPU_HAS_MPU
select ARM_MPU
default n
help
Enable MPU
Enable MPU support on STM32 SoCs
source "arch/arm/soc/st_stm32/*/Kconfig.soc"