mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-17 12:41:32 +00:00
cmd: Make CMD_LZMA / CMD_UNZIP default y if CMD_BOOTI
In the Linux Kernel on ARM64, the Image.COMPRESSION file is not self-extracting in the way that x86 and ARM images are. So when CMD_BOOTI is enabled we should also default to enabling CMD_UNZIP and CONFIG_LZMA in order for the user to be able to decompress many of the common compressions that will be done to an Image file. Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
610eec7f05
commit
99e46dfc6a
1 changed files with 2 additions and 0 deletions
|
@ -531,6 +531,7 @@ menu "Compression commands"
|
|||
|
||||
config CMD_LZMADEC
|
||||
bool "lzmadec"
|
||||
default y if CMD_BOOTI
|
||||
select LZMA
|
||||
help
|
||||
Support decompressing an LZMA (Lempel-Ziv-Markov chain algorithm)
|
||||
|
@ -538,6 +539,7 @@ config CMD_LZMADEC
|
|||
|
||||
config CMD_UNZIP
|
||||
bool "unzip"
|
||||
default y if CMD_BOOTI
|
||||
help
|
||||
Uncompress a zip-compressed memory region.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue