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:
parent
c36e5ac129
commit
42a7c5732f
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue