5e35c1bedd
The udev virtual package and its current providers (eudev and systemd) have been updated to use the latest version of virtual package infrastructure. A provider should now select BR2_PACKAGE_HAS_UDEV and well as set a value for BR2_PACKAGE_PROVIDES_UDEV. Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
17 lines
417 B
Makefile
17 lines
417 B
Makefile
################################################################################
|
|
#
|
|
# udev
|
|
#
|
|
################################################################################
|
|
|
|
UDEV_SOURCE =
|
|
UDEV_DEPENDENCIES = $(call qstrip,$(BR2_PACKAGE_PROVIDES_UDEV))
|
|
|
|
ifeq ($(BR2_PACKAGE_HAS_UDEV),y)
|
|
ifeq ($(UDEV_DEPENDENCIES),)
|
|
$(error No Udev implementation selected. Configuration error)
|
|
endif
|
|
endif
|
|
|
|
$(eval $(generic-package))
|