| Message ID | 20251201184050.1371702-1-reatmon@ti.com |
|---|---|
| State | Accepted |
| Delegated to: | Ryan Eatmon |
| Headers | show |
| Series | [meta-arago,master] bpftool-native: Adapt bbappend to upstream change | expand |
meta-arago / na / 20251201184050.1371702-1-reatmon PRC Results: PASS ========================================================= check-yocto-patches: PASS ========================================================= Patches ---------------------------------------- All patches passed ========================================================= apply-yocto-patch: PASS ========================================================= master ===================== Summary: - Patch Series: [meta-arago][master][PATCH] bpftool-native: Adapt bbappend to upstream change - Submitter: From: Ryan Eatmon <reatmon@ti.com> - Date: Date: Mon, 1 Dec 2025 12:40:49 -0600 - Num Patches: 1 - Mailing List (public inbox) Commit SHA: 96b94704a25f6577360ac11ce327e3a4cfdb2189 Applied to: - Repository: lcpd-prc-meta-arago - Base Branch: master-next - Commit Author: LCPD Automation Script <lcpdbld@list.ti.com> - Commit Subject: CI/CD Auto-Merger: cicd.master.202512010100 - Commit SHA: 057c703828c6d677be5d6e820c49d6682e4c2a76 Patches ---------------------------------------- All patches applied ========================================================= check-yocto-repo: PASS ========================================================= master ===================== PASS ========================================================= yocto-check-layers: PASS ========================================================= master - PASS ===================== All checks passed
diff --git a/meta-arago-test/recipes-devtools/bpftool/bpftool-native-ti.inc b/meta-arago-test/recipes-devtools/bpftool/bpftool-native-ti.inc new file mode 100644 index 00000000..213a0f4e --- /dev/null +++ b/meta-arago-test/recipes-devtools/bpftool/bpftool-native-ti.inc @@ -0,0 +1 @@ +DEBUG_PREFIX_MAP:remove = "-fcanon-prefix-map" diff --git a/meta-arago-test/recipes-devtools/bpftool/bpftool-native_%.bbappend b/meta-arago-test/recipes-devtools/bpftool/bpftool-native_%.bbappend new file mode 100644 index 00000000..3d084dcc --- /dev/null +++ b/meta-arago-test/recipes-devtools/bpftool/bpftool-native_%.bbappend @@ -0,0 +1,4 @@ +BPFTOOL_NATIVE_TI = "" +BPFTOOL_NATIVE_TI:ti-soc = "bpftool-native-ti.inc" + +require ${BPFTOOL_NATIVE_TI} diff --git a/meta-arago-test/recipes-devtools/bpftool/bpftool-ti.inc b/meta-arago-test/recipes-devtools/bpftool/bpftool-ti.inc deleted file mode 100644 index 0310ebaa..00000000 --- a/meta-arago-test/recipes-devtools/bpftool/bpftool-ti.inc +++ /dev/null @@ -1 +0,0 @@ -DEBUG_PREFIX_MAP:remove:class-native = "-fcanon-prefix-map" diff --git a/meta-arago-test/recipes-devtools/bpftool/bpftool.bbappend b/meta-arago-test/recipes-devtools/bpftool/bpftool.bbappend deleted file mode 100644 index b2dfa9d5..00000000 --- a/meta-arago-test/recipes-devtools/bpftool/bpftool.bbappend +++ /dev/null @@ -1,4 +0,0 @@ -BPFTOOL_TI = "" -BPFTOOL_TI:ti-soc = "bpftool-ti.inc" - -require ${BPFTOOL_TI}
meta-openembedded broke the bpftool-native package out into a new recipe [1]. Our bpftool patch was changing something in bpftool-native, so we need to rename our bbappend to match. [1] https://git.openembedded.org/meta-openembedded/commit/?id=6d3a6503720b10b0edd6e70ee3595032e0aa975b Signed-off-by: Ryan Eatmon <reatmon@ti.com> --- .../recipes-devtools/bpftool/bpftool-native-ti.inc | 1 + .../recipes-devtools/bpftool/bpftool-native_%.bbappend | 4 ++++ meta-arago-test/recipes-devtools/bpftool/bpftool-ti.inc | 1 - meta-arago-test/recipes-devtools/bpftool/bpftool.bbappend | 4 ---- 4 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 meta-arago-test/recipes-devtools/bpftool/bpftool-native-ti.inc create mode 100644 meta-arago-test/recipes-devtools/bpftool/bpftool-native_%.bbappend delete mode 100644 meta-arago-test/recipes-devtools/bpftool/bpftool-ti.inc delete mode 100644 meta-arago-test/recipes-devtools/bpftool/bpftool.bbappend