diff options
author | Tom Rini <trini@konsulko.com> | 2024-04-27 08:10:52 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-05-06 15:05:03 -0600 |
commit | 55608302a4d8b8bf77bdfbd6cf3b38ca7ab639fb (patch) | |
tree | 5e8b5ee48d39546a1a189227fa52db0a5b4466f1 /env | |
parent | fcdcfc90f151d3ca6b154dc61cf3a37123d679d0 (diff) | |
download | u-boot-55608302a4d8b8bf77bdfbd6cf3b38ca7ab639fb.tar.gz |
cmd/Kconfig: Add some missing dependencies
With the migration to Kconfig complete, we can now add some previously
missing dependencies to some commands.
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'env')
-rw-r--r-- | env/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/env/Kconfig b/env/Kconfig index 1f8e90af55e..9641abe371a 100644 --- a/env/Kconfig +++ b/env/Kconfig @@ -312,7 +312,7 @@ config ENV_IS_IN_NVRAM config ENV_IS_IN_ONENAND bool "Environment is in OneNAND" - depends on !CHAIN_OF_TRUST + depends on !CHAIN_OF_TRUST && CMD_ONENAND help Define this if you want to put your local device's environment in OneNAND. |