Merge "ipq5018: Enable LZMA decompression support"

This commit is contained in:
Linux Build Service Account 2020-04-24 13:15:31 -07:00 committed by Gerrit - the friendly Code Review server
commit 7f2f9a9814
3 changed files with 10 additions and 0 deletions

View file

@ -318,6 +318,7 @@ CONFIG_REGEX=y
# Compression Support
#
# CONFIG_LZ4 is not set
CONFIG_LZMA=y
# CONFIG_ERRNO_STR is not set
# CONFIG_UNIT_TEST is not set

View file

@ -318,6 +318,7 @@ CONFIG_REGEX=y
# Compression Support
#
# CONFIG_LZ4 is not set
CONFIG_LZMA=y
# CONFIG_ERRNO_STR is not set
# CONFIG_UNIT_TEST is not set

View file

@ -127,6 +127,14 @@ config LZ4
frame format currently (2015) implemented in the Linux kernel
(generated by 'lz4 -l'). The two formats are incompatible.
config LZMA
bool "Enable LZMA decompression support"
help
If this option is set, support for LZMA compressed images
is included. The LZMA algorithm can run in-place as long as the
compressed image is loaded to the end of the output buffer, and
trades high compression ratios and fairly fast decompression speed.
endmenu
config ERRNO_STR