This change deprecates the following Kconfig options * CONFIG_POSIX_ENV * CONFIG_POSIX_CONFSTR * CONFIG_POSIX_SYSCONF * CONFIG_POSIX_UNAME and instead groups them into a single Kconfig option that maps directly to the standard. Namely, CONFIG_POSIX_SINGLE_PROCESS. Signed-off-by: Chris Friedt <cfriedt@tenstorrent.com>
13 lines
276 B
Text
13 lines
276 B
Text
# Copyright (c) 2024 Meta
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if POSIX_SINGLE_PROCESS
|
|
|
|
config POSIX_UNAME_SHELL
|
|
bool "Support for `uname` command"
|
|
select SHELL_GETOPT
|
|
select POSIX_SHELL
|
|
help
|
|
Support for `uname` command in the terminal.
|
|
|
|
endif # POSIX_SINGLE_PROCESS
|