diff mbox series

[meta-arago,master] kernel-selftest: Add textrel to INSANE_SKIP

Message ID 20260225211731.995405-1-reatmon@ti.com
State Under Review
Delegated to: Ryan Eatmon
Headers show
Series [meta-arago,master] kernel-selftest: Add textrel to INSANE_SKIP | expand

Commit Message

Ryan Eatmon Feb. 25, 2026, 9:17 p.m. UTC
For some reason kernel-selftest has started blowing up with QA errors
related to ELF relocations:

ERROR: QA Issue: kernel-selftest: ELF binary /usr/kernel-selftest/arm64/fake_sigreturn_duplicated_fpsimd has relocations in .text [textrel]
...
ERROR: QA Issue: kernel-selftest: ELF binary /usr/kernel-selftest/arm64/za_no_regs has relocations in .text [textrel]

Simple solution is just to turn off the textrel QA check.

Signed-off-by: Ryan Eatmon <reatmon@ti.com>
---
 .../recipes-kernel/kernel-selftest/kernel-selftest-ti.inc       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

PRC Automation Feb. 25, 2026, 9:45 p.m. UTC | #1
meta-arago / na / 20260225211731.995405-1-reatmon

PRC Results: FAIL

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



=========================================================
  apply-yocto-patch: PASS
=========================================================
master
=====================
Summary:
- Patch Series: [meta-arago][master][PATCH] kernel-selftest: Add textrel to INSANE_SKIP
- Submitter: From: Ryan Eatmon <reatmon@ti.com>
- Date: Date: Wed, 25 Feb 2026 15:17:31 -0600
- Num Patches: 1
- Mailing List (public inbox) Commit SHA: 41c64d8bb7c783d0d5a4b03e04d39d0696f03f81

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: FAIL
=========================================================
master - FAIL
=====================
ERROR: <build-dir>/sources/meta-virtualization/recipes-containers/container-registry/container-registry-populate.bb: QA Issue: task do_populate_registry has network enabled

ERROR: Signature change for container-registry-populate
   container-registry-populate:do_populate_registry: 83980fac77bb7807a22cc1a5be9b20362504127ee1bbe4a7d4deb3ff778605b4 -> ad1f952cef02fb4f8fc48c312450560c35d8afdc0e30efe55af39de464dab6c8
      bitbake-diffsigs --task container-registry-populate do_populate_registry --signature 83980fac77bb7807a22cc1a5be9b20362504127ee1bbe4a7d4deb3ff778605b4 ad1f952cef02fb4f8fc48c312450560c35d8afdc0e30efe55af39de464dab6c8
      NOTE: Reconnecting to bitbake server...
      Taint (by forced/invalidated task) changed from nostamp(uuid4):9f49a7b6-1ed5-4d21-8f29-736f091635c3 to nostamp(uuid4):a4b2873f-a230-4f68-abd5-93b8da3334ef
diff mbox series

Patch

diff --git a/meta-arago-test/recipes-kernel/kernel-selftest/kernel-selftest-ti.inc b/meta-arago-test/recipes-kernel/kernel-selftest/kernel-selftest-ti.inc
index e67cd860..df5ff68d 100644
--- a/meta-arago-test/recipes-kernel/kernel-selftest/kernel-selftest-ti.inc
+++ b/meta-arago-test/recipes-kernel/kernel-selftest/kernel-selftest-ti.inc
@@ -46,4 +46,4 @@  TEST_LIST += "\
     watchdog \
 "
 
-INSANE_SKIP:${PN} += "staticdev"
+INSANE_SKIP:${PN} += "staticdev textrel"