All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ipumm-fw: Update to 3.00.09.01
@ 2015-09-16 13:53 Jacob Stiffler
  2015-09-16 14:06 ` Denys Dmytriyenko
  0 siblings, 1 reply; 3+ messages in thread
From: Jacob Stiffler @ 2015-09-16 13:53 UTC (permalink / raw)
  To: meta-ti

---
 recipes-bsp/ipumm-fw/ipumm-fw_3.00.09.01.bb | 35 +++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)
 create mode 100644 recipes-bsp/ipumm-fw/ipumm-fw_3.00.09.01.bb

diff --git a/recipes-bsp/ipumm-fw/ipumm-fw_3.00.09.01.bb b/recipes-bsp/ipumm-fw/ipumm-fw_3.00.09.01.bb
new file mode 100644
index 0000000..f537179
--- /dev/null
+++ b/recipes-bsp/ipumm-fw/ipumm-fw_3.00.09.01.bb
@@ -0,0 +1,35 @@
+python __anonymous() {
+    features = bb.data.getVar("MACHINE_FEATURES", d, 1)
+    if not features:
+        return
+    if "mmip" not in features:
+        raise bb.parse.SkipPackage('ipumm-fw does not apply to systems without the "mmip" flag in MACHINE_FEATURES')
+}
+
+DESCRIPTION = "Firmware for IPU for supporting Accelerated MM decode and encode"
+LICENSE = "TI-TSPA"
+
+LIC_FILES_CHKSUM = "file://MMIP-${PV}-Manifest.doc;md5=5803e271087f74d03239d868bebcc2c7"
+
+COMPATIBLE_MACHINE = "dra7xx"
+PACKAGE_ARCH = "${MACHINE_ARCH}"
+
+RDEPENDS_${PN} = " libdce"
+
+SRC_URI = "http://downloads.ti.com/infotainment/esd/jacinto6/glsdk/ipumm/3_00_09_01/exports/ipumm-dra7xx-evm-${PV}.tar.gz;protocol=http"
+
+SRC_URI[md5sum] = "bf15624e26bdef4dbb67b98ccd8b9754"
+SRC_URI[sha256sum] = "e70a38b62e3e4d11d5ce68f0980de4df5256bd597068f179e220fa5afcd065fe"
+
+S = "${WORKDIR}/ipumm-dra7xx-evm-${PV}"
+
+TARGET = "dra7-ipu2-fw.xem4"
+
+do_install() {
+        mkdir -p ${D}${base_libdir}/firmware
+        cp ${S}/firmware/${TARGET} ${D}${base_libdir}/firmware/${TARGET}
+}
+
+FILES_${PN} += "${base_libdir}/firmware/${TARGET}"
+
+PR = "r0"
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] ipumm-fw: Update to 3.00.09.01
  2015-09-16 13:53 [PATCH] ipumm-fw: Update to 3.00.09.01 Jacob Stiffler
@ 2015-09-16 14:06 ` Denys Dmytriyenko
  2015-09-16 14:08   ` Jacob Stiffler
  0 siblings, 1 reply; 3+ messages in thread
From: Denys Dmytriyenko @ 2015-09-16 14:06 UTC (permalink / raw)
  To: Jacob Stiffler; +Cc: meta-ti

Do we really need 5th version of ipumm-fw? Can we remove old ones?

On Wed, Sep 16, 2015 at 09:53:54AM -0400, Jacob Stiffler wrote:
> ---
>  recipes-bsp/ipumm-fw/ipumm-fw_3.00.09.01.bb | 35 +++++++++++++++++++++++++++++
>  1 file changed, 35 insertions(+)
>  create mode 100644 recipes-bsp/ipumm-fw/ipumm-fw_3.00.09.01.bb
> 
> diff --git a/recipes-bsp/ipumm-fw/ipumm-fw_3.00.09.01.bb b/recipes-bsp/ipumm-fw/ipumm-fw_3.00.09.01.bb
> new file mode 100644
> index 0000000..f537179
> --- /dev/null
> +++ b/recipes-bsp/ipumm-fw/ipumm-fw_3.00.09.01.bb
> @@ -0,0 +1,35 @@
> +python __anonymous() {
> +    features = bb.data.getVar("MACHINE_FEATURES", d, 1)
> +    if not features:
> +        return
> +    if "mmip" not in features:
> +        raise bb.parse.SkipPackage('ipumm-fw does not apply to systems without the "mmip" flag in MACHINE_FEATURES')
> +}
> +
> +DESCRIPTION = "Firmware for IPU for supporting Accelerated MM decode and encode"
> +LICENSE = "TI-TSPA"
> +
> +LIC_FILES_CHKSUM = "file://MMIP-${PV}-Manifest.doc;md5=5803e271087f74d03239d868bebcc2c7"
> +
> +COMPATIBLE_MACHINE = "dra7xx"
> +PACKAGE_ARCH = "${MACHINE_ARCH}"
> +
> +RDEPENDS_${PN} = " libdce"
> +
> +SRC_URI = "http://downloads.ti.com/infotainment/esd/jacinto6/glsdk/ipumm/3_00_09_01/exports/ipumm-dra7xx-evm-${PV}.tar.gz;protocol=http"
> +
> +SRC_URI[md5sum] = "bf15624e26bdef4dbb67b98ccd8b9754"
> +SRC_URI[sha256sum] = "e70a38b62e3e4d11d5ce68f0980de4df5256bd597068f179e220fa5afcd065fe"
> +
> +S = "${WORKDIR}/ipumm-dra7xx-evm-${PV}"
> +
> +TARGET = "dra7-ipu2-fw.xem4"
> +
> +do_install() {
> +        mkdir -p ${D}${base_libdir}/firmware
> +        cp ${S}/firmware/${TARGET} ${D}${base_libdir}/firmware/${TARGET}
> +}
> +
> +FILES_${PN} += "${base_libdir}/firmware/${TARGET}"
> +
> +PR = "r0"
> -- 
> 1.9.1
> 
> -- 
> _______________________________________________
> meta-ti mailing list
> meta-ti@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-ti


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] ipumm-fw: Update to 3.00.09.01
  2015-09-16 14:06 ` Denys Dmytriyenko
