buildroot/package/lz4/Config.in
Thomas Petazzoni 739eda1990 package/lz4: don't install programs by default
Commit 2acb27e298 ("package/lz4: make
program installation optional") make the installation of the lz4
programs optional. To preserve backward compatibility, this commit
added a "default y" to the BR2_PACKAGE_LZ4_PROGS.

While Buildroot definitely tries to preserve backward compatibility in
general, in this case, the backward compatibility would mean that
everbody would by default install those 220 KB of program, which are
most likely not needed for the majority of use cases. Installaing them
by default kind of breaks the Buildroot principle of minimalism.

In this specific case, it is believed that the principle of minimalism
wins over the principle of backward compatibility.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2020-07-27 17:22:07 +02:00

20 lines
481 B
Plaintext

config BR2_PACKAGE_LZ4
bool "lz4"
help
LZ4 is a very fast lossless compression algorithm, providing
compression speed at 400 MB/s per core, scalable with
multi-cores CPU. It also features an extremely fast decoder,
with speed in multiple GB/s per core, typically reaching RAM
speed limits on multi-core systems.
http://www.lz4.org/
if BR2_PACKAGE_LZ4
config BR2_PACKAGE_LZ4_PROGS
bool "install programs"
help
lz4, lz4c, unlz4 and lz4cat binaries
endif