diff mbox series

[meta-arago,master] arago.conf: Adapt to new oe-core DISTRO_FEATURE settings

Message ID 20260226234531.608032-1-reatmon@ti.com
State New
Headers show
Series [meta-arago,master] arago.conf: Adapt to new oe-core DISTRO_FEATURE settings | expand

Commit Message

Ryan Eatmon Feb. 26, 2026, 11:45 p.m. UTC
Adapt to a recent change [1] in the default DISTRO_FEATURES.

Remove ptest, and clean up the features we were already turning on in
relation to the new ones that were turned on.

Signed-off-by: Ryan Eatmon <reatmon@ti.com>
---
 meta-arago-distro/conf/distro/arago.conf | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

Comments

PRC Automation Feb. 27, 2026, 12:07 a.m. UTC | #1
meta-arago / na / 20260226234531.608032-1-reatmon

PRC Results: PASS

=========================================================
  check-yocto-patches: PASS
=========================================================
Patches
----------------------------------------
All patches passed



=========================================================
  apply-yocto-patch: PASS
=========================================================
master
=====================
Summary:
- Patch Series: [meta-arago][master][PATCH] arago.conf: Adapt to new oe-core DISTRO_FEATURE settings
- Submitter: From: Ryan Eatmon <reatmon@ti.com>
- Date: Date: Thu, 26 Feb 2026 17:45:31 -0600
- Num Patches: 1
- Mailing List (public inbox) Commit SHA: 807230f5350971894a55b0a719efe13b31f3a02b

Applied to:
- Repository: lcpd-prc-meta-arago
- Base Branch: master-next
- Commit Author: Ryan Eatmon <reatmon@ti.com>
- Commit Subject: arago.conf: Remove duplicate include for yocto-space-optimize.inc
- Commit SHA: a69841493f652f427ee322e394fb3a040b873193

Patches
----------------------------------------
All patches applied



=========================================================
  check-yocto-repo: PASS
=========================================================
master
=====================
PASS



=========================================================
  yocto-check-layers: PASS
=========================================================
master - PASS
=====================
All checks passed
diff mbox series

Patch

diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-arago-distro/conf/distro/arago.conf
index 17c6fed8..60d3d0d4 100644
--- a/meta-arago-distro/conf/distro/arago.conf
+++ b/meta-arago-distro/conf/distro/arago.conf
@@ -43,16 +43,17 @@  TMPDIR .= "${TCMODEAPPEND}"
 DISTRO_FEATURES = "${DISTRO_FEATURES_DEFAULT} ${DISTRO_FEATURES_LIBC}"
 
 # Add additional distro features
-DISTRO_FEATURES:append = " pam wayland opengl"
+DISTRO_FEATURES:append = " pam opencl"
 DISTRO_FEATURES:remove = "x11"
-DISTRO_FEATURES:append = " opencl"
-DISTRO_FEATURES:append = " vulkan"
 
 # Normally target distro features will not be applied to native builds:
 # Native distro features on this list will use the target feature value
 DISTRO_FEATURES_FILTER_NATIVE:append = " opencl"
 DISTRO_FEATURES_FILTER_NATIVESDK:append = " opencl"
 
+# Do not include these default DISTRO_FEATURES from oe-core
+DISTRO_FEATURES_BACKFILL_CONSIDERED = "ptest"
+
 # Set global runtime providers for major components
 ARAGO_SYSVINIT ??= "0"
 INIT_MANAGER ?= "${@['systemd','sysvinit'][int(d.getVar('ARAGO_SYSVINIT'))]}"