2023-08-28 14:02:08 +08: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 15:23:59 +02:00
|
|
|
list(APPEND sources "vfs.c"
|
|
|
|
"vfs_eventfd.c"
|
|
|
|
"vfs_semihost.c"
|
2024-04-19 10:03:36 +02:00
|
|
|
"nullfs.c"
|
2023-11-24 14:56:08 +08:00
|
|
|
)
|
2022-08-25 15:23:59 +02:00
|
|
|
|
2024-01-02 18:08:35 +08:00
|
|
|
list(APPEND pr esp_timer
|
2023-11-24 14:56:08 +08:00
|
|
|
# for backwards compatibility (TODO: IDF-8799)
|
2024-01-23 12:09:57 +01:00
|
|
|
esp_driver_uart esp_driver_usb_serial_jtag esp_vfs_console
|
2023-11-24 14:56:08 +08:00
|
|
|
)
|
2022-08-25 15:23:59 +02:00
|
|
|
|
|
|
|
idf_component_register(SRCS ${sources}
|
2023-07-19 12:28:39 +02:00
|
|
|
LDFRAGMENTS "linker.lf"
|
2022-08-25 15:23:59 +02:00
|
|
|
INCLUDE_DIRS include
|
|
|
|
PRIV_INCLUDE_DIRS private_include
|
|
|
|
PRIV_REQUIRES ${pr})
|
2019-04-15 13:45:08 +10:00
|
|
|
|
|
|
|
# Some newlib syscalls are implemented in vfs.c, make sure these are always
|
|
|
|
# seen by the linker
|
2019-06-04 19:05:33 +08:00
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-u vfs_include_syscalls_impl")
|
2024-05-09 09:16:19 +02:00
|
|
|
|
|
|
|
# Make sure nullfs is registered
|
|
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-u esp_vfs_include_nullfs_register")
|