diff options
author | Lauren Post <lauren.post@freescale.com> | 2013-12-16 11:05:12 -0600 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2014-02-20 14:00:03 -0300 |
commit | 0652b0563e861623f83436b300ed8023a0560bf1 (patch) | |
tree | 48979bf0b52bd1405c2bdd43a65d89835a768dfa | |
parent | 3549c275f444fd5435de40ed3c54fa6ab56b4248 (diff) | |
download | meta-fsl-arm-0652b0563e861623f83436b300ed8023a0560bf1.tar.gz |
imx-vpu: Upgrade to 3.10.17-1.0.0_beta
Signed-off-by: Lauren Post <lauren.post@freescale.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
3 files changed, 14 insertions, 44 deletions
diff --git a/recipes-bsp/imx-vpu/imx-vpu-3.10.9-1.0.0/build-Allow-CC-and-AR-to-be-overriden.patch b/recipes-bsp/imx-vpu/imx-vpu-3.10.9-1.0.0/build-Allow-CC-and-AR-to-be-overriden.patch deleted file mode 100644 index 1a014aa..0000000 --- a/recipes-bsp/imx-vpu/imx-vpu-3.10.9-1.0.0/build-Allow-CC-and-AR-to-be-overriden.patch +++ /dev/null | |||
@@ -1,33 +0,0 @@ | |||
1 | From 97cb0b711ce1a9d0dd3de51480d2e3a1399ce34c Mon Sep 17 00:00:00 2001 | ||
2 | From: Otavio Salvador <otavio@ossystems.com.br> | ||
3 | Date: Tue, 5 Nov 2013 15:20:15 -0200 | ||
4 | Subject: [PATCH] build: Allow CC and AR to be overriden | ||
5 | Organization: O.S. Systems Software LTDA. | ||
6 | |||
7 | This is need to allow proper building when using Yocto and multiple | ||
8 | machines sharing sstate-cache, otherwise the toolchain is going to | ||
9 | default to use the first build machine sysroot due lack of '-sysroot' | ||
10 | option. | ||
11 | |||
12 | Upstream-Status: Pending | ||
13 | |||
14 | Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> | ||
15 | --- | ||
16 | vpu/Makefile | 4 ++-- | ||
17 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
18 | |||
19 | diff --git a/vpu/Makefile b/vpu/Makefile | ||
20 | index b106631..dec2429 100644 | ||
21 | --- a/vpu/Makefile | ||
22 | +++ b/vpu/Makefile | ||
23 | @@ -1,5 +1,5 @@ | ||
24 | -CC=$(CROSS_COMPILE)gcc | ||
25 | -AR=$(CROSS_COMPILE)ar | ||
26 | +CC ?= $(CROSS_COMPILE)gcc | ||
27 | +AR ?= $(CROSS_COMPILE)ar | ||
28 | |||
29 | # list of platforms which want this test case | ||
30 | INCLUDE_LIST:= IMX27ADS IMX51 IMX53 IMX6Q | ||
31 | -- | ||
32 | 1.8.4.rc3 | ||
33 | |||
diff --git a/recipes-bsp/imx-vpu/imx-vpu_3.10.17-1.0.0.bb b/recipes-bsp/imx-vpu/imx-vpu_3.10.17-1.0.0.bb new file mode 100644 index 0000000..fe8c5a6 --- /dev/null +++ b/recipes-bsp/imx-vpu/imx-vpu_3.10.17-1.0.0.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | # Copyright (C) 2013, 2014 Freescale Semiconductor | ||
2 | |||
3 | require imx-vpu.inc | ||
4 | |||
5 | PE = "1" | ||
6 | |||
7 | # FIXME: Drop 'beta' suffix for GA release | ||
8 | SRC_URI = "${FSL_MIRROR}/${PN}-${PV}_beta.bin;fsl-eula=true" | ||
9 | S = "${WORKDIR}/${PN}-${PV}_beta" | ||
10 | |||
11 | SRC_URI[md5sum] = "7ba78483bd1cf61bb6fce4ed9e9287d6" | ||
12 | SRC_URI[sha256sum] = "589500bcc1c871d688ec23f11b930cd49079a689ed85d974ee8b32540c601cdd" | ||
13 | |||
14 | COMPATIBLE_MACHINE = "(mx6)" | ||
diff --git a/recipes-bsp/imx-vpu/imx-vpu_3.10.9-1.0.0.bb b/recipes-bsp/imx-vpu/imx-vpu_3.10.9-1.0.0.bb deleted file mode 100644 index c4705c7..0000000 --- a/recipes-bsp/imx-vpu/imx-vpu_3.10.9-1.0.0.bb +++ /dev/null | |||
@@ -1,11 +0,0 @@ | |||
1 | # Copyright (C) 2013 Freescale Semiconductor | ||
2 | require imx-vpu.inc | ||
3 | |||
4 | PE = "1" | ||
5 | |||
6 | SRC_URI += "file://build-Allow-CC-and-AR-to-be-overriden.patch" | ||
7 | |||
8 | SRC_URI[md5sum] = "61331c9ed2d4c1b3aeab9c35fd034ac3" | ||
9 | SRC_URI[sha256sum] = "5dd86a26c8d3013e0d78308b1ccd8815730818e465787f55013b492d2d3c7710" | ||
10 | |||
11 | COMPATIBLE_MACHINE = "(mx6)" | ||