Files
buildroot/package/usbutils/Config.in
Bernd Kuhls 33345d5bef package/usbutils: fix comment
Buildroot commit b94ada7608 added "wchar,
dynamic library" to the package comment displayed when the package is not
available although the package does not depend on these features.

Signed-off-by: Bernd Kuhls <bernd@kuhls.net>
Signed-off-by: Fiona Klute <fiona.klute@gmx.de>
2026-06-20 00:57:40 +02:00

19 lines
632 B
Plaintext

config BR2_PACKAGE_USBUTILS
bool "usbutils"
depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
depends on BR2_PACKAGE_HAS_LIBUDEV
select BR2_PACKAGE_HWDATA if BR2_PACKAGE_LIBUDEV_ZERO
select BR2_PACKAGE_HWDATA_USB_IDS if BR2_PACKAGE_LIBUDEV_ZERO
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
select BR2_PACKAGE_LIBUSB
help
USB enumeration utilities
http://linux-usb.sourceforge.net/
comment "usbutils needs libudev and a toolchain w/ threads, gcc >= 4.9"
depends on !BR2_TOOLCHAIN_HAS_THREADS || \
!BR2_PACKAGE_HAS_LIBUDEV || \
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9