* [dunfell/master PATCHv2] vxd-dec-fw: Add the recipe for vxd-dec-fw
@ 2021-11-18 0:30 praneeth
2021-11-18 2:56 ` Denys Dmytriyenko
0 siblings, 1 reply; 3+ messages in thread
From: praneeth @ 2021-11-18 0:30 UTC (permalink / raw)
To: Praneeth Bajjuri, Yogesh Siraswar, Sidraya Jayagond,
Denys Dmytriyenko
Cc: denis, meta-ti, prashanth.ka
From: Praneeth Bajjuri <praneeth@ti.com>
Add the firmware packaging recipe for the video decoder
for j721e.
Signed-off-by: Praneeth Bajjuri <praneeth@ti.com>
---
Changes in v2: Update subject dunfell/master
.../ti-img-encode-decode/vxd-dec-fw_git.bb | 24 +++++++++++++++++++
recipes-bsp/ti-linux-fw/ti-linux-fw.inc | 1 +
2 files changed, 25 insertions(+)
create mode 100644 recipes-bsp/ti-img-encode-decode/vxd-dec-fw_git.bb
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..55673b53
--- /dev/null
+++ b/recipes-bsp/ti-img-encode-decode/vxd-dec-fw_git.bb
@@ -0,0 +1,24 @@
+SUMMARY = "Video Decoding Firmware Packaging recipe"
+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 = "j7"
+
+PACKAGE_ARCH = "${MACHINE_ARCH}"
+
+S = "${WORKDIR}/git"
+TARGET = "pvdec_full_bin.fw"
+
+do_install() {
+ install -d ${D}${base_libdir}/firmware/ti-img
+ install -m 0644 ${S}/ti-img/${TARGET} ${D}${base_libdir}/firmware/ti-img/${TARGET}
+}
+
+FILES_${PN} = "${base_libdir}/firmware"
diff --git a/recipes-bsp/ti-linux-fw/ti-linux-fw.inc b/recipes-bsp/ti-linux-fw/ti-linux-fw.inc
index c59120b8..ebf133be 100644
--- a/recipes-bsp/ti-linux-fw/ti-linux-fw.inc
+++ b/recipes-bsp/ti-linux-fw/ti-linux-fw.inc
@@ -16,6 +16,7 @@ PRUETH_FW_AM65X_VERSION = "08.00.00.20"
PRUETH_FW_AM65X_SR2_VERSION = "02.02.09.06"
GOODIX_FW_VERSION = "1.0.0.0"
CADENCE_MHDP_FW_VERSION = "1.2.17"
+IMG_DEC_FW_VERSION = "1.0"
TI_LINUX_FW_SRCREV ?= "95232a584175a8ac872adf477b2dbb9ca68ba063"
SRCREV = "${TI_LINUX_FW_SRCREV}"
--
2.17.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [dunfell/master PATCHv2] vxd-dec-fw: Add the recipe for vxd-dec-fw
2021-11-18 0:30 [dunfell/master PATCHv2] vxd-dec-fw: Add the recipe for vxd-dec-fw praneeth
@ 2021-11-18 2:56 ` Denys Dmytriyenko
2021-11-18 19:51 ` Yogesh Siraswar
0 siblings, 1 reply; 3+ messages in thread
From: Denys Dmytriyenko @ 2021-11-18 2:56 UTC (permalink / raw)
To: praneeth
Cc: Yogesh Siraswar, Sidraya Jayagond, Denys Dmytriyenko, meta-ti,
prashanth.ka
On Wed, Nov 17, 2021 at 06:30:05PM -0600, praneeth@ti.com wrote:
> From: Praneeth Bajjuri <praneeth@ti.com>
>
> Add the firmware packaging recipe for the video decoder
> for j721e.
>
> Signed-off-by: Praneeth Bajjuri <praneeth@ti.com>
> ---
> Changes in v2: Update subject dunfell/master
>
> .../ti-img-encode-decode/vxd-dec-fw_git.bb | 24 +++++++++++++++++++
> recipes-bsp/ti-linux-fw/ti-linux-fw.inc | 1 +
> 2 files changed, 25 insertions(+)
> create mode 100644 recipes-bsp/ti-img-encode-decode/vxd-dec-fw_git.bb
>
> 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..55673b53
> --- /dev/null
> +++ b/recipes-bsp/ti-img-encode-decode/vxd-dec-fw_git.bb
> @@ -0,0 +1,24 @@
> +SUMMARY = "Video Decoding Firmware Packaging recipe"
Well, the SUMMARY and the DESCRIPTION are for the resulting ipk/deb/rpm
package, not the recipe.
E.g. on Ubuntu - the last 2 lines are the SUMMARY and DESCRIPTION accordingly:
$ dpkg -s linux-firmware
Package: linux-firmware
Status: install ok installed
Priority: optional
Section: misc
Installed-Size: 233791
Maintainer: Ubuntu Kernel Team <kernel-team@lists.ubuntu.com>
Architecture: all
Multi-Arch: foreign
Version: 1.157.23
Replaces: atmel-firmware, linux-firmware-snapdragon (<= 1.2-0ubuntu1), linux-restricted-common
Provides: atmel-firmware
Breaks: linux-firmware-snapdragon (<= 1.2-0ubuntu1)
Conflicts: atmel-firmware
Description: Firmware for Linux kernel drivers
This package provides firmware used by Linux kernel drivers.
> +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 = "j7"
> +
> +PACKAGE_ARCH = "${MACHINE_ARCH}"
> +
> +S = "${WORKDIR}/git"
> +TARGET = "pvdec_full_bin.fw"
> +
> +do_install() {
> + install -d ${D}${base_libdir}/firmware/ti-img
> + install -m 0644 ${S}/ti-img/${TARGET} ${D}${base_libdir}/firmware/ti-img/${TARGET}
> +}
> +
> +FILES_${PN} = "${base_libdir}/firmware"
> diff --git a/recipes-bsp/ti-linux-fw/ti-linux-fw.inc b/recipes-bsp/ti-linux-fw/ti-linux-fw.inc
> index c59120b8..ebf133be 100644
> --- a/recipes-bsp/ti-linux-fw/ti-linux-fw.inc
> +++ b/recipes-bsp/ti-linux-fw/ti-linux-fw.inc
> @@ -16,6 +16,7 @@ PRUETH_FW_AM65X_VERSION = "08.00.00.20"
> PRUETH_FW_AM65X_SR2_VERSION = "02.02.09.06"
> GOODIX_FW_VERSION = "1.0.0.0"
> CADENCE_MHDP_FW_VERSION = "1.2.17"
> +IMG_DEC_FW_VERSION = "1.0"
>
> TI_LINUX_FW_SRCREV ?= "95232a584175a8ac872adf477b2dbb9ca68ba063"
> SRCREV = "${TI_LINUX_FW_SRCREV}"
> --
> 2.17.1
>
--
Regards,
Denys Dmytriyenko <denis@denix.org>
PGP: 0x420902729A92C964 - https://denix.org/0x420902729A92C964
Fingerprint: 25FC E4A5 8A72 2F69 1186 6D76 4209 0272 9A92 C964
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [dunfell/master PATCHv2] vxd-dec-fw: Add the recipe for vxd-dec-fw
2021-11-18 2:56 ` Denys Dmytriyenko
@ 2021-11-18 19:51 ` Yogesh Siraswar
0 siblings, 0 replies; 3+ messages in thread
From: Yogesh Siraswar @ 2021-11-18 19:51 UTC (permalink / raw)
To: Denys Dmytriyenko, praneeth
Cc: Sidraya Jayagond, Denys Dmytriyenko, meta-ti, prashanth.ka
I have tried to address your comment in v3.
On 11/17/2021 8:56 PM, Denys Dmytriyenko wrote:
> On Wed, Nov 17, 2021 at 06:30:05PM -0600, praneeth@ti.com wrote:
>> From: Praneeth Bajjuri <praneeth@ti.com>
>>
>> Add the firmware packaging recipe for the video decoder
>> for j721e.
>>
>> Signed-off-by: Praneeth Bajjuri <praneeth@ti.com>
>> ---
>> Changes in v2: Update subject dunfell/master
>>
>> .../ti-img-encode-decode/vxd-dec-fw_git.bb | 24 +++++++++++++++++++
>> recipes-bsp/ti-linux-fw/ti-linux-fw.inc | 1 +
>> 2 files changed, 25 insertions(+)
>> create mode 100644 recipes-bsp/ti-img-encode-decode/vxd-dec-fw_git.bb
>>
>> 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..55673b53
>> --- /dev/null
>> +++ b/recipes-bsp/ti-img-encode-decode/vxd-dec-fw_git.bb
>> @@ -0,0 +1,24 @@
>> +SUMMARY = "Video Decoding Firmware Packaging recipe"
>
> Well, the SUMMARY and the DESCRIPTION are for the resulting ipk/deb/rpm
> package, not the recipe.
>
> E.g. on Ubuntu - the last 2 lines are the SUMMARY and DESCRIPTION accordingly:
>
> $ dpkg -s linux-firmware
> Package: linux-firmware
> Status: install ok installed
> Priority: optional
> Section: misc
> Installed-Size: 233791
> Maintainer: Ubuntu Kernel Team <kernel-team@lists.ubuntu.com>
> Architecture: all
> Multi-Arch: foreign
> Version: 1.157.23
> Replaces: atmel-firmware, linux-firmware-snapdragon (<= 1.2-0ubuntu1), linux-restricted-common
> Provides: atmel-firmware
> Breaks: linux-firmware-snapdragon (<= 1.2-0ubuntu1)
> Conflicts: atmel-firmware
> Description: Firmware for Linux kernel drivers
> This package provides firmware used by Linux kernel drivers.
>
>
>
>> +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 = "j7"
>> +
>> +PACKAGE_ARCH = "${MACHINE_ARCH}"
>> +
>> +S = "${WORKDIR}/git"
>> +TARGET = "pvdec_full_bin.fw"
>> +
>> +do_install() {
>> + install -d ${D}${base_libdir}/firmware/ti-img
>> + install -m 0644 ${S}/ti-img/${TARGET} ${D}${base_libdir}/firmware/ti-img/${TARGET}
>> +}
>> +
>> +FILES_${PN} = "${base_libdir}/firmware"
>> diff --git a/recipes-bsp/ti-linux-fw/ti-linux-fw.inc b/recipes-bsp/ti-linux-fw/ti-linux-fw.inc
>> index c59120b8..ebf133be 100644
>> --- a/recipes-bsp/ti-linux-fw/ti-linux-fw.inc
>> +++ b/recipes-bsp/ti-linux-fw/ti-linux-fw.inc
>> @@ -16,6 +16,7 @@ PRUETH_FW_AM65X_VERSION = "08.00.00.20"
>> PRUETH_FW_AM65X_SR2_VERSION = "02.02.09.06"
>> GOODIX_FW_VERSION = "1.0.0.0"
>> CADENCE_MHDP_FW_VERSION = "1.2.17"
>> +IMG_DEC_FW_VERSION = "1.0"
>>
>> TI_LINUX_FW_SRCREV ?= "95232a584175a8ac872adf477b2dbb9ca68ba063"
>> SRCREV = "${TI_LINUX_FW_SRCREV}"
>> --
>> 2.17.1
>>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-11-18 19:51 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-18 0:30 [dunfell/master PATCHv2] vxd-dec-fw: Add the recipe for vxd-dec-fw praneeth
2021-11-18 2:56 ` Denys Dmytriyenko
2021-11-18 19:51 ` Yogesh Siraswar
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.