mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-31 09:35:47 +00:00
Try and build the flash_shell on all platforms that have a flash driver rather than a limited set of know platforms. This hopefully acts as a build coverage test for all the flash drivers. The flash shell requires around 10K of memory so limit it to systems with 12K or more. Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
10 lines
156 B
Plaintext
10 lines
156 B
Plaintext
# Copyright (c) 2020, Linaro Ltd.
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
source "Kconfig.zephyr"
|
|
|
|
if ARM_MPU
|
|
config MPU_ALLOW_FLASH_WRITE
|
|
def_bool y
|
|
endif
|