All of lore.kernel.org
 help / color / mirror / Atom feed
From: Zhenhua Luo <zhenhua.luo@nxp.com>
To: <meta-freescale@yoctoproject.org>
Subject: [meta-freescale-layer master][PATCH v2 11/20] rcw: upgrade to SDK 2.0 GA-1611 release
Date: Tue, 20 Dec 2016 20:18:58 +0800	[thread overview]
Message-ID: <1482236347-5904-12-git-send-email-zhenhua.luo@nxp.com> (raw)
In-Reply-To: <1482236347-5904-1-git-send-email-zhenhua.luo@nxp.com>

* disable the endianness switch for qspi u-boot of SEC boot
* included the following commits.
  * 3252b8c Merge pull request #20 in SDK/rcw from ~B21989/sdk-rcw:jira/QSDK-3097 to master
  * cd271ee Merge pull request #19 in SDK/rcw from ~B52263/rcw:jira/QSDK-3096 to master
  * 6a558a2 ls1021a: Fix QSPI endian issue for QSPI boot on LS1021A boards
  * fbfddb3 ls1043a: Fix QSPI endian issue for QSPI boot on LS1043AQDS
  * 2485a22 ls1046a: fix PBI of changing QSPI endianness
  * 7304127 ls1043ardb: adds a RCW with GIC 4K supported
  * d413878 ls1043a: Add PBI of changing GIC offset to 4K
  * e914a5f Add a tclsh script to swap the rcw endian.
  * 8411b78 ls1046aqds: Add RCW for ls1046aqds board
  * 6d486d4 ls1046ardb: Add RCW for ls1046ardb board
  * 14de148 arm: ls1021a: add the core frequency to 1.2GHZ support
  * 98b6bc3 t2080rdb: update SRDS2PLL2CR1 to 0x08004100 for errata A-007186

Signed-off-by: Ting Liu <ting.liu@nxp.com>
Signed-off-by: Zhenhua Luo <zhenhua.luo@nxp.com>
---
 recipes-bsp/rcw/rcw_git.bb | 13 ++++++++-----
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/recipes-bsp/rcw/rcw_git.bb b/recipes-bsp/rcw/rcw_git.bb
index 8117861..e00c0a6 100644
--- a/recipes-bsp/rcw/rcw_git.bb
+++ b/recipes-bsp/rcw/rcw_git.bb
@@ -8,17 +8,21 @@ DEPENDS += "change-file-endianess-native tcl-native"
 inherit deploy
 
 SRC_URI = "git://git.freescale.com/ppc/sdk/rcw.git;branch=sdk-v2.0.x"
-SRCREV = "6ae9086528019ab55968da05c25bd319737c8e62"
+SRCREV = "3252b8cce8e5a214c8e652121ef9b9460663c65a"
 
 S = "${WORKDIR}/git"
 
-EXTRA_OEMAKE = "BOARDS=${@d.getVar('MACHINE', True).replace('-64b','')} DESTDIR=${D}/boot/rcw/"
+EXTRA_OEMAKE = "BOARDS=${@d.getVar('MACHINE', True).replace('-64b','').replace('-32b','')} DESTDIR=${D}/boot/rcw/"
 
 do_install () {
     oe_runmake install
     for f in `find ${D}/boot/rcw/ -name "*qspiboot*"`;do
+        if echo $f |grep -q "qspiboot_sben"; then
+            continue
+        fi
         f_swap=`echo $f |sed -e 's/qspiboot/qspiboot_swap/'`
         tclsh ${STAGING_BINDIR_NATIVE}/byte_swap.tcl $f $f_swap 8
+        mv -f $f_swap $f
     done
 }
 
@@ -31,6 +35,5 @@ addtask deploy after do_install
 PACKAGES += "${PN}-image"
 FILES_${PN}-image += "/boot"
 
-COMPATIBLE_MACHINE = "(qoriq-ppc|ls1021a|ls1043a)"
-PACKAGE_ARCH = "${MACHINE_SOCARCH}"
-
+COMPATIBLE_MACHINE = "(qoriq)"
+PACKAGE_ARCH = "${MACHINE_ARCH}"
-- 
2.7.4



  parent reply	other threads:[~2016-12-20 12:19 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-12-20 12:18 [meta-freescale-layer master][PATCH v2 00/20] Update of QorIQ SDK 2.0 GA-1611 release Zhenhua Luo
2016-12-20 12:18 ` [meta-freescale-layer master][PATCH v2 01/20] linux-qoriq: upgrade to SDK 2.0 GA1611 release Zhenhua Luo
2016-12-20 12:18 ` [meta-freescale-layer master][PATCH v2 02/20] fmc: upgrade to SDK 2.0 GA-1611 release Zhenhua Luo
2016-12-20 12:18 ` [meta-freescale-layer master][PATCH v2 03/20] fmlib: " Zhenhua Luo
2016-12-20 12:18 ` [meta-freescale-layer master][PATCH v2 04/20] fm-ucode: support ls1046ardb boards Zhenhua Luo
2016-12-20 12:18 ` [meta-freescale-layer master][PATCH v2 05/20] eth-config: upgrade to SDK 2.0 GA-1611 release Zhenhua Luo
2016-12-20 12:18 ` [meta-freescale-layer master][PATCH v2 06/20] usdpaa: " Zhenhua Luo
2016-12-20 12:18 ` [meta-freescale-layer master][PATCH v2 07/20] usdpaa-apps: " Zhenhua Luo
2016-12-20 12:18 ` [meta-freescale-layer master][PATCH v2 08/20] dpa-offload: " Zhenhua Luo
2016-12-20 12:18 ` [meta-freescale-layer master][PATCH v2 09/20] ppa: migrate to generic ppa tree Zhenhua Luo
2016-12-20 12:18 ` [meta-freescale-layer master][PATCH v2 10/20] u-boot: upgrade to 2016.09 Zhenhua Luo
2016-12-20 12:18 ` Zhenhua Luo [this message]
2016-12-20 12:18 ` [meta-freescale-layer master][PATCH v2 12/20] ceetm: support ls1046a targets Zhenhua Luo
2016-12-20 12:19 ` [meta-freescale-layer master][PATCH v2 13/20] kernel-module-ar: set CLEANBROKEN to 1 Zhenhua Luo
2016-12-20 12:19 ` [meta-freescale-layer master][PATCH v2 14/20] cst: upgrade to SDK 2.0 GA-1611 release Zhenhua Luo
2016-12-20 12:19 ` [meta-freescale-layer master][PATCH v2 15/20] qemu-qoriq: support 32b build for arm64 platforms Zhenhua Luo
2016-12-20 12:19 ` [meta-freescale-layer master][PATCH v2 16/20] change-file-endianess: update byte_swap script to support ls1046 Zhenhua Luo
2016-12-20 12:19 ` [meta-freescale-layer master][PATCH v2 17/20] ls1043ardb-32b: add machine conf file Zhenhua Luo
2016-12-20 12:19 ` [meta-freescale-layer master][PATCH v2 18/20] ls1046ardb: add machine conf Zhenhua Luo
2016-12-20 12:19 ` [meta-freescale-layer master][PATCH v2 19/20] ls1046ardb-32b: " Zhenhua Luo
2016-12-20 12:19 ` [meta-freescale-layer master][PATCH v2 20/20] ls1043ardb.conf: add fsl-lsch2 in MACHINEOVERRIDES Zhenhua Luo

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=1482236347-5904-12-git-send-email-zhenhua.luo@nxp.com \
    --to=zhenhua.luo@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.