| Message ID | 20260825152919.1829637-1-reatmon@ti.com |
|---|---|
| State | Accepted |
| Delegated to: | Ryan Eatmon |
| Headers | show |
| Series | [meta-ti,master] check_yocto_rules: Add skip rules for libclc | expand |
meta-ti / na / 20260825152919.1829637-1-reatmon PRC Results: PASS ========================================================= check-yocto-patches: PASS ========================================================= Patches ---------------------------------------- All patches passed ========================================================= apply-yocto-patch: PASS ========================================================= master ===================== Summary: - Patch Series: [meta-ti][master][PATCH] check_yocto_rules: Add skip rules for libclc - Submitter: From: Ryan Eatmon <reatmon@ti.com> - Date: Date: Tue, 25 Aug 2026 10:29:19 -0500 - Num Patches: 1 - Mailing List (public inbox) Commit SHA: 6165f5c82caab5c7707e0d64b1edd1a45bdc09b6 Applied to: - Repository: lcpd-prc-meta-ti - Base Branch: master-wip - Commit Author: Ryan Eatmon <reatmon@ti.com> - Commit Subject: TEST: linux-ti-staging: Add testing dtbo and build command - Commit SHA: 2c7ab98a1c62600909a376074a4fb12dfbf683de Patches ---------------------------------------- All patches applied ========================================================= check-yocto-repo: PASS ========================================================= master ===================== PASS ========================================================= yocto-check-layers: PASS ========================================================= master - PASS ===================== All checks passed
diff --git a/check_yocto_rules.json b/check_yocto_rules.json index 6867614f..7d8d1181 100644 --- a/check_yocto_rules.json +++ b/check_yocto_rules.json @@ -40,6 +40,7 @@ }, "PV-1" :{ "skip_files" : [ + "meta-ti-bsp/recipes-graphics/mesa/libclc_git.bb", "meta-ti-bsp/recipes-kernel/linux/ti-kernel-fitimage.bb", "meta-ti-bsp/recipes-multimedia/ti-multimedia-udev/ti-multimedia-udev.bb", "meta-ti-bsp/recipes-ti/initramfs/packagegroup-ti-core-initramfs.bb", @@ -56,5 +57,10 @@ "skip_files" : [ "meta-ti-extras/recipes-ti/ipc/ti-ipc-rtos_git.bb" ] + }, + "SUMMARY-2" : { + "skip_files" : [ + "meta-ti-bsp/recipes-graphics/mesa/libclc_git.bb" + ] } }
Since we imported the recipe without changes, we should not enforce our rules on the recipe. Add the needed skip settings in the json file. Signed-off-by: Ryan Eatmon <reatmon@ti.com> --- check_yocto_rules.json | 6 ++++++ 1 file changed, 6 insertions(+)