1config BR2_PACKAGE_LIBGUDEV 2 bool "libgudev" 3 depends on BR2_PACKAGE_HAS_UDEV 4 depends on BR2_USE_WCHAR # gettext 5 depends on BR2_TOOLCHAIN_HAS_THREADS 6 depends on BR2_USE_MMU # fork() 7 select BR2_PACKAGE_LIBGLIB2 8 help 9 This library provides GObject bindings for libudev. It was 10 originally part of udev-extras, then udev, then systemd. 11 It's now a project on its own. Required for building some 12 programs that use udev, when using systemd. 13 14 https://wiki.gnome.org/Projects/libgudev 15 16comment "libgudev needs udev /dev handling and a toolchain w/ wchar, threads" 17 depends on BR2_USE_MMU 18 depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \ 19 !BR2_PACKAGE_HAS_UDEV 20