2022-02-17 05:30:40 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
if (CONFIG_SD_STACK)
|
|
|
|
zephyr_interface_library_named(SD)
|
|
|
|
|
|
|
|
zephyr_library()
|
2022-08-16 05:04:27 +08:00
|
|
|
zephyr_library_sources(sd.c sd_ops.c)
|
2022-05-25 00:35:06 +08:00
|
|
|
zephyr_library_sources_ifdef(CONFIG_SDMMC_STACK sdmmc.c)
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_SDIO_STACK sdio.c)
|
2022-08-31 00:13:05 +08:00
|
|
|
zephyr_library_sources_ifdef(CONFIG_MMC_STACK mmc.c)
|
|
|
|
|
2022-02-17 05:30:40 +08:00
|
|
|
endif()
|