summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2024-05-10 13:55:11 +0200
committerMax Krummenacher <max.krummenacher@toradex.com>2024-05-10 13:55:11 +0200
commit6a7f8999ef3c7640f8ee3cf4afa59aa71b388c80 (patch)
treea29f8cedb4d41b9f00219867f00bf07bf909e5d6
parent6ad496b724d27fdd9d3227931fab34fa34d53f53 (diff)
ti-sci-fw_git: drop bbappendkirkstone-6.x.y
Since meta-ti: 7b797da2ef43 ("ti-sci-fw: Drop k3-image-gen and only provide firmware") the tiboot3-* binaries are assembled as part of the U-Boot build process and no longer within ti-sci-fw. Thus the bbappend is now obsolete, drop it. Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
-rw-r--r--recipes-bsp/ti-sci-fw/ti-sci-fw_git.bbappend23
1 files changed, 0 insertions, 23 deletions
diff --git a/recipes-bsp/ti-sci-fw/ti-sci-fw_git.bbappend b/recipes-bsp/ti-sci-fw/ti-sci-fw_git.bbappend
deleted file mode 100644
index 8d00cce..0000000
--- a/recipes-bsp/ti-sci-fw/ti-sci-fw_git.bbappend
+++ /dev/null
@@ -1,23 +0,0 @@
-# build the k3r5 tiboot also for DFU
-EXTRA_OEMAKE_DFU = "\
- CROSS_COMPILE=${TARGET_PREFIX} SOC=${SYSFW_SOC} SOC_TYPE=${SYSFW_SUFFIX} \
- CONFIG=${SYSFW_CONFIG} SYSFW_DIR="${S}/ti-sysfw" \
- SBL="${STAGING_DIR_HOST}/boot/u-boot-spl.bin-${UBOOT_DFU_CONFIG}" \
-"
-
-do_compile:prepend:k3r5 () {
- if [ -e "${STAGING_DIR_HOST}/boot/u-boot-spl.bin-${UBOOT_DFU_CONFIG}" ]; then
- cd ${WORKDIR}/imggen/
- make ${EXTRA_OEMAKE_DFU} $@
- if [ -f "${WORKDIR}/imggen/${SYSFW_TIBOOT3}" ]; then
- mv "${WORKDIR}/imggen/${SYSFW_TIBOOT3}" "${WORKDIR}/imggen/${SYSFW_TIBOOT3}"-dfu
- fi
- make clean
- fi
-}
-
-do_deploy:append:k3r5 () {
- if [ -f "${WORKDIR}/imggen/${SYSFW_TIBOOT3}-dfu" ]; then
- install -m 644 ${WORKDIR}/imggen/${SYSFW_TIBOOT3}-dfu ${DEPLOYDIR}/
- fi
-}