mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-02 05:33:57 -09:00
This bump includes patches which add cmake4 compatibility. json-c is now a mandatory dependency due to upstream commit: https://git.openwrt.org/?p=project/libubox.git;a=commitdiff;h=b7acc8e6fd5e13611ad90a593e98f9589af4009a Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
19 lines
556 B
Plaintext
19 lines
556 B
Plaintext
config BR2_PACKAGE_LIBUCI
|
|
bool "libuci"
|
|
depends on !BR2_STATIC_LIBS
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # libubox -> json-c
|
|
select BR2_PACKAGE_LIBUBOX
|
|
help
|
|
This library originates from the OpenWrt project to
|
|
handle the configuration file infrastructure, but can
|
|
also be used for the same purposes in projects other
|
|
than OpenWrt.
|
|
|
|
This package will also install CLI tool uci.
|
|
|
|
https://openwrt.org/docs/techref/uci
|
|
|
|
comment "libuci needs a toolchain w/ dynamic library"
|
|
depends on BR2_STATIC_LIBS
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|