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
|
|
|
)
|
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-23 06:09:57 -05:00
|
|
|
esp_driver_uart esp_driver_usb_serial_jtag esp_vfs_console
|
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
|
|
|
|
|
|
|
# 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")
|