mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-04-30 00:19:08 +00:00
Changing the branch that the TI linux firmware is picked up from. As this is a branch that is used for numerous kernel versions so the version needs to be removed from the branch name. Changing ti-linux-firmware-4.1.y to ti-linux-firmware Signed-off-by: Dan Murphy <dmurphy@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
33 lines
804 B
BlitzBasic
33 lines
804 B
BlitzBasic
SUMMARY = "PRU Ethernet firmware for AM65xx"
|
|
|
|
LICENSE = "TI-TFL"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.ti;md5=b5aebf0668bdf95621259288c4a46d76"
|
|
|
|
PV = "5.1.0.7"
|
|
|
|
CLEANBROKEN = "1"
|
|
|
|
COMPATIBLE_MACHINE = "am65xx-evm"
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
SRCREV = "1e03f08e89bee6d29ffd25782f5ce45b1b4bf1e6"
|
|
BRANCH ?= "ti-linux-firmware"
|
|
|
|
SRC_URI = "git://git.ti.com/processor-firmware/ti-linux-firmware.git;protocol=git;branch=${BRANCH}"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
TARGET = "am65x-pru0-prueth-fw.elf am65x-pru1-prueth-fw.elf am65x-rtu0-prueth-fw.elf am65x-rtu1-prueth-fw.elf"
|
|
|
|
do_install() {
|
|
install -d ${D}${base_libdir}/firmware/ti-pruss
|
|
for f in ${TARGET}; do
|
|
install -m 0644 ${S}/ti-pruss/$f ${D}${base_libdir}/firmware/ti-pruss/$f
|
|
done
|
|
}
|
|
|
|
FILES_${PN} = "${base_libdir}/firmware"
|
|
|
|
INSANE_SKIP_${PN} = "arch"
|