diff mbox series

[master] arago.conf: update DISTRO_FEATURES handling

Message ID 20260426221846.2594764-1-denis@denix.org
State Under Review
Delegated to: Ryan Eatmon
Headers show
Series [master] arago.conf: update DISTRO_FEATURES handling | expand

Commit Message

Denys Dmytriyenko April 26, 2026, 10:18 p.m. UTC
From: "Denys Dmytriyenko (TI)" <denys@konsulko.com>

Recently OE-Core changed the way DISTRO_FEATURES are handled. Update our
Distro config to match.

* No need to initialize DISTRO_FEATURES with the defaults, as OE-Core
  appends those automatically.
* DISTRO_FEATURES_LIBC has been deprecated long ago.
* Use DISTRO_FEATURES_OPTED_OUT to opt out from specific defaults.

Signed-off-by: Denys Dmytriyenko (TI) <denys@konsulko.com>
---
 meta-arago-distro/conf/distro/arago.conf | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

Comments

PRC Automation April 26, 2026, 10:34 p.m. UTC | #1
meta-arago / na / 20260426221846.2594764-1-denis

PRC Results: FAIL

=========================================================
  check-yocto-patches: PASS
=========================================================
Patches
----------------------------------------
WARN - [master][PATCH] arago.conf: update DISTRO_FEATURES handling
    WARN: Missing Signed-off-by by sender in commit message. (SIGNED-OFF-BY-2)
        patch
    
    For details on the above errors/warnings visit: https://lists.yoctoproject.org/g/meta-ti/wiki/40887



=========================================================
  apply-yocto-patch: PASS
=========================================================
master
=====================
Summary:
- Patch Series: [master][PATCH] arago.conf: update DISTRO_FEATURES handling
- Submitter: From: Denys Dmytriyenko <denis@denix.org>
From: "Denys Dmytriyenko (TI)" <denys@konsulko.com>
- Date: Date: Sun, 26 Apr 2026 18:18:46 -0400
- Num Patches: 1
- Mailing List (public inbox) Commit SHA: ecb988cfeabf187b36e36a45015950456268e9d5

Applied to:
- Repository: lcpd-prc-meta-arago
- Base Branch: master-wip
- Commit Author: Pratham Deshmukh <p-deshmukh@ti.com>
- Commit Subject: tensorflow-lite: Fix file packaging for headers and symlinks
- Commit SHA: 480b57f06af61bc5ba01af73fc6d94463124e318

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



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



=========================================================
  yocto-check-layers: FAIL
=========================================================
master - FAIL
=====================
ERROR: ExpansionError during parsing <build-dir>/sources/oe-core/meta/recipes-bsp/gnu-efi/gnu-efi_4.0.4.bb
diff mbox series

Patch

diff --git a/meta-arago-distro/conf/distro/arago.conf b/meta-arago-distro/conf/distro/arago.conf
index b119179e..f3feb8b5 100644
--- a/meta-arago-distro/conf/distro/arago.conf
+++ b/meta-arago-distro/conf/distro/arago.conf
@@ -39,12 +39,8 @@  IMAGE_BOOT_FILES += "uEnv.txt"
 TCMODEAPPEND ?= "-${TCMODE}"
 TMPDIR .= "${TCMODEAPPEND}"
 
-# Start with default set of distro features
-DISTRO_FEATURES = "${DISTRO_FEATURES_DEFAULT} ${DISTRO_FEATURES_LIBC}"
-
 # Add additional distro features
 DISTRO_FEATURES:append = " pam opencl"
-DISTRO_FEATURES:remove = "x11"
 
 # Normally target distro features will not be applied to native builds:
 # Native distro features on this list will use the target feature value
@@ -52,7 +48,7 @@  DISTRO_FEATURES_FILTER_NATIVE:append = " opencl"
 DISTRO_FEATURES_FILTER_NATIVESDK:append = " opencl"
 
 # Do not include these default DISTRO_FEATURES from oe-core
-DISTRO_FEATURES_OPTED_OUT = "ptest"
+DISTRO_FEATURES_OPTED_OUT = "ptest x11"
 
 # Set global runtime providers for major components
 ARAGO_SYSVINIT ??= "0"