2019-04-28 03:38:23 -04:00
|
|
|
idf_component_register(SRCS "vfs.c"
|
2021-03-01 04:51:48 -05:00
|
|
|
"vfs_eventfd.c"
|
2019-04-28 03:38:23 -04:00
|
|
|
"vfs_uart.c"
|
|
|
|
"vfs_semihost.c"
|
2021-10-21 00:46:24 -04:00
|
|
|
"vfs_console.c"
|
2021-03-19 08:03:13 -04:00
|
|
|
INCLUDE_DIRS include
|
2021-10-21 00:46:24 -04:00
|
|
|
PRIV_INCLUDE_DIRS private_include
|
2021-03-19 08:03:13 -04:00
|
|
|
PRIV_REQUIRES driver)
|
2019-04-14 23:45:08 -04:00
|
|
|
|
2020-04-30 10:36:20 -04:00
|
|
|
if(CONFIG_ESP_CONSOLE_USB_CDC)
|
|
|
|
target_sources(${COMPONENT_LIB} PRIVATE "vfs_cdcacm.c")
|
|
|
|
endif()
|
|
|
|
|
2021-10-21 00:46:24 -04:00
|
|
|
if(CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG OR CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG)
|
2021-04-28 04:38:24 -04:00
|
|
|
target_sources(${COMPONENT_LIB} PRIVATE "vfs_usb_serial_jtag.c")
|
|
|
|
endif()
|
|
|
|
|
2019-04-14 23:45:08 -04:00
|
|
|
# Some newlib syscalls are implemented in vfs.c, make sure these are always
|
|
|
|
# seen by the linker
|
2019-06-04 07:05:33 -04:00
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-u vfs_include_syscalls_impl")
|