diff options
| author | Simon Glass <[email protected]> | 2023-02-22 09:34:00 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-03-02 17:45:58 -0500 |
| commit | 40aa82d0ebabc5471ddebbda4f8536f99cc864dc (patch) | |
| tree | ab797fa0e8bc2238a461ef6d2eb882086ea0c5f4 /env | |
| parent | 1c419582f6dbb38867c61c8fb01e9ab9d8531b46 (diff) | |
env: Allow VPL environment to be nowhere
Add an option to put the VPL environment nowhere (not in storage).
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'env')
| -rw-r--r-- | env/Kconfig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/env/Kconfig b/env/Kconfig index 6e24eee55f2..2bbe4c466a6 100644 --- a/env/Kconfig +++ b/env/Kconfig @@ -860,6 +860,16 @@ config TPL_ENV_IS_IN_FLASH endif +if VPL_ENV_SUPPORT + +config VPL_ENV_IS_NOWHERE + bool "VPL Environment is not stored" + default y if ENV_IS_NOWHERE + help + Similar to ENV_IS_NOWHERE, used for VPL environment. + +endif # VPL_ENV_SUPPORT + config USE_BOOTFILE bool "Add a 'bootfile' environment variable" help |
