1# Copyright (c) 2016 Intel Corporation
2# SPDX-License-Identifier: Apache-2.0
3
4menuconfig DISK_ACCESS
5	bool "Disk Interface"
6	select DISK_DRIVERS
7	help
8	  Enable disk access over a supported media backend like FLASH or RAM
9
10if DISK_ACCESS
11
12module = DISK
13module-str = disk
14source "subsys/logging/Kconfig.template.log_config"
15
16endif # DISK_ACCESS
17