03101e75d8
The files disk_access_usdhc.c, disk_access_spi_sdhc.c, disk_access_stm32_sdmmc.c, disk_access_ram.c and disk_access_flash.c are actually drivers for block devices and SD/MMC controllers. This patch moves this drivers to drivers/disk and reworks the configuration so that the drivers are selected when the corresponding node is enabled. Signed-off-by: Johann Fischer <johann.fischer@nordicsemi.no>
17 lines
344 B
Plaintext
17 lines
344 B
Plaintext
# Copyright (c) 2016 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig DISK_ACCESS
|
|
bool "Disk Interface"
|
|
select DISK_DRIVERS
|
|
help
|
|
Enable disk access over a supported media backend like FLASH or RAM
|
|
|
|
if DISK_ACCESS
|
|
|
|
module = DISK
|
|
module-str = disk
|
|
source "subsys/logging/Kconfig.template.log_config"
|
|
|
|
endif # DISK_ACCESS
|