Files
J. Neuschäfer ef8ed5ccfe package/execline: add option to build multicall binary
Since version 2.9.2.0, with another bugfix in 2.9.4.0, execline can
be built as a multicall binary, similar to busybox. According to
the author[1], this results in space savings of 66-87% on Linux.

[1]: https://skarnet.org/software/execline/execline.html

Signed-off-by: J. Neuschäfer <j.neuschaefer@gmx.net>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2024-08-15 10:57:24 +02:00

22 lines
616 B
Plaintext

config BR2_PACKAGE_EXECLINE
bool "execline"
depends on BR2_USE_MMU # skalibs
select BR2_PACKAGE_SKALIBS
help
execline is a (non-interactive) scripting language, like sh;
but its syntax is quite different from a traditional shell
syntax. The execlineb program is meant to be used as an
interpreter for a text file; the other commands are
essentially useful inside an execlineb script.
http://skarnet.org/software/execline/
if BR2_PACKAGE_EXECLINE
config BR2_PACKAGE_EXECLINE_MULTICALL
bool "execline multicall binary"
help
Build execline as a multicall binary to save disk space.
endif