All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] imx-vpu: remove kernel dependency
@ 2015-09-02 16:54 Baruch Siach
  2015-09-02 16:54 ` [Buildroot] [PATCH 2/2] imx-vpu: bump to verson 5.4.31 Baruch Siach
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Baruch Siach @ 2015-09-02 16:54 UTC (permalink / raw)
  To: buildroot

The imx-vpu package builds just fine without any special kernel header.

Cc: Gary Bisson <gary.bisson@boundarydevices.com>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/freescale-imx/imx-vpu/Config.in  | 5 -----
 package/freescale-imx/imx-vpu/imx-vpu.mk | 5 +----
 2 files changed, 1 insertion(+), 9 deletions(-)

diff --git a/package/freescale-imx/imx-vpu/Config.in b/package/freescale-imx/imx-vpu/Config.in
index 8a9541607bcf..220385cec83d 100644
--- a/package/freescale-imx/imx-vpu/Config.in
+++ b/package/freescale-imx/imx-vpu/Config.in
@@ -1,6 +1,5 @@
 config BR2_PACKAGE_IMX_VPU
 	bool "imx-vpu"
-	depends on BR2_LINUX_KERNEL
 	depends on BR2_arm # Only relevant for i.MX
 	select BR2_PACKAGE_FIRMWARE_IMX
 	help
@@ -11,7 +10,3 @@ config BR2_PACKAGE_IMX_VPU
 
 	  This library is provided by Freescale as-is and doesn't have
 	  an upstream.
-
-comment "imx-vpu needs an imx-specific Linux kernel to be built"
-	depends on BR2_arm
-	depends on !BR2_LINUX_KERNEL
diff --git a/package/freescale-imx/imx-vpu/imx-vpu.mk b/package/freescale-imx/imx-vpu/imx-vpu.mk
index 4c4a0311144f..599dce85c945 100644
--- a/package/freescale-imx/imx-vpu/imx-vpu.mk
+++ b/package/freescale-imx/imx-vpu/imx-vpu.mk
@@ -10,14 +10,11 @@ IMX_VPU_SOURCE = imx-vpu-$(IMX_VPU_VERSION).bin
 
 IMX_VPU_INSTALL_STAGING = YES
 
-# imx-vpu needs access to imx-specific kernel headers
-IMX_VPU_DEPENDENCIES += linux
 IMX_VPU_MAKE_ENV = \
 	$(TARGET_MAKE_ENV) \
 	$(TARGET_CONFIGURE_OPTS) \
 	CROSS_COMPILE="$(CCACHE) $(TARGET_CROSS)" \
-	PLATFORM=$(BR2_PACKAGE_FREESCALE_IMX_PLATFORM) \
-	INCLUDE="-idirafter $(LINUX_DIR)/include"
+	PLATFORM=$(BR2_PACKAGE_FREESCALE_IMX_PLATFORM)
 
 IMX_VPU_LICENSE = Freescale Semiconductor Software License Agreement
 IMX_VPU_LICENSE_FILES = EULA vpu/EULA.txt
-- 
2.5.0

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

* [Buildroot] [PATCH 2/2] imx-vpu: bump to verson 5.4.31
  2015-09-02 16:54 [Buildroot] [PATCH 1/2] imx-vpu: remove kernel dependency Baruch Siach
@ 2015-09-02 16:54 ` Baruch Siach
  2015-09-04  9:48   ` Gary Bisson
  2015-09-04  9:46 ` [Buildroot] [PATCH 1/2] imx-vpu: remove kernel dependency Gary Bisson
  2015-10-02 19:08 ` Thomas Petazzoni
  2 siblings, 1 reply; 5+ messages in thread
From: Baruch Siach @ 2015-09-02 16:54 UTC (permalink / raw)
  To: buildroot

Also, update license file location, and add a hash file.

Cc: Gary Bisson <gary.bisson@boundarydevices.com>
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
---
 package/freescale-imx/imx-vpu/imx-vpu.hash | 2 ++
 package/freescale-imx/imx-vpu/imx-vpu.mk   | 4 ++--
 2 files changed, 4 insertions(+), 2 deletions(-)
 create mode 100644 package/freescale-imx/imx-vpu/imx-vpu.hash

diff --git a/package/freescale-imx/imx-vpu/imx-vpu.hash b/package/freescale-imx/imx-vpu/imx-vpu.hash
new file mode 100644
index 000000000000..3fdd092e1699
--- /dev/null
+++ b/package/freescale-imx/imx-vpu/imx-vpu.hash
@@ -0,0 +1,2 @@
+# Locally computed
+sha256 a266ab317fbd866541eae506d68983bcd361f49d1162a66bb34cb8088ceec88c imx-vpu-5.4.31.bin
diff --git a/package/freescale-imx/imx-vpu/imx-vpu.mk b/package/freescale-imx/imx-vpu/imx-vpu.mk
index 599dce85c945..360685755441 100644
--- a/package/freescale-imx/imx-vpu/imx-vpu.mk
+++ b/package/freescale-imx/imx-vpu/imx-vpu.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-IMX_VPU_VERSION = 5.4.27
+IMX_VPU_VERSION = 5.4.31
 IMX_VPU_SITE = $(FREESCALE_IMX_SITE)
 IMX_VPU_SOURCE = imx-vpu-$(IMX_VPU_VERSION).bin
 
@@ -17,7 +17,7 @@ IMX_VPU_MAKE_ENV = \
 	PLATFORM=$(BR2_PACKAGE_FREESCALE_IMX_PLATFORM)
 
 IMX_VPU_LICENSE = Freescale Semiconductor Software License Agreement
-IMX_VPU_LICENSE_FILES = EULA vpu/EULA.txt
+IMX_VPU_LICENSE_FILES = EULA COPYING
 IMX_VPU_REDISTRIBUTE = NO
 
 define IMX_VPU_EXTRACT_CMDS
-- 
2.5.0

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

* [Buildroot] [PATCH 1/2] imx-vpu: remove kernel dependency
  2015-09-02 16:54 [Buildroot] [PATCH 1/2] imx-vpu: remove kernel dependency Baruch Siach
  2015-09-02 16:54 ` [Buildroot] [PATCH 2/2] imx-vpu: bump to verson 5.4.31 Baruch Siach
