diff options
author | Michal Simek <michal.simek@xilinx.com> | 2021-08-27 08:48:10 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-08-31 17:47:49 -0400 |
commit | b4c2c151b14b59a2403675526adf666710cade67 (patch) | |
tree | 5a77847b716b361589d1df4ddc77ed3c84f340da /env | |
parent | 7cfbba36e9f84312afe8cd6d12db4e9e9c1e04b5 (diff) | |
download | u-boot-b4c2c151b14b59a2403675526adf666710cade67.tar.gz u-boot-b4c2c151b14b59a2403675526adf666710cade67.tar.bz2 u-boot-b4c2c151b14b59a2403675526adf666710cade67.zip |
Kconfig: Remove all default n/no options
default n/no doesn't need to be specified. It is default option anyway.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
[trini: Rework FSP_USE_UPD portion]
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'env')
-rw-r--r-- | env/Kconfig | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/env/Kconfig b/env/Kconfig index 760e62521c..f75f2b1353 100644 --- a/env/Kconfig +++ b/env/Kconfig @@ -685,7 +685,6 @@ config ENV_FDT_PATH config ENV_APPEND bool "Always append the environment with new data" - default n help If defined, the environment hash table is only ever appended with new data, but the existing hash table can never be dropped and reloaded @@ -694,7 +693,6 @@ config ENV_APPEND config ENV_WRITEABLE_LIST bool "Permit write access only to listed variables" - default n help If defined, only environment variables which explicitly set the 'w' writeable flag can be written and modified at runtime. No variables @@ -702,7 +700,6 @@ config ENV_WRITEABLE_LIST config ENV_ACCESS_IGNORE_FORCE bool "Block forced environment operations" - default n help If defined, don't allow the -f switch to env set override variable access flags. |