diff options
author | Angela Stegmaier <angelabaker@ti.com> | 2019-09-12 02:08:51 +0000 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2019-09-12 22:20:48 +0000 |
commit | 44346284a41414b6f9ff94bc7f74a85842de1697 (patch) | |
tree | b912b74ef3777a2250dd81dc2e878f19fee6971d /recipes-bsp | |
parent | 234fdf48d8c06bdcd403e0ee7565cb5fa1923b9d (diff) | |
download | meta-ti-44346284a41414b6f9ff94bc7f74a85842de1697.tar.gz |
ti-img-encode-decode: Update SRCREV and build encoder
Pick up latest version of ti-img-encode-decode which
includes updates for decoder and addition of encoder.
Also update the recipe to build the encoder module.
Signed-off-by: Angela Stegmaier <angelabaker@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-bsp')
-rw-r--r-- | recipes-bsp/ti-img-encode-decode/ti-img-encode-decode_1.0.0.bb | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/recipes-bsp/ti-img-encode-decode/ti-img-encode-decode_1.0.0.bb b/recipes-bsp/ti-img-encode-decode/ti-img-encode-decode_1.0.0.bb index c684103e..0b84301e 100644 --- a/recipes-bsp/ti-img-encode-decode/ti-img-encode-decode_1.0.0.bb +++ b/recipes-bsp/ti-img-encode-decode/ti-img-encode-decode_1.0.0.bb | |||
@@ -1,15 +1,15 @@ | |||
1 | SUMMARY = "Kernel drivers for the IMG VXE384 MP2 and D5520 encoder/decoder found in TI SoCs" | 1 | SUMMARY = "Kernel drivers for the IMG VXE384 MP2 and D5520 encoder/decoder found in TI SoCs" |
2 | LICENSE = "GPLv2" | 2 | LICENSE = "GPLv2" |
3 | LIC_FILES_CHKSUM = "file://common/dq.c;beginline=1;endline=16;md5=e015e28ff5e88576dab9fdf641e3dbfe" | 3 | LIC_FILES_CHKSUM = "file://driver/common/dq.c;beginline=1;endline=16;md5=e015e28ff5e88576dab9fdf641e3dbfe" |
4 | 4 | ||
5 | inherit module | 5 | inherit module |
6 | 6 | ||
7 | MACHINE_KERNEL_PR_append = "b" | 7 | MACHINE_KERNEL_PR_append = "c" |
8 | PR = "${MACHINE_KERNEL_PR}" | 8 | PR = "${MACHINE_KERNEL_PR}" |
9 | 9 | ||
10 | COMPATIBLE_MACHINE = "j7-evm" | 10 | COMPATIBLE_MACHINE = "j7-evm" |
11 | 11 | ||
12 | SRCREV = "1f85a7fb3b78c82b44038aaf29bfdb229aeb6bc8" | 12 | SRCREV = "c7657d2ead0ca211ab307dd2f403621de5b3e80d" |
13 | 13 | ||
14 | EXTRA_OEMAKE = "KPATH=${STAGING_KERNEL_DIR} KCONF=${STAGING_KERNEL_BUILDDIR}" | 14 | EXTRA_OEMAKE = "KPATH=${STAGING_KERNEL_DIR} KCONF=${STAGING_KERNEL_BUILDDIR}" |
15 | TARGET_CC_ARCH += "${LDFLAGS}" | 15 | TARGET_CC_ARCH += "${LDFLAGS}" |
@@ -19,7 +19,13 @@ SRC_URI = "git://git.ti.com/jacinto7_multimedia/ti-img-encode-decode.git;protoco | |||
19 | 19 | ||
20 | S = "${WORKDIR}/git" | 20 | S = "${WORKDIR}/git" |
21 | 21 | ||
22 | do_compile() { | ||
23 | oe_runmake all -C ${S}/linux/decoder | ||
24 | oe_runmake all -C ${S}/linux/encoder | ||
25 | } | ||
26 | |||
22 | do_install() { | 27 | do_install() { |
23 | install -d ${D}/${base_libdir}/modules/${KERNEL_VERSION}/extra | 28 | install -d ${D}/${base_libdir}/modules/${KERNEL_VERSION}/extra |
24 | install -m 644 ${S}/vxd-dec.ko ${D}/${base_libdir}/modules/${KERNEL_VERSION}/extra | 29 | install -m 644 ${S}/linux/decoder/vxd-dec.ko ${D}/${base_libdir}/modules/${KERNEL_VERSION}/extra |
30 | install -m 644 ${S}/linux/encoder/vxe-enc.ko ${D}/${base_libdir}/modules/${KERNEL_VERSION}/extra | ||
25 | } | 31 | } |