kumquat-buildroot/package/udev/Config.in
Peter Korsgaard 1add7c592b udev: ensure /dev mgmt option is in sync
These options should be in sync, both for consistency and because udev
needs devtmpfs enabled in the kernel.

We unfortunately cannot just select BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV
here, as that one selects udev - leading to recursion erors, so instead
we use depends on.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2011-08-15 14:09:57 +02:00

32 lines
868 B
Plaintext

config BR2_PACKAGE_UDEV
bool "udev"
depends on BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_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
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 support"
depends on !(BR2_LARGEFILE && BR2_USE_WCHAR)
endif
comment "udev requires /dev mgmnt set to udev under System configuration"
depends on !BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_UDEV