3116970516
This driver creates a disk_access that transparently reads from and writes to a file in a file system. Signed-off-by: Armin Brauns <armin.brauns@embedded-solutions.at>
19 lines
573 B
CMake
19 lines
573 B
CMake
# Copyright (c) 2021 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if(CONFIG_DISK_DRIVERS)
|
|
|
|
zephyr_library()
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_DISK_DRIVER_FLASH flashdisk.c)
|
|
zephyr_library_sources_ifdef(CONFIG_DISK_DRIVER_RAM ramdisk.c)
|
|
zephyr_library_sources_ifdef(CONFIG_DISK_DRIVER_LOOPBACK loopback_disk.c)
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_SDMMC_STM32 sdmmc_stm32.c)
|
|
zephyr_library_sources_ifdef(CONFIG_SDMMC_SUBSYS sdmmc_subsys.c)
|
|
zephyr_library_sources_ifdef(CONFIG_MMC_SUBSYS mmc_subsys.c)
|
|
|
|
add_subdirectory_ifdef(CONFIG_NVME nvme)
|
|
|
|
endif()
|