summaryrefslogtreecommitdiff
path: root/env
diff options
context:
space:
mode:
authorMarek Vasut <[email protected]>2025-06-09 21:26:43 +0200
committerTom Rini <[email protected]>2025-06-20 12:15:08 -0600
commit224224c9fa287bed428d5c507b8926357191848a (patch)
tree2f6069e4246f43b82e5e41198bb43a603b711937 /env
parentfb5235239aad43c41d528b2e6c8bd6c7b390cde1 (diff)
env: Drop DELAY_ENVIRONMENT
There are no users of DELAY_ENVIRONMENT and the same effect can be achieved either using DT /config/load-environment property, or by using ENV_IS_NOWHERE . Remove this configuration option and matching functionality. Signed-off-by: Marek Vasut <[email protected]>
Diffstat (limited to 'env')
-rw-r--r--env/Kconfig12
1 files changed, 0 insertions, 12 deletions
diff --git a/env/Kconfig b/env/Kconfig
index 65ab8b6392d..58a0666cd49 100644
--- a/env/Kconfig
+++ b/env/Kconfig
@@ -774,18 +774,6 @@ config ENV_VARS_UBOOT_RUNTIME_CONFIG
run-time determined information about the hardware to the
environment. These will be named board_name, board_rev.
-config DELAY_ENVIRONMENT
- bool "Delay environment loading"
- depends on !OF_CONTROL
- help
- Enable this to inhibit loading the environment during board
- initialization. This can address the security risk of untrusted data
- being used during boot. Normally the environment is loaded when the
- board is initialised so that it is available to U-Boot. This inhibits
- that so that the environment is not available until explicitly loaded
- later by U-Boot code. With CONFIG_OF_CONTROL this is instead
- controlled by the value of /config/load-environment.
-
config ENV_IMPORT_FDT
bool "Amend environment by FDT properties"
depends on OF_CONTROL