mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-13 08:01:56 +00:00
The additional depends on SOC_FAMILY_SAM was redundant. Add sam4l_ek to dfu sample exclude since it was failing on arduino_due. Signed-off-by: Christopher Friedt <chrisfriedt@gmail.com>
16 lines
393 B
Plaintext
16 lines
393 B
Plaintext
# Atmel SAM flash driver config
|
|
|
|
# Copyright (c) 2018 Aurelien Jarno
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config SOC_FLASH_SAM
|
|
bool "Atmel SAM flash driver"
|
|
default y
|
|
select FLASH_HAS_PAGE_LAYOUT
|
|
select FLASH_HAS_DRIVER_ENABLED
|
|
select MPU_ALLOW_FLASH_WRITE if ARM_MPU
|
|
depends on SOC_SERIES_SAME70 || \
|
|
SOC_SERIES_SAMV71
|
|
help
|
|
Enable the Atmel SAM series internal flash driver.
|