13 lines
497 B
Plaintext
13 lines
497 B
Plaintext
|
# Copyright (c) 2023 Carlo Caione <ccaione@baylibre.com>
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
config MEM_ATTR
|
||
|
bool "Memory Attributes management library"
|
||
|
default y if ARM_MPU
|
||
|
help
|
||
|
Enable a small library to manage the memory regions defined in the DT
|
||
|
with a `zephyr,memory-attr` property. This library builds at build
|
||
|
time an array of the memory regions defined in the DT that can be
|
||
|
probed at run-time using several helper functions. Set to `N` if
|
||
|
unsure to save RODATA space.
|