zephyr/lib/posix/shell/Kconfig
Christopher Friedt 447fc24352 posix: shell: add an environment variable shell command
This service is used to get, set, and unset system
environment variables.

Note: shell parameter expansion is not supported
at this time.

Signed-off-by: Christopher Friedt <cfriedt@meta.com>
2024-03-08 04:28:47 -05:00

18 lines
278 B
Text

# Copyright (c) 2024 Meta
# SPDX-License-Identifier: Apache-2.0
menu "POSIX Shell Utilities"
if SHELL
config POSIX_SHELL
bool
help
Compile the parent `posix` shell command.
rsource "Kconfig.env"
rsource "Kconfig.uname"
endif # SHELL
endmenu # "POSIX Shell Utilities"