summaryrefslogtreecommitdiff
path: root/lib/Kconfig
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2025-12-18 17:30:56 -0600
committerTom Rini <[email protected]>2026-01-06 14:44:21 -0600
commite7797f450ad26bca32c12ae55e3d43438b74f910 (patch)
treedb6129eafc55e0867448293171be0ba250ab79f7 /lib/Kconfig
parentdd0ad45920a7269c44c306b2764bd7b49c92f179 (diff)
lzma: Add Kconfig options to optimize for size
Currently, our LZMA library has an option for optimizing for size, rather than speed. It is a minimal savings today, and has not been worth enabling. As this will change in the near future, add options now to allow disabling it in full U-Boot or in SPL, and enable these on gardena-smart-gateway-mt7688 which is very close to the size limit today. Reviewed-by: Stefan Roese <[email protected]> Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'lib/Kconfig')
-rw-r--r--lib/Kconfig14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/Kconfig b/lib/Kconfig
index fe0b878a206..96032eaddf9 100644
--- a/lib/Kconfig
+++ b/lib/Kconfig
@@ -838,6 +838,13 @@ config LZMA
ratio and fairly fast decompression speed. See also
CONFIG_CMD_LZMADEC which provides a decode command.
+config LZMA_SIZE_OPTIMIZATION
+ bool "Optimize the LZMA algorithm for smaller binary size"
+ help
+ This enables building the LZMA library optimized for size, rather
+ than performance. This can be a loss of 15-20% in decompression
+ speed, but a savings of close to two kilobytes in many cases.
+
config LZO
bool "Enable LZO decompression support"
help
@@ -932,6 +939,13 @@ config SPL_LZMA
help
This enables support for LZMA compression algorithm for SPL boot.
+config SPL_LZMA_SIZE_OPTIMIZATION
+ bool "Optimize the LZMA algorithm for smaller binary size in SPL"
+ help
+ This enables building the LZMA library optimized for size, rather
+ than performance. This can be a loss of 15-20% in decompression
+ speed, but a savings of close to two kilobytes in many cases.
+
config TPL_LZMA
bool "Enable LZMA decompression support for TPL build"
depends on TPL