You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
408 B
19 lines
408 B
# Copyright (c) 2021 Nordic Semiconductor ASA |
|
# SPDX-License-Identifier: Apache-2.0 |
|
|
|
menuconfig DISK_DRIVERS |
|
bool "Disk drivers" |
|
help |
|
Disk Driver configuration |
|
|
|
if DISK_DRIVERS |
|
|
|
source "drivers/disk/Kconfig.ram" |
|
source "drivers/disk/Kconfig.flash" |
|
source "drivers/disk/Kconfig.sdmmc" |
|
source "drivers/disk/Kconfig.mmc" |
|
source "drivers/disk/Kconfig.loopback" |
|
|
|
rsource "nvme/Kconfig" |
|
|
|
endif # DISK_DRIVERS
|
|
|