From df36e51ee1a545f6fc50a237cc9ff23f099cd806 Mon Sep 17 00:00:00 2001 From: Alexandru Ardelean Date: Wed, 27 Jul 2022 11:19:52 +0300 Subject: [PATCH] package/cog: add udev dependency to drm platform support The DRM platform support already has the 'BR2_PACKAGE_HAS_UDEV' symbol in package/cog/Config.in We just need to specify 'udev' as a dependency in the cog.mk file. The udev virtual package is pulled by libinput anyway, but this makes it more explicit. Signed-off-by: Alexandru Ardelean Signed-off-by: Thomas Petazzoni --- package/cog/cog.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/cog/cog.mk b/package/cog/cog.mk index da660eb7c1..95b6220629 100644 --- a/package/cog/cog.mk +++ b/package/cog/cog.mk @@ -28,7 +28,7 @@ endif ifeq ($(BR2_PACKAGE_COG_PLATFORM_DRM),y) COG_CONF_OPTS += -DCOG_PLATFORM_DRM=ON -COG_DEPENDENCIES += libdrm libinput libgbm libegl +COG_DEPENDENCIES += libdrm libinput libgbm libegl udev else COG_CONF_OPTS += -DCOG_PLATFORM_DRM=OFF endif