@ 2015-09-04  9:46 ` Gary Bisson
  2015-10-02 19:08 ` Thomas Petazzoni
  2 siblings, 0 replies; 5+ messages in thread
From: Gary Bisson @ 2015-09-04  9:46 UTC (permalink / raw)
  To: buildroot

Hi Baruch,

On Wed, Sep 2, 2015 at 6:54 PM, Baruch Siach <baruch@tkos.co.il> wrote:
> The imx-vpu package builds just fine without any special kernel header.

Indeed it seems that it builds fine without it. Yocto recipe still
depends on the kernel but I see no point in keeping it.

Tested-by: Gary Bisson <gary.bisson@boundarydevices.com>

Thanks,
Gary

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

* [Buildroot] [PATCH 2/2] imx-vpu: bump to verson 5.4.31
  2015-09-02 16:54 ` [Buildroot] [PATCH 2/2] imx-vpu: bump to verson 5.4.31 Baruch Siach
@ 2015-09-04  9:48   ` Gary Bisson
  0 siblings, 0 replies; 5+ messages in thread
From: Gary Bisson @ 2015-09-04  9:48 UTC (permalink / raw)
  To: buildroot

Hi Baruch,

On Wed, Sep 2, 2015 at 6:54 PM, Baruch Siach <baruch@tkos.co.il> wrote:
> Also, update license file location, and add a hash file.

Tested-by: Gary Bisson <gary.bisson@boundarydevices.com>

Thanks,
Gary

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

* [Buildroot] [PATCH 1/2] imx-vpu: remove kernel dependency
  2015-09-02 16:54 [Buildroot] [PATCH 1/2] imx-vpu: remove kernel dependency Baruch Siach
  2015-09-02 16:54 ` [Buildroot] [PATCH 2/2] imx-vpu: bump to verson 5.4.31 Baruch Siach
  2015-09-04  9:46 ` [Buildroot] [PATCH 1/2] imx-vpu: remove kernel dependency Gary Bisson
@ 2015-10-02 19:08 ` Thomas Petazzoni
  2 siblings, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2015-10-02 19:08 UTC (permalink / raw)
  To: buildroot

Dear Baruch Siach,

On Wed,  2 Sep 2015 19:54:12 +0300, Baruch Siach wrote:
> The imx-vpu package builds just fine without any special kernel header.
> 
> Cc: Gary Bisson <gary.bisson@boundarydevices.com>
> Signed-off-by: Baruch Siach <baruch@tkos.co.il>
> ---
>  package/freescale-imx/imx-vpu/Config.in  | 5 -----
>  package/freescale-imx/imx-vpu/imx-vpu.mk | 5 +----
>  2 files changed, 1 insertion(+), 9 deletions(-)

Both patches applied, thanks.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

end of thread, other threads:[~2015-10-02 19:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-09-02 16:54 [Buildroot] [PATCH 1/2] imx-vpu: remove kernel dependency Baruch Siach
2015-09-02 16:54 ` [Buildroot] [PATCH 2/2] imx-vpu: bump to verson 5.4.31 Baruch Siach
2015-09-04  9:48   ` Gary Bisson
2015-09-04  9:46 ` [Buildroot] [PATCH 1/2] imx-vpu: remove kernel dependency Gary Bisson
2015-10-02 19:08 ` Thomas Petazzoni

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.