All of lore.kernel.org
 help / color / mirror / Atom feed
From: Arnout Vandecappelle <arnout@mind.be>
To: Chris Dimich <chris.dimich@boundarydevices.com>, buildroot@buildroot.org
Cc: Refik Tuzakli <tuzakli.refik@gmail.com>,
	Samuel Martin <s.martin49@gmail.com>,
	Thomas Petazzoni <thomas.petazzoni@bootlin.com>,
	Gary Bisson <bisson.gary@gmail.com>
Subject: Re: [Buildroot] [PATCH 06/12] package/freescale-imx/imx-vpu-hantro-vc: add package
Date: Wed, 13 Oct 2021 21:16:44 +0200	[thread overview]
Message-ID: <f567bf06-351b-a168-d62a-99f41fec5361@mind.be> (raw)
In-Reply-To: <2ccce449-d453-f50c-7310-c898b5ab5f0b@mind.be>


On 13/10/2021 21:07, Arnout Vandecappelle wrote:
>
>
> On 06/10/2021 22:41, Chris Dimich wrote:
>> i.MX VC8000E Encoder library. Intended for the i.MX 8M Plus processor.
>>
>> Signed-off-by: Chris Dimich <chris.dimich@boundarydevices.com>
>
>  Applied to master, thanks.

  I forgot: please add yourself to the DEVELOPERS file [1] for this package. 
This way, you'll get an e-mail if the package fails in the autobuilders, or when 
a new version is released if the package is registered on release-monitoring.org.


  Regards,
  Arnout

[1] https://buildroot.org/downloads/manual/manual.html#DEVELOPERS

