Angel Pons has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/42670 )
Change subject: payloads/Kconfig: Allow compressing Linux ......................................................................
payloads/Kconfig: Allow compressing Linux
Can we do this? Does it work?
Change-Id: I370df9b5612b3c30d4ccafcbc9b1599914349640 Signed-off-by: Angel Pons th3fanbus@gmail.com --- M payloads/Kconfig 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/70/42670/1
diff --git a/payloads/Kconfig b/payloads/Kconfig index cfb28d6..66e0e54 100644 --- a/payloads/Kconfig +++ b/payloads/Kconfig @@ -57,8 +57,8 @@ choice prompt "Payload compression algorithm" default COMPRESSED_PAYLOAD_LZMA - default COMPRESSED_PAYLOAD_NONE if PAYLOAD_LINUX || PAYLOAD_LINUXBOOT || PAYLOAD_FIT - depends on !PAYLOAD_NONE && !PAYLOAD_LINUX && !PAYLOAD_LINUXBOOT && !PAYLOAD_FIT + default COMPRESSED_PAYLOAD_NONE if PAYLOAD_LINUXBOOT || PAYLOAD_FIT + depends on !PAYLOAD_NONE && !PAYLOAD_LINUXBOOT && !PAYLOAD_FIT help Choose the compression algorithm for the chosen payloads. You can choose between None, LZMA, or LZ4.