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_semihost.c"
|
2023-11-24 01:56:08 -05:00
|
|
|
"vfs_console.c"
|
|
|
|
)
|
2022-08-25 09:23:59 -04:00
|
|
|
|
2024-01-02 05:08:35 -05:00
|
|
|
list(APPEND pr esp_timer
|
2023-11-24 01:56:08 -05:00
|
|
|
# for backwards compatibility (TODO: IDF-8799)
|
2024-01-02 05:08:35 -05:00
|
|
|
esp_driver_uart esp_driver_usb_serial_jtag
|
2023-11-24 01:56:08 -05:00
|
|
|
)
|
2022-08-25 09:23:59 -04:00
|
|
|
|
|
|
|
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()
|
|
|
|
|
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")
|
2023-11-24 01:56:08 -05:00
|
|
|
|
|
|
|
if(CONFIG_VFS_SUPPORT_IO)
|
|
|
|
# Make sure esp_vfs_console_register gets called at startup stage
|
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-u esp_vfs_include_console_register")
|
|
|
|
endif()
|