diff options
| author | Huang, David <d-huang@ti.com> | 2019-06-22 14:37:36 +0000 |
|---|---|---|
| committer | Denys Dmytriyenko <denys@ti.com> | 2019-06-25 14:58:33 +0000 |
| commit | b8582b00151fcefdd4ae11399617a658ae5952d0 (patch) | |
| tree | 26ec7f199ddc1bca9633a4cbada7eda0ec76a101 /recipes-bsp | |
| parent | 0d9910c1710d9d4b2dd986403824ae05b6289e63 (diff) | |
| download | meta-ti-b8582b00151fcefdd4ae11399617a658ae5952d0.tar.gz | |
vxd-dec-fw: Add the recipe for vxd-dec-fw
Add the firmware packaging recipe for the video decoder
for J721E devices.
Signed-off-by: Angela Stegmaier <angelabaker@ti.com>
Signed-off-by: David Huang <d-huang@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-bsp')
| -rw-r--r-- | recipes-bsp/ti-img-encode-decode/vxd-dec-fw_git.bb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/recipes-bsp/ti-img-encode-decode/vxd-dec-fw_git.bb b/recipes-bsp/ti-img-encode-decode/vxd-dec-fw_git.bb new file mode 100644 index 00000000..2812fa2c --- /dev/null +++ b/recipes-bsp/ti-img-encode-decode/vxd-dec-fw_git.bb | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | SUMMARY = "Video Decoding Firmware Packaging recipe" | ||
| 2 | LICENSE = "TI-TFL" | ||
| 3 | LIC_FILES_CHKSUM = "file://LICENSE;md5=84ca7278930db001870686ad997d6bb1" | ||
| 4 | |||
| 5 | BRANCH = "master" | ||
| 6 | SRCREV = "0acbf1d0a7c7eaca0ef14c1a30ce313ea82147e5" | ||
| 7 | |||
| 8 | SRC_URI = "git://git.ti.com/jacinto7_multimedia/ti-img-encode-decode.git;protocol=git;branch=${BRANCH}" | ||
| 9 | |||
| 10 | S = "${WORKDIR}/git" | ||
| 11 | |||
| 12 | PV = "1.0-git${SRCPV}" | ||
| 13 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
| 14 | |||
| 15 | VXD_FW_DIR = "${S}/decoder/firmware/" | ||
| 16 | |||
| 17 | # make sure that lib/firmware, and all its contents are part of the package | ||
| 18 | FILES_${PN} += "${base_libdir}/firmware" | ||
| 19 | |||
| 20 | do_install() { | ||
| 21 | install -d ${D}${base_libdir}/firmware | ||
| 22 | install -m 0755 ${VXD_FW_DIR}/pvdec_full_bin.fw ${D}${base_libdir}/firmware | ||
| 23 | } | ||
| 24 | |||
| 25 | # This is used to prevent the build system to strip the executables | ||
| 26 | INHIBIT_PACKAGE_STRIP = "1" | ||
| 27 | # This is used to prevent the build system to split the debug info in a separate file | ||
| 28 | INHIBIT_PACKAGE_DEBUG_SPLIT = "1" | ||
| 29 | # As it likely to be a different arch from the Yocto build, disable checking by adding "arch" to INSANE_SKIP | ||
| 30 | INSANE_SKIP_${PN} += "arch" | ||
| 31 | |||
| 32 | # we don't want to configure and build the source code | ||
| 33 | do_compile[noexec] = "1" | ||
| 34 | do_configure[noexec] = "1" | ||
