zephyr/lib/posix/shell/Kconfig.env
Chris Friedt 2fe9d6cd68 posix: deprecate POSIX_ENV _CONFSTR _SYSCONF and _UNAME
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>
2024-06-04 16:27:12 -05:00

10 lines
232 B
Bash

# Copyright (c) 2024 Meta
# SPDX-License-Identifier: Apache-2.0
config POSIX_ENV_SHELL
bool "Support for shell"
select POSIX_SINGLE_PROCESS
select POSIX_SHELL
help
This shell provides access to system environment variables.