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>
18 lines
278 B
Text
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"
|