>
>  Regards,
>  Arnout
>
>> ---
>>   package/freescale-imx/Config.in               |  1 +
>>   .../freescale-imx/imx-vpu-hantro-vc/Config.in | 13 ++++++++++
>>   .../imx-vpu-hantro-vc/imx-vpu-hantro-vc.hash  |  4 +++
>>   .../imx-vpu-hantro-vc/imx-vpu-hantro-vc.mk    | 25 +++++++++++++++++++
>>   4 files changed, 43 insertions(+)
>>   create mode 100644 package/freescale-imx/imx-vpu-hantro-vc/Config.in
>>   create mode 100644 
>> package/freescale-imx/imx-vpu-hantro-vc/imx-vpu-hantro-vc.hash
>>   create mode 100644 
>> package/freescale-imx/imx-vpu-hantro-vc/imx-vpu-hantro-vc.mk
>>
>> diff --git a/package/freescale-imx/Config.in b/package/freescale-imx/Config.in
>> index bedd05a471..4a4237fb42 100644
>> --- a/package/freescale-imx/Config.in
>> +++ b/package/freescale-imx/Config.in
>> @@ -115,6 +115,7 @@ source "package/freescale-imx/imx-vpuwrap/Config.in"
>>   source "package/freescale-imx/firmware-imx/Config.in"
>>   source "package/freescale-imx/imx-sc-firmware/Config.in"
>>   source "package/freescale-imx/imx-seco/Config.in"
>> +source "package/freescale-imx/imx-vpu-hantro-vc/Config.in"
>>   if (BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX51 || 
>> BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX53)
>>   source "package/freescale-imx/gpu-amd-bin-mx51/Config.in"
>>   source "package/freescale-imx/libz160/Config.in"
>> diff --git a/package/freescale-imx/imx-vpu-hantro-vc/Config.in 
>> b/package/freescale-imx/imx-vpu-hantro-vc/Config.in
>> new file mode 100644
>> index 0000000000..9ae139550a
>> --- /dev/null
>> +++ b/package/freescale-imx/imx-vpu-hantro-vc/Config.in
>> @@ -0,0 +1,13 @@
>> +comment "imx-vpu-hantro-vc needs an i.MX-specific Linux kernel to be built"
>> +    depends on !BR2_LINUX_KERNEL
>> +
>> +comment "imx-vpu-hantro-vc needs an i.MX platform with Hantro VPU"
>> +    depends on BR2_LINUX_KERNEL
>> +    depends on !BR2_PACKAGE_FREESCALE_IMX_HAS_VPU_HANTRO
>> +
>> +config BR2_PACKAGE_IMX_VPU_HANTRO_VC
>> +    bool "imx-vpu-hantro-vc"
>> +    depends on BR2_LINUX_KERNEL
>> +    depends on BR2_PACKAGE_FREESCALE_IMX_HAS_VPU_HANTRO
>> +    help
>> +      i.MX VC8000E Encoder library. Intended for the i.MX 8M Plus processor.
>> diff --git a/package/freescale-imx/imx-vpu-hantro-vc/imx-vpu-hantro-vc.hash 
>> b/package/freescale-imx/imx-vpu-hantro-vc/imx-vpu-hantro-vc.hash
>> new file mode 100644
>> index 0000000000..aadf5b121f
>> --- /dev/null
>> +++ b/package/freescale-imx/imx-vpu-hantro-vc/imx-vpu-hantro-vc.hash
>> @@ -0,0 +1,4 @@
>> +# Locally computed:
>> +sha256 d5efae484c4271c098286d007590d6bf40c272d4f35702ff65625f2362715ab3 
>> imx-vpu-hantro-vc-1.4.0.bin
>> +sha256 ea58636bf34f589048fcd46e38497c47229fde8498df086ff5fb52f9ef8e15ee COPYING
>> +sha256 50099e283cfd307f84f159aeb1a6f462351320273dbcdb80d7f2c9db0494b71c EULA
>> diff --git a/package/freescale-imx/imx-vpu-hantro-vc/imx-vpu-hantro-vc.mk 
>> b/package/freescale-imx/imx-vpu-hantro-vc/imx-vpu-hantro-vc.mk
>> new file mode 100644
>> index 0000000000..b07e116674
>> --- /dev/null
>> +++ b/package/freescale-imx/imx-vpu-hantro-vc/imx-vpu-hantro-vc.mk
>> @@ -0,0 +1,25 @@
>> +################################################################################ 
>>
>> +#
>> +# imx-vpu-hantro-vc
>> +#
>> +################################################################################ 
>>
>> +
>> +IMX_VPU_HANTRO_VC_VERSION = 1.4.0
>> +IMX_VPU_HANTRO_VC_SITE = $(FREESCALE_IMX_SITE)
>> +IMX_VPU_HANTRO_VC_SOURCE = imx-vpu-hantro-vc-$(IMX_VPU_HANTRO_VC_VERSION).bin
>> +IMX_VPU_HANTRO_VC_DEPENDENCIES = linux
>> +
>> +IMX_VPU_HANTRO_VC_LICENSE = NXP Semiconductor Software License Agreement
>> +IMX_VPU_HANTRO_VC_LICENSE_FILES = EULA COPYING
>> +IMX_VPU_HANTRO_VC_REDISTRIBUTE = NO
>> +
>> +define IMX_VPU_HANTRO_VC_EXTRACT_CMDS
>> +    $(call 
>> FREESCALE_IMX_EXTRACT_HELPER,$(IMX_VPU_HANTRO_VC_DL_DIR)/$(IMX_VPU_HANTRO_VC_SOURCE))
>> +endef
>> +
>> +define IMX_VPU_HANTRO_VC_INSTALL_TARGET_CMDS
>> +    $(INSTALL) -D -m 0755 $(@D)/usr/lib/libhantro_vc8000e.so 
>> $(TARGET_DIR)/usr/lib/libhantro_vc8000e.so
>> +    $(INSTALL) -D -m 0755 $(@D)/usr/lib/libhantro_vc8000e.so.1 
>> $(TARGET_DIR)/usr/lib/libhantro_vc8000e.so.1
>> +endef
>> +
>> +$(eval $(generic-package))
>>
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

  reply	other threads:[~2021-10-13 19:16 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-06 20:41 [Buildroot] [PATCH 01/12] package/freescale-imx/kernel-module-imx-gpu-viv: bump to version 6.4.3.p2.0 Chris Dimich
2021-10-06 20:41 ` [Buildroot] [PATCH 02/12] package/freescale-imx/imx-gpu-viv: " Chris Dimich
2021-10-13 18:58   ` Arnout Vandecappelle
2021-10-06 20:41 ` [Buildroot] [PATCH 03/12] package/freescale-imx/imx-vpu-hantro: bump version to 1.22.0 Chris Dimich
2021-10-13 19:03   ` Arnout Vandecappelle
2021-10-06 20:41 ` [Buildroot] [PATCH 04/12] package/freescale-imx/imx-gpu-g2d: bump version to 6.4.3.p2.0 Chris Dimich
2021-10-13 19:04   ` Arnout Vandecappelle
2021-10-06 20:41 ` [Buildroot] [PATCH 05/12] package/freescale-imx/firmware-imx: bump version to 8.12 Chris Dimich
2021-10-13 19:04   ` Arnout Vandecappelle
2021-10-06 20:41 ` [Buildroot] [PATCH 06/12] package/freescale-imx/imx-vpu-hantro-vc: add package Chris Dimich
2021-10-13 19:07   ` Arnout Vandecappelle
2021-10-13 19:16     ` Arnout Vandecappelle [this message]
2021-10-06 20:41 ` [Buildroot] [PATCH 07/12] package/freescale-imx/isp-vvcam-module: " Chris Dimich
2021-10-13 19:15   ` Arnout Vandecappelle
2021-10-06 20:41 ` [Buildroot] [PATCH 08/12] package/freescale-imx/isp-imx: " Chris Dimich
2021-10-13 19:37   ` Arnout Vandecappelle
2021-10-06 20:41 ` [Buildroot] [PATCH 09/12] package/freescale-imx/basler-camera: " Chris Dimich
2021-10-06 20:41 ` [Buildroot] [PATCH 10/12] configs/nitrogen*: update kernel to 5.10.x_2.0.0 Chris Dimich
2021-10-13 19:54   ` Arnout Vandecappelle
2021-10-06 20:41 ` [Buildroot] [PATCH 11/12] configs/nitrogen*: bump u-boot revision Chris Dimich
2021-10-13 19:54   ` Arnout Vandecappelle
2021-10-06 20:41 ` [Buildroot] [PATCH 12/12] configs/nitrogen8mp_defconfig: modify device trees Chris Dimich
2021-10-15 19:28   ` Arnout Vandecappelle
2021-10-13 18:57 ` [Buildroot] [PATCH 01/12] package/freescale-imx/kernel-module-imx-gpu-viv: bump to version 6.4.3.p2.0 Arnout Vandecappelle

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=f567bf06-351b-a168-d62a-99f41fec5361@mind.be \
    --to=arnout@mind.be \
    --cc=bisson.gary@gmail.com \
    --cc=buildroot@buildroot.org \
    --cc=chris.dimich@boundarydevices.com \
    --cc=s.martin49@gmail.com \
    --cc=thomas.petazzoni@bootlin.com \
    --cc=tuzakli.refik@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.