Files
Bernd Kuhls 9e8a6c0dc2 package/nvme: needs dynamic library
Buildroot commit f75faf4350 bumped nvme
from 1.12 to 2.15 which depends on dynamic library:

../libnvme-wrap.c:8:10: fatal error: dlfcn.h: No such file or directory
    8 | #include <dlfcn.h>

Fixes:
https://autobuild.buildroot.net/results/5bc/5bccbbd7ad4ce4a6898f6bcfd0a92c09e61324ca/

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2025-11-12 08:52:00 +01:00

15 lines
411 B
Plaintext

config BR2_PACKAGE_NVME
bool "nvme"
depends on !BR2_STATIC_LIBS # dlfcn.h
depends on BR2_USE_MMU # libnvme
select BR2_PACKAGE_LIBNVME
help
NVME utility, a utility for interacting with standard NVM
Express (optimized PCI Express SSD interface) devices.
https://github.com/linux-nvme/nvme-cli
comment "nvme needs a toolchain w/ dynamic library"
depends on BR2_STATIC_LIBS
depends on BR2_USE_MMU