2023-08-28 02:02:08 -04:00
|
|
|
idf_build_get_property(target IDF_TARGET)
|
|
|
|
|
|
|
|
if(${target} STREQUAL "linux")
|
|
|
|
return() # This component is not supported by the POSIX/Linux simulator
|
|
|
|
endif()
|
|
|
|
|
2022-08-25 09:23:59 -04:00
|
|
|
list(APPEND sources "vfs.c"
|
|
|
|
"vfs_eventfd.c"
|
|
|
|
"vfs_uart.c"
|
|
|
|
"vfs_semihost.c"
|
|
|
|
"vfs_console.c")
|
|
|
|
|
|
|
|
list(APPEND pr driver
|
|
|
|
esp_timer)
|
|
|
|
|
|
|
|
idf_component_register(SRCS ${sources}
|
2023-07-19 06:28:39 -04:00
|
|
|
LDFRAGMENTS "linker.lf"
|
2022-08-25 09:23:59 -04:00
|
|
|
INCLUDE_DIRS include
|
|
|
|
PRIV_INCLUDE_DIRS private_include
|
|
|
|
PRIV_REQUIRES ${pr})
|
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")
|