udev: update udev to new virtual package infra.

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>
This commit is contained in:
eric.le.bihan.dev@free.fr 2014-02-24 10:25:41 +01:00 committed by Peter Korsgaard
parent 5cc2a89a45
commit 5e35c1bedd
4 changed files with 14 additions and 16 deletions

View File

@ -21,6 +21,9 @@ config BR2_PACKAGE_EUDEV
if BR2_PACKAGE_EUDEV
config BR2_PACKAGE_PROVIDES_UDEV
default "eudev"
config BR2_PACKAGE_EUDEV_RULES_GEN
bool "enable rules generator"
help

View File

@ -40,6 +40,9 @@ config BR2_PACKAGE_SYSTEMD
if BR2_PACKAGE_SYSTEMD
config BR2_PACKAGE_PROVIDES_UDEV
default "systemd"
config BR2_PACKAGE_SYSTEMD_ALL_EXTRAS
bool "enable all extras"
select BR2_PACKAGE_XZ

View File

@ -1,6 +1,6 @@
config BR2_PACKAGE_HAS_UDEV
bool
help
udev is now a virtual package.
Packages requiring udevd at run time or libudev/gudev at build time
should select it.
config BR2_PACKAGE_PROVIDES_UDEV
depends on BR2_PACKAGE_HAS_UDEV
string

View File

@ -5,20 +5,12 @@
################################################################################
UDEV_SOURCE =
UDEV_DEPENDENCIES = $(call qstrip,$(BR2_PACKAGE_PROVIDES_UDEV))
ifeq ($(BR2_PACKAGE_EUDEV),y)
UDEV_DEPENDENCIES += eudev
endif
ifeq ($(BR2_PACKAGE_SYSTEMD),y)
UDEV_DEPENDENCIES += systemd
endif
ifeq ($(BR2_PACKAGE_HAS_UDEV),y)
ifeq ($(UDEV_DEPENDENCIES),)
define UDEV_CONFIGURE_CMDS
echo "No Udev implementation selected. Configuration error."
exit 1
endef
$(error No Udev implementation selected. Configuration error)
endif
endif
$(eval $(generic-package))