zephyr/lib/posix/options/Kconfig.fs
Chris Friedt bc5aff3582 posix: options: fs: separate file_system_r to its own file
Move the functionality of POSIX_FILE_SYSTEM_R to its own
compilation unit and remove the unnecessary dependency on
POSIX_FILE_SYSTEM.

Signed-off-by: Chris Friedt <cfriedt@tenstorrent.com>
2025-01-02 09:18:57 +01:00

21 lines
450 B
GLSL

# Copyright (c) 2018 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
menuconfig POSIX_FILE_SYSTEM
bool "POSIX file system API support"
default y if POSIX_API
select FILE_SYSTEM
select FDTABLE
help
This enables POSIX style file system related APIs.
if POSIX_FILE_SYSTEM
config POSIX_FILE_SYSTEM_ALIAS_FSTAT
bool
help
When selected via Kconfig, Zephyr will provide an alias for fstat() as _fstat().
endif # POSIX_FILE_SYSTEM