mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-04-30 00:19:08 +00:00
Now that we have SoC names, we can avoid adding features based on the board name. We expect folks to create their own boards based on these SoCs, and so using the TI made EVM board name everywhere adds extra churn when adding a new board. Plus it is more correct for most of these features as they depend on the SoC, not on the EVM board. One other thing we do here is to not use the generic "j7" name, the current and future J7 devices are far to feature diverse to group at this level. Grouping like that will lead to the wrong things getting enabled as new J7 SoCs are added. Signed-off-by: Andrew Davis <afd@ti.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
25 lines
581 B
BlitzBasic
25 lines
581 B
BlitzBasic
SUMMARY = "Video Decoding Firmware"
|
|
LICENSE = "TI-IMG"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.ti-img;md5=84ca7278930db001870686ad997d6bb1"
|
|
|
|
require recipes-bsp/ti-linux-fw/ti-linux-fw.inc
|
|
|
|
PV = "${IMG_DEC_FW_VERSION}"
|
|
PR = "${INC_PR}.0"
|
|
|
|
CLEANBROKEN = "1"
|
|
|
|
COMPATIBLE_MACHINE = "j721e"
|
|
|
|
PACKAGE_ARCH = "${MACHINE_ARCH}"
|
|
|
|
S = "${WORKDIR}/git"
|
|
TARGET = "pvdec_full_bin.fw"
|
|
|
|
do_install() {
|
|
install -d ${D}${nonarch_base_libdir}/firmware
|
|
install -m 0644 ${S}/ti-img/${TARGET} ${D}${nonarch_base_libdir}/firmware/${TARGET}
|
|
}
|
|
|
|
FILES:${PN} = "${nonarch_base_libdir}/firmware"
|