Commit 5e35c1be authored by eric.le.bihan.dev@free.fr's avatar eric.le.bihan.dev@free.fr Committed by Peter Korsgaard
Browse files

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: default avatarEric Le Bihan <eric.le.bihan.dev@free.fr>
Reviewed-by: default avatarArnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent 5cc2a89a
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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
+3 −0
Original line number Diff line number Diff line
@@ -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
+4 −4
Original line number Diff line number Diff line
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
+4 −12
Original line number Diff line number Diff line
@@ -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))