- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
30 lines
720 B
BlitzBasic
30 lines
720 B
BlitzBasic
SUMMARY = "PRU Switch firmware"
|
|
|
|
require recipes-bsp/ti-linux-fw/ti-linux-fw.inc
|
|
|
|
PR = "${INC_PR}.0"
|
|
|
|
COMPATIBLE_MACHINE = "ti33x|ti43x|am57xx|am65xx|am64xx"
|
|
|
|
TARGET = " \
|
|
am335x-pru0-prusw-fw.elf \
|
|
am335x-pru1-prusw-fw.elf \
|
|
am437x-pru0-prusw-fw.elf \
|
|
am437x-pru1-prusw-fw.elf \
|
|
am57xx-pru0-prusw-fw.elf \
|
|
am57xx-pru1-prusw-fw.elf \
|
|
am65x-sr2-pru0-prusw-fw.elf \
|
|
am65x-sr2-pru1-prusw-fw.elf \
|
|
am65x-sr2-rtu0-prusw-fw.elf \
|
|
am65x-sr2-rtu1-prusw-fw.elf \
|
|
am65x-sr2-txpru0-prusw-fw.elf \
|
|
am65x-sr2-txpru1-prusw-fw.elf \
|
|
"
|
|
|
|
do_install() {
|
|
install -d ${D}${nonarch_base_libdir}/firmware/ti-pruss
|
|
for f in ${TARGET}; do
|
|
install -m 0644 ${S}/ti-pruss/$f ${D}${nonarch_base_libdir}/firmware/ti-pruss/$f
|
|
done
|
|
}
|