This commit introduces CPU_HAS_ARM_MPU and CPU_HAS_NXP_MPU options, which indicate which flavour of MPU is supported by given SoC family. Signed-off-by: Piotr Zięcik <piotr.ziecik@nordicsemi.no>
15 lines
381 B
Text
15 lines
381 B
Text
config CPU_HAS_ARM_MPU
|
|
bool
|
|
# Omit prompt to signify "hidden" option
|
|
select CPU_HAS_MPU
|
|
help
|
|
This option is enabled when the CPU has a Memory Protection Unit (MPU)
|
|
in ARM flavour.
|
|
|
|
config CPU_HAS_NXP_MPU
|
|
bool
|
|
# Omit prompt to signify "hidden" option
|
|
select CPU_HAS_MPU
|
|
help
|
|
This option is enabled when the CPU has a Memory Protection Unit (MPU)
|
|
in NXP flavour.
|