diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-10-06 15:44:22 +0200 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-10-06 16:02:37 +0200 |
commit | 3b728f8728fa7c596d30ecd27ebb64d37a54a12e (patch) | |
tree | 49f69dc9a47167b2a67849c8f25c2bb6c1ee0c6a /cmd/Kconfig | |
parent | f2d247df506eaf984f26ec03baf115d70bd75b9c (diff) | |
download | u-boot-3b728f8728fa7c596d30ecd27ebb64d37a54a12e.tar.gz u-boot-3b728f8728fa7c596d30ecd27ebb64d37a54a12e.tar.bz2 u-boot-3b728f8728fa7c596d30ecd27ebb64d37a54a12e.zip |
cmd: disable CMD_NVEDIT_EFI by default
The growth of the UEFI sub-system leads to build failures for systems with
strict limits on the U-Boot image size.
CMD_NVEDIT_EFI supports displaying and editing of UEFI variables. The
setting is not needed for booting. Disabling it by default reduces the
size of the U-Boot image by 2 KiB.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'cmd/Kconfig')
-rw-r--r-- | cmd/Kconfig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 4e61565aab..8e55b34c96 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -531,7 +531,6 @@ config CMD_ENV_FLAGS config CMD_NVEDIT_EFI bool "env [set|print] -e - set/print UEFI variables" depends on EFI_LOADER - default y imply HEXDUMP help UEFI variables are encoded as some form of U-Boot variables. |