1# Copyright (c) 2021 Nordic Semiconductor ASA
2# SPDX-License-Identifier: Apache-2.0
3
4menuconfig DISK_DRIVERS
5	bool "Disk Drivers"
6	help
7	  Disk Driver configuration
8
9if DISK_DRIVERS
10
11source "drivers/disk/Kconfig.ram"
12source "drivers/disk/Kconfig.flash"
13source "drivers/disk/Kconfig.sdmmc"
14
15endif # DISK_DRIVERS
16