Config.in 868 B

12345678910111213141516171819202122232425262728293031
  1. config BR2_PACKAGE_UDEV
  2. bool "udev"
  3. depends on BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
  4. help
  5. Userspace device daemon.
  6. ftp://ftp.kernel.org/pub/linux/utils/kernel/hotplug/
  7. if BR2_PACKAGE_UDEV
  8. config BR2_PACKAGE_UDEV_ALL_EXTRAS
  9. bool "enable all extras"
  10. depends on BR2_LARGEFILE # acl
  11. depends on BR2_USE_WCHAR # libglib2
  12. select BR2_PACKAGE_ACL
  13. select BR2_PACKAGE_LIBUSB
  14. select BR2_PACKAGE_LIBUSB_COMPAT
  15. select BR2_PACKAGE_USBUTILS
  16. select BR2_PACKAGE_HWDATA
  17. select BR2_PACKAGE_LIBGLIB2
  18. help
  19. Enable all extras with external dependencies like
  20. libacl, libusb, libusb-compat, usbutils, hwdata
  21. comment "udev extras requires a toolchain with LARGEFILE + WCHAR support"
  22. depends on !(BR2_LARGEFILE && BR2_USE_WCHAR)
  23. endif
  24. comment "udev requires /dev mgmnt set to udev under System configuration"
  25. depends on !BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV