All of lore.kernel.org
 help / color / mirror / Atom feed
From: Chunrong Guo <B40290@freescale.com>
To: <meta-freescale@yoctoproject.org>
Cc: chunrong.guo@nxp.com
Subject: [PATCH 13/13] ceetm: update recipes
Date: Mon, 30 Oct 2017 16:53:57 +0800	[thread overview]
Message-ID: <1509353637-16361-13-git-send-email-B40290@freescale.com> (raw)
In-Reply-To: <1509353637-16361-1-git-send-email-B40290@freescale.com>

From: Chunrong Guo <chunrong.guo@nxp.com>

*Fix wrong md5sum of license file
fix the below error:
|ERROR: ceetm-git-r0 do_populate_lic: QA Issue: ceetm: The LIC_FILES_CHKSUM does not
| match for file://COPYING;md5=b5881ecf398da8a03a3f4c501e29d287

*Change git repository URL

*Update to f58304d
This includes the following changes:
f58304d - Update Copyright owners
6fe89a0 - ceetm: use IPROUTE2_DIR in build include path for LSDK
896094f - ceetm: update include path for LSDK/flex-builder
74f2393 - ceetm: fix small compiler warnings
20be45f - ceetm: restructure sources for LSDK integration

*Add iproute2 to SRC_URI
because ceetms compile depend heard file in iproute2-dbg package

*Add md5/sha256 checksums of iproute2

*Update EXTRA_OEMAKE to fix compile error
fix the below error:
|q_ceetm.h:33:10: fatal error: include/utils.h: No such file or directory

*Fix the installation directory
fix the below error:
|cp: cannot stat 'aarch64-qoriq-poky-linux/ceetm/git-r0/git/bin/q_ceetm.so': No such file or directory

*Update COMPATIBLE_MACHINE for ls1088a

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-kernel/ceetm/ceetm_git.bb | 17 +++++++++++------
 1 file changed, 11 insertions(+), 6 deletions(-)

diff --git a/recipes-kernel/ceetm/ceetm_git.bb b/recipes-kernel/ceetm/ceetm_git.bb
index 44ca577..b64e26b 100644
--- a/recipes-kernel/ceetm/ceetm_git.bb
+++ b/recipes-kernel/ceetm/ceetm_git.bb
@@ -1,22 +1,27 @@
 DESCRIPTION = "CEETM TC QDISC"
 LICENSE = "GPLv2 & BSD"
-LIC_FILES_CHKSUM = "file://COPYING;md5=b5881ecf398da8a03a3f4c501e29d287"
+LIC_FILES_CHKSUM = "file://COPYING;md5=dde0931a586dd5b30076639e29ba3a7b"
 
-SRC_URI = "git://git.freescale.com/ppc/sdk/ceetm.git;branch=sdk-v2.0.x"
-SRCREV = "a237e094c3316a55727b855d15480e664545316a"
+SRC_URI = "git://github.com/qoriq-open-source/ceetm.git;nobranch=1 \
+           ${KERNELORG_MIRROR}/linux/utils/net/iproute2/iproute2-4.11.0.tar.xz;name=iproute2;destsuffix=git/iproute2 \
+"
+SRCREV = "f58304d7e2185003d0f4ff604bc8e4316d463a03"
+
+SRC_URI[iproute2.md5sum] = "7a9498de88bcca95c305df6108ae197e"
+SRC_URI[iproute2.sha256sum] = "72671028bda696d0cb8f48ec8e702581c3a501caeed33eec3a81d7041cbc8026"
 
 S = "${WORKDIR}/git"
 
-EXTRA_OEMAKE = "CROSS_COMPILE=${TARGET_PREFIX} SYSROOT=${STAGING_DIR_TARGET}"
+EXTRA_OEMAKE = 'CC="${CC}" LD="${CC}" IPROUTE2_DIR="${WORKDIR}/iproute2-4.11.0"'
 
 do_install(){
     mkdir -p ${D}/${libdir}/tc
-    cp ${S}/bin/q_ceetm.so ${D}/${libdir}/tc/
+    cp ${S}/q_ceetm.so ${D}/${libdir}/tc/
 }
 
 FILES_${PN} += "${libdir}/tc"
 INHIBIT_PACKAGE_STRIP = "1"
 
-COMPATIBLE_MACHINE = "(b4|t1|t2|t4|ls1043a|ls1046a)"
+COMPATIBLE_MACHINE = "(b4|t1|t2|t4|ls1043a|ls1046a|ls1088a)"
 PACKAGE_ARCH = "${MACHINE_SOCARCH}"
 
-- 
1.9.0



  parent reply	other threads:[~2017-10-30  8:54 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-30  8:53 [PATCH 01/13] linux-qoriq-4.9 : update to b226445 Chunrong Guo
2017-10-30  8:53 ` [PATCH 02/13] linux-qoriq_4.4: update to e235023 Chunrong Guo
2017-10-30  8:53 ` [PATCH 03/13] management-complex: update to 10.3.4 Chunrong Guo
2017-10-30  8:53 ` [PATCH 04/13] rcw: update to 6719b04 Chunrong Guo
2017-10-30  8:53 ` [PATCH 05/13] uboot : update to fbedf04 Chunrong Guo
2017-10-30  8:53 ` [PATCH 06/13] restool: update to 8f08b9d Chunrong Guo
2017-10-30  8:53 ` [PATCH 07/13] fmlib: update to 95f34b1 Chunrong Guo
2017-10-30  8:53 ` [PATCH 08/13] cst :update to 5e0ce70 Chunrong Guo
2017-10-30  8:53 ` [PATCH 09/13] fmc: update to 8c9f127 Chunrong Guo
2017-10-30  8:53 ` [PATCH 10/13] ppfe-firmware: update recipes Chunrong Guo
2017-10-30  8:53 ` [PATCH 11/13] ls1012ardb : add itbimage support Chunrong Guo
2017-10-30  8:53 ` [PATCH 12/13] fmc: set EXTRA_OEMAKE_PLATFORM for ls1088a Chunrong Guo
2017-10-30  8:53 ` Chunrong Guo [this message]
2017-11-02  7:51   ` [PATCH 13/13] ceetm: update recipes C.r. Guo
2017-11-06 12:06   ` Otavio Salvador

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=1509353637-16361-13-git-send-email-B40290@freescale.com \
    --to=b40290@freescale.com \
    --cc=chunrong.guo@nxp.com \
    --cc=meta-freescale@yoctoproject.org \
    /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.