@ 2015-09-16 14:08   ` Jacob Stiffler
  0 siblings, 0 replies; 3+ messages in thread
From: Jacob Stiffler @ 2015-09-16 14:08 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-ti



On 9/16/2015 10:06 AM, Denys Dmytriyenko wrote:
> Do we really need 5th version of ipumm-fw? Can we remove old ones?

I was wondering the same, but since there is a history of preserving old 
versions, I was not sure.

> On Wed, Sep 16, 2015 at 09:53:54AM -0400, Jacob Stiffler wrote:
>> ---
>>   recipes-bsp/ipumm-fw/ipumm-fw_3.00.09.01.bb | 35 +++++++++++++++++++++++++++++
>>   1 file changed, 35 insertions(+)
>>   create mode 100644 recipes-bsp/ipumm-fw/ipumm-fw_3.00.09.01.bb
>>
>> diff --git a/recipes-bsp/ipumm-fw/ipumm-fw_3.00.09.01.bb b/recipes-bsp/ipumm-fw/ipumm-fw_3.00.09.01.bb
>> new file mode 100644
>> index 0000000..f537179
>> --- /dev/null
>> +++ b/recipes-bsp/ipumm-fw/ipumm-fw_3.00.09.01.bb
>> @@ -0,0 +1,35 @@
>> +python __anonymous() {
>> +    features = bb.data.getVar("MACHINE_FEATURES", d, 1)
>> +    if not features:
>> +        return
>> +    if "mmip" not in features:
>> +        raise bb.parse.SkipPackage('ipumm-fw does not apply to systems without the "mmip" flag in MACHINE_FEATURES')
>> +}
>> +
>> +DESCRIPTION = "Firmware for IPU for supporting Accelerated MM decode and encode"
>> +LICENSE = "TI-TSPA"
>> +
>> +LIC_FILES_CHKSUM = "file://MMIP-${PV}-Manifest.doc;md5=5803e271087f74d03239d868bebcc2c7"
>> +
>> +COMPATIBLE_MACHINE = "dra7xx"
>> +PACKAGE_ARCH = "${MACHINE_ARCH}"
>> +
>> +RDEPENDS_${PN} = " libdce"
>> +
>> +SRC_URI = "http://downloads.ti.com/infotainment/esd/jacinto6/glsdk/ipumm/3_00_09_01/exports/ipumm-dra7xx-evm-${PV}.tar.gz;protocol=http"
>> +
>> +SRC_URI[md5sum] = "bf15624e26bdef4dbb67b98ccd8b9754"
>> +SRC_URI[sha256sum] = "e70a38b62e3e4d11d5ce68f0980de4df5256bd597068f179e220fa5afcd065fe"
>> +
>> +S = "${WORKDIR}/ipumm-dra7xx-evm-${PV}"
>> +
>> +TARGET = "dra7-ipu2-fw.xem4"
>> +
>> +do_install() {
>> +        mkdir -p ${D}${base_libdir}/firmware
>> +        cp ${S}/firmware/${TARGET} ${D}${base_libdir}/firmware/${TARGET}
>> +}
>> +
>> +FILES_${PN} += "${base_libdir}/firmware/${TARGET}"
>> +
>> +PR = "r0"
>> -- 
>> 1.9.1
>>
>> -- 
>> _______________________________________________
>> meta-ti mailing list
>> meta-ti@yoctoproject.org
>> https://lists.yoctoproject.org/listinfo/meta-ti



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2015-09-16 14:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-16 13:53 [PATCH] ipumm-fw: Update to 3.00.09.01 Jacob Stiffler
2015-09-16 14:06 ` Denys Dmytriyenko
2015-09-16 14:08   ` Jacob Stiffler

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.