This change is setting up for switching over to proper POSIX option requirements, feature test macros, and a dependency structure that is reflective of the standard. Signed-off-by: Christopher Friedt <cfriedt@meta.com>
19 lines
465 B
GLSL
19 lines
465 B
GLSL
# Copyright (c) 2018 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config POSIX_FS
|
|
bool "POSIX file system API support"
|
|
default y if POSIX_API
|
|
depends on FILE_SYSTEM
|
|
help
|
|
This enables POSIX style file system related APIs.
|
|
|
|
config POSIX_MAX_OPEN_FILES
|
|
int "Maximum number of open file descriptors"
|
|
default 16
|
|
depends on POSIX_FS
|
|
help
|
|
Maximum number of open files. Note that this setting
|
|
is additionally bounded by CONFIG_POSIX_MAX_FDS.
|