| Message ID | 20251107214128.1491466-1-afd@ti.com |
|---|---|
| State | New |
| Headers | show |
| Series | [meta-arago,master,1/5] tisdk-core-bundle: Make DTB filter work with DRA7xx HS EVM | expand |
meta-arago / na / 20251107214128.1491466-1-afd
PRC Results: PASS
=========================================================
check-yocto-patches: PASS
=========================================================
Patches
----------------------------------------
WARN - [meta-arago][master][PATCH 5/5] packagegroups: Substitute am57xx for remaining dra7xx uses
WARN: Commit message should not include directory path to recipe: packagegroups: Substitute am57xx for remaining dra7xx uses.
packagegroups: (COMMIT-MESSAGE-3)
patch
=========================================================
apply-yocto-patch: PASS
=========================================================
master
=====================
Summary:
- Patch Series: [meta-arago][master][PATCH 1/5] tisdk-core-bundle: Make DTB filter work with DRA7xx HS EVM
- Submitter: From: Andrew Davis <afd@ti.com>
- Date: Date: Fri, 7 Nov 2025 15:41:24 -0600
- Num Patches: 5
- Mailing List (public inbox) Commit SHA: 48a92afdaa8f0e497f8600b8496afae90ae1d6e5
Applied to:
- Repository: lcpd-prc-meta-arago
- Base Branch: master-wip
- Commit Author: Ryan Eatmon <reatmon@ti.com>
- Commit Subject: packagegroup-arago-tisdk-graphics*: Add DISTRO_FEATURE check for some packages
- Commit SHA: 18d215b03c65ba448bf38dc3dd98efe8a17c25bf
Patches
----------------------------------------
All patches applied
=========================================================
check-yocto-repo: PASS
=========================================================
master
=====================
PASS
diff --git a/meta-arago-distro/recipes-core/images/tisdk-core-bundle.inc b/meta-arago-distro/recipes-core/images/tisdk-core-bundle.inc index 5f72e7b0..200ccf52 100644 --- a/meta-arago-distro/recipes-core/images/tisdk-core-bundle.inc +++ b/meta-arago-distro/recipes-core/images/tisdk-core-bundle.inc @@ -18,9 +18,8 @@ TOOLCHAIN_CLEANUP_PACKAGES = "libgnutls-dev libgnutls-extra26 libgnutls-openssl2 # picking up DTB files for devices with no DTB support. DTB_FILTER = "unknown" DTB_FILTER:ti33x = "am335x" -DTB_FILTER:dra7xx-evm = "dra7" -DTB_FILTER:am57xx-evm = "am57xx" -DTB_FILTER:am57xx-hs-evm = "${DTB_FILTER:am57xx-evm}" +DTB_FILTER:dra7xx = "dra7" +DTB_FILTER:am57xx = "am57xx" DTB_FILTER:ti43x = "am43" DTB_FILTER:omapl138 = "da850" DTB_FILTER:am65xx = "am65"
Add these filters based on SoC, not board. This allows this to work with dra7xx-hs-evm and any other DRA7 based board. This also means we only need one line for all AM57x boards. Signed-off-by: Andrew Davis <afd@ti.com> --- meta-arago-distro/recipes-core/images/tisdk-core-bundle.inc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-)