diff options
author | Heiko Schocher <hs@denx.de> | 2019-04-29 08:59:38 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-05-03 07:23:17 -0400 |
commit | 5132361ad4ae940270422d8ab4a1d1a37a6e9b7d (patch) | |
tree | f19ea1c8390ee3898b6f7dfdde7324108258e1b6 /lib | |
parent | cb943418bf9e2c7c77d8d2eb55167e7bdb1afb77 (diff) | |
download | u-boot-5132361ad4ae940270422d8ab4a1d1a37a6e9b7d.tar.gz |
lib: Kconfig: fix help text for GZIP
commit 95f4bbd581cf ("lib: fdt: Allow LZO and GZIP DT compression in U-Boot")
introduced Kconfig option for gzip in U-Boot, but help text
says gzip for SPL, which is wrong. Fix this.
Signed-off-by: Heiko Schocher <hs@denx.de>
Acked-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Kconfig b/lib/Kconfig index 05f82d4a50..38012506d2 100644 --- a/lib/Kconfig +++ b/lib/Kconfig @@ -359,7 +359,7 @@ config LZO This enables support for LZO compression algorithm.r config GZIP - bool "Enable gzip decompression support for SPL build" + bool "Enable gzip decompression support" select ZLIB default y help |