diff mbox series

[scarthgap/master] linux-firmware-arago: correct removal of overlapping FW

Message ID 20250925191710.2937644-1-denis@denix.org
State Superseded
Delegated to: Ryan Eatmon
Headers show
Series [scarthgap/master] linux-firmware-arago: correct removal of overlapping FW | expand

Commit Message

Denys Dmytriyenko Sept. 25, 2025, 7:17 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>
---
 .../recipes-kernel/linux-firmware/linux-firmware-arago.inc | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

Comments

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

PRC Results: FAIL

=========================================================
  check-yocto-patches: PASS
=========================================================
Patches
----------------------------------------
WARN - [scarthgap/master][PATCH] 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



=========================================================
  apply-yocto-patch: FAIL
=========================================================
scarthgap
=====================
Summary:
- Patch Series: [scarthgap/master][PATCH] 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:17:10 -0400
- Num Patches: 1
- Mailing List (public inbox) Commit SHA: 2f95d95eb505ede6807da4e744831828b0724e17

Applied to:
- Repository: lcpd-prc-meta-arago
- Base Branch: scarthgap
- Commit Author: LCPD Automation Script <lcpdbld@list.ti.com>
- Commit Subject: CI/CD Auto-Merger: cicd.scarthgap.202509250412
- Commit SHA: 61ab0b00a3683d71c0fc9ac62e1200d85edbcecd

Patches
----------------------------------------
FAIL - [scarthgap/master][PATCH] linux-firmware-arago: correct removal of overlapping FW
    error: patch failed: meta-arago-distro/recipes-kernel/linux-firmware/linux-firmware-arago.inc:1
    error: meta-arago-distro/recipes-kernel/linux-firmware/linux-firmware-arago.inc: patch does not apply
    Applying: linux-firmware-arago: correct removal of overlapping FW
    Patch failed at 0001 linux-firmware-arago: correct removal of overlapping FW

master
=====================
Summary:
- Patch Series: [scarthgap/master][PATCH] 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:17:10 -0400
- Num Patches: 1
- Mailing List (public inbox) Commit SHA: 2f95d95eb505ede6807da4e744831828b0724e17

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
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..30bf399d 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/
 }