summaryrefslogtreecommitdiffstats
path: root/recipes-dpaa2
diff options
context:
space:
mode:
authorChunrong Guo <chunrong.guo@nxp.com>2017-07-28 15:44:21 +0800
committerOtavio Salvador <otavio@ossystems.com.br>2017-08-07 11:42:29 -0300
commit5e414150057f379e7b8a988c8f5832a0168fb162 (patch)
treec66aaf4ca55fc6eafc55b627ec28d7a999a4248c /recipes-dpaa2
parentaae8e840115c1f8e87c7a93b15e73c2fbf384387 (diff)
downloadmeta-freescale-5e414150057f379e7b8a988c8f5832a0168fb162.tar.gz
restool: update to f01f2ea4ab
*include the following changes f01f2ea - add NXP Copyright where necessary 2a413ea - dpsw: change dpsw.X to dpsw.0 in help text eeee9e8 - dpni: remove unused variable 837e541 - dpdmux: add support for L3 custom forwarding method 42f39ea - dpseci: add congestion group option for dpseci create 1516311 - dpni: execute dpni create even if MC10.2 55bdffd - add MC version compatiblilty check to wrapper scripts fc29c3d - dprc: export connect configuration parameters to users 3fd971d - avoid INTEGER overflow in params of get_option_value function Signed-off-by: Chunrong Guo <B40290@freescale.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes-dpaa2')
-rw-r--r--recipes-dpaa2/restool/restool/0001-restool-fix-build-error-with-gcc7.patch24
-rw-r--r--recipes-dpaa2/restool/restool_git.bb10
2 files changed, 30 insertions, 4 deletions
diff --git a/recipes-dpaa2/restool/restool/0001-restool-fix-build-error-with-gcc7.patch b/recipes-dpaa2/restool/restool/0001-restool-fix-build-error-with-gcc7.patch
new file mode 100644
index 00000000..82ade02b
--- /dev/null
+++ b/recipes-dpaa2/restool/restool/0001-restool-fix-build-error-with-gcc7.patch
@@ -0,0 +1,24 @@
1From 895db76654c796a0edc6b2d329addde108b1755c Mon Sep 17 00:00:00 2001
2From: Chunrong Guo <chunrong.guo@nxp.com>
3Date: Wed, 19 Jul 2017 14:31:23 +0800
4Subject: [PATCH] restool: fix build error with gcc7
5
6---
7 Makefile | 1 -
8 1 file changed, 1 deletion(-)
9
10diff --git a/Makefile b/Makefile
11index 3976b66..df1e791 100644
12--- a/Makefile
13+++ b/Makefile
14@@ -64,7 +64,6 @@ CFLAGS = ${EXTRA_CFLAGS} \
15 -Wmissing-prototypes \
16 -Wpointer-arith \
17 -Winline \
18- -Werror \
19 -Wundef \
20 -Icommon/
21
22--
232.7.4
24
diff --git a/recipes-dpaa2/restool/restool_git.bb b/recipes-dpaa2/restool/restool_git.bb
index ab46fb33..aa6b8e40 100644
--- a/recipes-dpaa2/restool/restool_git.bb
+++ b/recipes-dpaa2/restool/restool_git.bb
@@ -1,11 +1,13 @@
1SUMMARY = "DPAA2 Resource Manager Tool" 1SUMMARY = "DPAA2 Resource Manager Tool"
2LICENSE = "BSD" 2LICENSE = "BSD"
3LIC_FILES_CHKSUM = "file://COPYING;md5=e613b54e73c0e4a2a8918c61924bd623" 3LIC_FILES_CHKSUM = "file://COPYING;md5=ec8d84e9cd4de287e290275d09db27f0"
4 4
5RDEPENDS_${PN} += "bash" 5RDEPENDS_${PN} += "bash"
6 6
7SRC_URI = "git://git.freescale.com/ppc/sdk/restool.git;nobranch=1" 7SRC_URI = "git://github.com/qoriq-open-source/restool.git;nobranch=1 \
8SRCREV = "eba25cdfdccef45f7ba02dd2f829b9b55198fbb1" 8 file://0001-restool-fix-build-error-with-gcc7.patch"
9
10SRCREV = "f01f2ea4ab2d5b2432c4497cc772d2fd8cca3eb3"
9 11
10S = "${WORKDIR}/git" 12S = "${WORKDIR}/git"
11 13
@@ -15,6 +17,6 @@ do_install () {
15 oe_runmake install DESTDIR=${D} 17 oe_runmake install DESTDIR=${D}
16} 18}
17 19
18COMPATIBLE_MACHINE = "(ls2080ardb|ls2088ardb)" 20COMPATIBLE_MACHINE = "(ls2080ardb|ls2088ardb|ls1088ardb)"
19PACKAGE_ARCH = "${MACHINE_ARCH}" 21PACKAGE_ARCH = "${MACHINE_ARCH}"
20 22