summaryrefslogtreecommitdiffstats
path: root/package/udev/Config.in
blob: 48391e5fbbde36680deb52f3c8b89239f2824e85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
config BR2_PACKAGE_UDEV
	bool "udev"
	help
	  Userspace device daemon.

	  ftp://ftp.kernel.org/pub/linux/utils/kernel/hotplug/

if BR2_PACKAGE_UDEV

config BR2_PACKAGE_UDEV_ALL_EXTRAS
	bool "enable all extras"
	depends on BR2_LARGEFILE # acl
	depends on BR2_USE_WCHAR # libglib2
	depends on BR2_PROGRAM_INVOCATION # usbutils
	select BR2_PACKAGE_ACL
	select BR2_PACKAGE_LIBUSB
	select BR2_PACKAGE_LIBUSB_COMPAT
	select BR2_PACKAGE_USBUTILS
	select BR2_PACKAGE_HWDATA
	select BR2_PACKAGE_LIBGLIB2
	help
	  Enable all extras with external dependencies like
	  libacl, libusb, libusb-compat, usbutils, hwdata

comment "udev extras requires a toolchain with LARGEFILE/WCHAR/PROGRAM_INVOCATION support"
	depends on !(BR2_LARGEFILE && BR2_USE_WCHAR && BR2_PROGRAM_INVOCATION)

endif