package: add support for <pkg>_BUSYBOX_CONFIG_FIXUPS

This will allow individual packages to define extra Busybox options
that they need.

Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Francois Perrad
2025-01-06 19:20:16 +01:00
committed by Thomas Petazzoni
parent e8a90a5efb
commit 3ef139386d
3 changed files with 10 additions and 0 deletions

View File

@@ -631,6 +631,12 @@ different steps of the build process.
This is seldom used, as package usually have no strict requirements on
the kernel options.
* +LIBFOO_BUSYBOX_CONFIG_FIXUPS+ lists the Busybox configuration
options that are needed to use this package especially in some scripts,
or at contrario the useless options. This shall be a set of
calls to one of the kconfig tweaking option: `KCONFIG_ENABLE_OPT`,
`KCONFIG_DISABLE_OPT`, or `KCONFIG_SET_OPT`.
The preferred way to define these variables is:
----