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>
16 lines
311 B
Plaintext
16 lines
311 B
Plaintext
# 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"
|
|
|
|
endif # DISK_DRIVERS
|