diff mbox series

[master,v3] linux-firmware-arago: correct removal of overlapping FW

Message ID 20250925194435.2938752-1-denis@denix.org
State Under Review
Delegated to: Ryan Eatmon
Headers show
Series [master,v3] linux-firmware-arago: correct removal of overlapping FW | expand

Commit Message

Denys Dmytriyenko Sept. 25, 2025, 7:44 p.m. UTC
From: Denys Dmytriyenko <denys@konsulko.com>

Use the correct variable, instead of hard-coding /lib/firmware, when
removing firmware images that overlap with the ones from meta-ti-bsp.
This way it will work properly even when usrmerge is enabled.

Signed-off-by: Denys Dmytriyenko <denys@konsulko.com>
---
v3 - remove accidental double-slash

 .../recipes-kernel/linux-firmware/linux-firmware-arago.inc | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

Comments

PRC Automation Sept. 25, 2025, 7:46 p.m. UTC | #1
meta-arago / na / 20250925194435.2938752-1-denis

PRC Results: PASS

=========================================================
  check-yocto-patches: PASS
=========================================================
Patches
----------------------------------------
WARN - [master][PATCH v3] linux-firmware-arago: correct removal of overlapping FW
    WARN: Commit message does not include file/recipe name: linux-firmware-arago: correct removal of overlapping FW. (COMMIT-MESSAGE-2)
        patch
    
    WARN: Revised patch missing a comment. (REVISION-1)
        patch



=========================================================
  apply-yocto-patch: PASS
=========================================================
master
=====================
Summary:
- Patch Series: [master][PATCH v3] linux-firmware-arago: correct removal of overlapping FW
- Submitter: From: Denys Dmytriyenko <denis@denix.org>
From: Denys Dmytriyenko <denys@konsulko.com>
- Date: Date: Thu, 25 Sep 2025 15:44:35 -0400
- Num Patches: 1
- Mailing List (public inbox) Commit SHA: a4caee230bbd05ce6fe794914b0373d83daa5303

Applied to:
- Repository: lcpd-prc-meta-arago
- Base Branch: master-wip
- Commit Author: Ryan Eatmon <reatmon@ti.com>
- Commit Subject: ti-test: Make opencl-cts dependent on DISTRO_FEATURES
- Commit SHA: d3532063218f5c47b5e912554a0b236eb25e61f4

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



=========================================================
  check-yocto-repo: PASS
=========================================================
master
=====================
PASS
diff mbox series

Patch

diff --git a/meta-arago-distro/recipes-kernel/linux-firmware/linux-firmware-arago.inc b/meta-arago-distro/recipes-kernel/linux-firmware/linux-firmware-arago.inc
index 43c54575..e22047ca 100644
--- a/meta-arago-distro/recipes-kernel/linux-firmware/linux-firmware-arago.inc
+++ b/meta-arago-distro/recipes-kernel/linux-firmware/linux-firmware-arago.inc
@@ -1,6 +1,7 @@ 
-PR:append = ".arago2"
+PR:append = ".arago3"
 
+# meta-ti-bsp packages newer versions on these
 do_install:append() {
-	rm -rf  ${D}/lib/firmware/ti-connectivity/
-	rm -rf  ${D}/lib/firmware/cadence/
+	rm -rf  ${D}${nonarch_base_libdir}/firmware/ti-connectivity/
+	rm -rf  ${D}${nonarch_base_libdir}/firmware/cadence/
 }