ron minnich has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/39051 )
Change subject: cbfs: allow uncompressed payloads ......................................................................
cbfs: allow uncompressed payloads
Change-Id: I8261bc28e5bc9aa32db1dccef7035486995c9873 Signed-off-by: Ronald G. Minnich rminnich@gmail.com --- M payloads/Kconfig 1 file changed, 6 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/51/39051/1
diff --git a/payloads/Kconfig b/payloads/Kconfig index 4e86c21..99a4391 100644 --- a/payloads/Kconfig +++ b/payloads/Kconfig @@ -60,7 +60,12 @@ depends on !PAYLOAD_NONE && !PAYLOAD_LINUX && !PAYLOAD_LINUXBOOT && !PAYLOAD_FIT help Choose the compression algorithm for the chosen payloads. - You can choose between LZMA and LZ4. + You can choose between None, LZMA, or LZ4. + +config COMPRESSED_PAYLOAD_NONE + bool "Use no compression for payloads" + help + Do not compress the payload.
config COMPRESSED_PAYLOAD_LZMA bool "Use LZMA compression for payloads"