From b3058085390a8243820d0cb8531ea24377f3f42a Mon Sep 17 00:00:00 2001 From: Tatiana Leon Date: Thu, 2 Feb 2023 11:01:58 +0100 Subject: [PATCH] ccmp15: cog: fix cog build Do not build 'drm' platform for ccmp1 platforms. The code for 'drm' does not properly build out of the box in cog version 0.14.1 and some patches are required. Since 'drm' platform is not being used, remove it for ccmp1 instead of fixing the build process. Signed-off-by: Tatiana Leon --- .../dynamic-layers/webkit/recipes-browser/cog/cog_%.bbappend | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta-digi-dey/dynamic-layers/webkit/recipes-browser/cog/cog_%.bbappend b/meta-digi-dey/dynamic-layers/webkit/recipes-browser/cog/cog_%.bbappend index aaf4a8df2..ca8a8f8a8 100644 --- a/meta-digi-dey/dynamic-layers/webkit/recipes-browser/cog/cog_%.bbappend +++ b/meta-digi-dey/dynamic-layers/webkit/recipes-browser/cog/cog_%.bbappend @@ -13,5 +13,6 @@ EXTRA_OECMAKE += "-DCOG_HOME_URI=http://127.0.0.1/" PACKAGECONFIG += "wl" # drm PACKAGECONFIG pulls in libgbm dependency, which isn't available -# on the i.MX6 +# on the i.MX6 and ccmp1 PACKAGECONFIG:remove:ccimx6 = "drm" +PACKAGECONFIG:remove:ccmp1 = "drm"