diff mbox series

[meta-arago,kirkstone/master] arago.conf: remove x11 again

Message ID 20240201165537.3874417-1-rs@ti.com
State Accepted
Delegated to: Ryan Eatmon
Headers show
Series [meta-arago,kirkstone/master] arago.conf: remove x11 again | expand

Commit Message

Randolph Sapp Feb. 1, 2024, 4:55 p.m. UTC
From: Randolph Sapp <rs@ti.com>

We don't support x11, and while it can currently be enabled in tandem
with our graphics stack right now without explicitly causing issues on
it's own, Yocto still treats the presence of x11 as a distro feature to
mean that desktop GL is present.

This assumption leads to a lot of incorrectly configured packages in our
case so to prevent future incompatibility with layers adjusting their
PACKAGECONFIG values with this logic we should explicitly remove x11
again.

This decision will likely flip again if oe-core introduces a standard
"opengles" feature instead of just the blanket "opengl" one they
currently use.

Signed-off-by: Randolph Sapp <rs@ti.com>
---

This has a dependency on the following patch in meta-ti since vulkan is
currently enabled:
https://lists.yoctoproject.org/g/meta-ti/message/17432

 meta-arago-distro/conf/distro/arago.conf | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-arago-distro/conf/distro/arago.conf
index ecbcbf1a..2a2b827f 100644
--- a/meta-arago-distro/conf/distro/arago.conf
+++ b/meta-arago-distro/conf/distro/arago.conf
@@ -47,6 +47,7 @@  DISTRO_FEATURES = "${DISTRO_FEATURES_DEFAULT} ${DISTRO_FEATURES_LIBC}"
 
 # Add additional distro features
 DISTRO_FEATURES:append = " pam wayland opengl"
+DISTRO_FEATURES:remove = "x11"
 #DISTRO_FEATURES:append = " opencl"
 DISTRO_FEATURES:append = " vulkan"
 DISTRO_FEATURES:append = " opencv"