diff options
author | Chris Dimich <chris.dimich@boundarydevices.com> | 2023-05-25 09:39:24 -0700 |
---|---|---|
committer | Chris Dimich <chris.dimich@boundarydevices.com> | 2023-06-01 23:44:38 -0700 |
commit | 961fac5f27cf93db67e14a1c93464bc3b6cefc33 (patch) | |
tree | 9c4998dc348742570bb150f1b4f5b294315e0168 | |
parent | 01d9ba2bfca7935a6ed54eb81ca76ec9ee56ed0d (diff) | |
download | meta-freescale-961fac5f27cf93db67e14a1c93464bc3b6cefc33.tar.gz |
imx-vpu-hantro: upgrade to 1.28.0
Remove patch that prevented warning from oe qa,
but no longer needed as new version builds with no warning.
As per NXP langdale-6.1.1-1.0.0 release.
Signed-off-by: Chris Dimich <chris.dimich@boundarydevices.com>
-rw-r--r-- | recipes-bsp/imx-vpu-hantro/imx-vpu-hantro/0001-buildsystem-don-t-ignore-externally-set-cflags.patch | 49 | ||||
-rw-r--r-- | recipes-bsp/imx-vpu-hantro/imx-vpu-hantro_1.28.0.bb (renamed from recipes-bsp/imx-vpu-hantro/imx-vpu-hantro_1.27.0.bb) | 11 |
2 files changed, 4 insertions, 56 deletions
diff --git a/recipes-bsp/imx-vpu-hantro/imx-vpu-hantro/0001-buildsystem-don-t-ignore-externally-set-cflags.patch b/recipes-bsp/imx-vpu-hantro/imx-vpu-hantro/0001-buildsystem-don-t-ignore-externally-set-cflags.patch deleted file mode 100644 index 861230bbd..000000000 --- a/recipes-bsp/imx-vpu-hantro/imx-vpu-hantro/0001-buildsystem-don-t-ignore-externally-set-cflags.patch +++ /dev/null | |||
@@ -1,49 +0,0 @@ | |||
1 | From aba22ec2e285cf7557a5049fa6181e82e7f1a489 Mon Sep 17 00:00:00 2001 | ||
2 | From: Max Krummenacher <max.krummenacher@toradex.com> | ||
3 | Date: Mon, 21 Nov 2022 12:04:09 +0000 | ||
4 | Subject: [PATCH] buildsystem: don't ignore externally set cflags | ||
5 | |||
6 | Upstream-Status: pending | ||
7 | Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> | ||
8 | --- | ||
9 | decoder_sw/software/linux/h264high/Makefile | 4 ++-- | ||
10 | decoder_sw/software/linux/vp6/Makefile | 4 ++-- | ||
11 | 2 files changed, 4 insertions(+), 4 deletions(-) | ||
12 | |||
13 | diff --git a/decoder_sw/software/linux/h264high/Makefile b/decoder_sw/software/linux/h264high/Makefile | ||
14 | index 556ff71..7bdd99d 100755 | ||
15 | --- a/decoder_sw/software/linux/h264high/Makefile | ||
16 | +++ b/decoder_sw/software/linux/h264high/Makefile | ||
17 | @@ -50,10 +50,10 @@ CLEAR_HDRINFO_IN_SEEK = n | ||
18 | DEBUG = y | ||
19 | # Add your debugging flag (or not) to CFLAGS | ||
20 | ifeq ($(DEBUG),y) | ||
21 | - CFLAGS = $(M32) -g -O0 | ||
22 | + CFLAGS += $(M32) -g -O0 | ||
23 | DEBFLAGS = -DDEBUG -D_ASSERT_USED -D_RANGE_CHECK -D_ERROR_PRINT | ||
24 | else | ||
25 | - CFLAGS = $(M32) -O3 | ||
26 | + CFLAGS += $(M32) -O3 | ||
27 | DEBFLAGS = -DNDEBUG | ||
28 | endif | ||
29 | |||
30 | diff --git a/decoder_sw/software/linux/vp6/Makefile b/decoder_sw/software/linux/vp6/Makefile | ||
31 | index b6e6914..b933d46 100755 | ||
32 | --- a/decoder_sw/software/linux/vp6/Makefile | ||
33 | +++ b/decoder_sw/software/linux/vp6/Makefile | ||
34 | @@ -50,10 +50,10 @@ DEBUG = y | ||
35 | |||
36 | # Add your debugging flag (or not) to CFLAGS | ||
37 | ifeq ($(DEBUG),y) | ||
38 | - CFLAGS = -g -O0 | ||
39 | + CFLAGS += -g -O0 | ||
40 | DEBFLAGS = -DDEBUG -D_ASSERT_USED -D_ERROR_PRINT | ||
41 | else | ||
42 | - CFLAGS = -O3 | ||
43 | + CFLAGS += -O3 | ||
44 | DEBFLAGS = -DNDEBUG | ||
45 | endif | ||
46 | |||
47 | -- | ||
48 | 2.35.3 | ||
49 | |||
diff --git a/recipes-bsp/imx-vpu-hantro/imx-vpu-hantro_1.27.0.bb b/recipes-bsp/imx-vpu-hantro/imx-vpu-hantro_1.28.0.bb index 35adecf88..0757a7fb5 100644 --- a/recipes-bsp/imx-vpu-hantro/imx-vpu-hantro_1.27.0.bb +++ b/recipes-bsp/imx-vpu-hantro/imx-vpu-hantro_1.28.0.bb | |||
@@ -2,16 +2,13 @@ | |||
2 | 2 | ||
3 | DESCRIPTION = "i.MX Hantro VPU library" | 3 | DESCRIPTION = "i.MX Hantro VPU library" |
4 | LICENSE = "Proprietary" | 4 | LICENSE = "Proprietary" |
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=5a0bf11f745e68024f37b4724a5364fe" | 5 | LIC_FILES_CHKSUM = "file://COPYING;md5=ea25d099982d035af85d193c88a1b479" |
6 | 6 | ||
7 | PROVIDES = "virtual/imxvpu" | 7 | PROVIDES = "virtual/imxvpu" |
8 | 8 | ||
9 | SRC_URI = " \ | 9 | SRC_URI = "${FSL_MIRROR}/${BP}.bin;fsl-eula=true" |
10 | ${FSL_MIRROR}/${BP}.bin;fsl-eula=true \ | 10 | SRC_URI[md5sum] = "81b4eb801349a0c198b7cc43eb8b6097" |
11 | file://0001-buildsystem-don-t-ignore-externally-set-cflags.patch \ | 11 | SRC_URI[sha256sum] = "e868e12945b4f217e2e0511fdc2587875d6c9124e8673b67f1e7de367ff5012f" |
12 | " | ||
13 | SRC_URI[md5sum] = "cfa0e92da0eca9cf622c4d7abc618cef" | ||
14 | SRC_URI[sha256sum] = "7e9bcdbd067ce66a1247373cbf088945346feb0027deb61af541ebc1256277c3" | ||
15 | 12 | ||
16 | inherit fsl-eula-unpack use-imx-headers | 13 | inherit fsl-eula-unpack use-imx-headers |
17 | 14 | ||