mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 08:30:47 -09:00
Fixes: WARNING: unmet direct dependencies detected for BR2_PACKAGE_JSON_C Depends on [n]: BR2_TOOLCHAIN_HAS_SYNC_4 [=n] Selected by [y]: - BR2_PACKAGE_NDCTL [=y] && BR2_PACKAGE_HAS_UDEV [=y] && BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_10 [=y] && BR2_TOOLCHAIN_HAS_THREADS [=y] && BR2_USE_MMU [=y] Signed-off-by: Julien Olivain <ju.o@free.fr> Signed-off-by: Arnout Vandecappelle <arnout@rnout.be>
28 lines
906 B
Plaintext
28 lines
906 B
Plaintext
config BR2_PACKAGE_NDCTL
|
|
bool "ndctl"
|
|
depends on BR2_PACKAGE_HAS_UDEV
|
|
depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_10 # __struct_group()
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # json-c
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_USE_MMU
|
|
select BR2_PACKAGE_INIPARSER
|
|
select BR2_PACKAGE_JSON_C
|
|
select BR2_PACKAGE_KEYUTILS
|
|
select BR2_PACKAGE_KMOD
|
|
select BR2_PACKAGE_UTIL_LINUX
|
|
select BR2_PACKAGE_UTIL_LINUX_LIBS
|
|
select BR2_PACKAGE_UTIL_LINUX_LIBUUID
|
|
help
|
|
A "device memory" enabling project encompassing tools and
|
|
libraries for CXL, NVDIMMs, DAX, memory tiering and other
|
|
platform memory device topics.
|
|
|
|
https://github.com/pmem/ndctl
|
|
|
|
comment "ndctl needs udev /dev management, a toolchain headers >= 5.10"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
depends on !BR2_PACKAGE_HAS_UDEV \
|
|
|| !BR2_TOOLCHAIN_HAS_THREADS \
|
|
|| !BR2_TOOLCHAIN_HEADERS_AT_LEAST_5_10
|