All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/24] atf: update to 7e34aeb
@ 2019-04-01  9:12 C.r. Guo
  2019-04-01  9:12 ` [PATCH 02/24] mc-utils: update to eeb8972 C.r. Guo
                   ` (23 more replies)
  0 siblings, 24 replies; 25+ messages in thread
From: C.r. Guo @ 2019-04-01  9:12 UTC (permalink / raw)
  To: meta-freescale; +Cc: C.r. Guo

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

*update to lsdk 1903 tag
include the following changes
7e34aeb - Fix 2088 sleep hang
dc16e35 - SDEI: Ensure SDEI handler executes with CVE-2018-3639 mitigation enabled
5eb3190 - Fast path SMCCC_ARCH_WORKAROUND_1 calls from AArch32
cd1e8ce - Add support for dynamic mitigation for CVE-2018-3639
82c570f - aarch32: Implement static workaround for CVE-2018-3639
2a655ec - Implement static workaround for CVE-2018-3639
90c75d3 - Rename symbols and files relating to CVE-2017-5715
179e18a - Fixup SMCCC_FEATURES return value for SMCCC_ARCH_WORKAROUND_1
2671898 - lx2: Remove setting of POWMGTCSR[LPM20_RQ] from LPM20 flow
7ca22ff - Adding LX2160 system power-down (LPM20)
0f81f07 - ls2088ardb: Add support of Non-ECC UDIMM
ee53ed7 - nxp/lx2: Enable Errate ERRATA_A72_859971 on LX2

*add ddr-phy to DEPENDS for lx2160a
*install ddr4_pmu_train_dmem.bin

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-bsp/atf/atf_git.bb | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/recipes-bsp/atf/atf_git.bb b/recipes-bsp/atf/atf_git.bb
index 883b7ea..6583be8 100644
--- a/recipes-bsp/atf/atf_git.bb
+++ b/recipes-bsp/atf/atf_git.bb
@@ -5,14 +5,15 @@ LIC_FILES_CHKSUM = "file://license.rst;md5=e927e02bca647e14efd87e9e914b2443"
 
 inherit deploy
 
-DEPENDS += "u-boot-mkimage-native u-boot openssl openssl-native mbedtls rcw cst-native uefi"
+DEPENDS += "u-boot-mkimage-native u-boot openssl openssl-native mbedtls rcw cst-native"
+DEPENDS_append_lx2160a += "ddr-phy"
 DEPENDS_append_qoriq-arm64 += "optee-os-qoriq"
 do_compile[depends] += "u-boot:do_deploy rcw:do_deploy uefi:do_deploy"
 
 S = "${WORKDIR}/git"
 
 SRC_URI = "git://source.codeaurora.org/external/qoriq/qoriq-components/atf;nobranch=1"
-SRCREV = "4971f394cf32e33e3a9ca23a4faa49d606af31c5"
+SRCREV = "7e34aebe658c7c3439d2d68b0ce6b9776e8e6996"
 
 SRC_URI += "file://0001-fix-fiptool-build-error.patch \
     file://0001-Makefile-add-CC-gcc.patch \
@@ -81,6 +82,9 @@ do_compile() {
         bl32opt="BL32=${bl32}"
         spdopt="SPD=opteed" 
     fi
+    if [ -f ${DEPLOY_DIR_IMAGE}/ddr-phy/ddr4_pmu_train_dmem.bin ]; then
+        cp ${DEPLOY_DIR_IMAGE}/ddr-phy/*.bin ${S}/
+    fi
 
     for d in ${BOOTTYPE}; do
         case $d in
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 25+ messages in thread

* [PATCH 02/24] mc-utils: update to eeb8972
  2019-04-01  9:12 [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
@ 2019-04-01  9:12 ` C.r. Guo
  2019-04-01  9:12 ` [PATCH 03/24] rcw: update to f137787 C.r. Guo
                   ` (22 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: C.r. Guo @ 2019-04-01  9:12 UTC (permalink / raw)
  To: meta-freescale; +Cc: C.r. Guo

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

*update to lsdk 1903 tag
include the following changes
eeb8972 - api: add symlink for MC 10.14.1, 10.14.2, 10.14.3
2f51b5a - config: lx2160a: Backplane config example for lx2
97fac94 - api: add MC 10.14.0 APIs

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-bsp/mc-utils/mc-utils_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-bsp/mc-utils/mc-utils_git.bb b/recipes-bsp/mc-utils/mc-utils_git.bb
index 430d6cd..49aa8f5 100644
--- a/recipes-bsp/mc-utils/mc-utils_git.bb
+++ b/recipes-bsp/mc-utils/mc-utils_git.bb
@@ -10,7 +10,7 @@ DEPENDS += "dtc-native"
 inherit deploy
 
 SRC_URI = "git://source.codeaurora.org/external/qoriq/qoriq-components/mc-utils;nobranch=1"
-SRCREV = "6aca560c630dc54afdef382c506f214b28f4985e"
+SRCREV = "eeb8972a3d4137c87a54c2795452b17f254a68c7"
 
 S = "${WORKDIR}/git"
 
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 25+ messages in thread

* [PATCH 03/24] rcw: update to f137787
  2019-04-01  9:12 [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
  2019-04-01  9:12 ` [PATCH 02/24] mc-utils: update to eeb8972 C.r. Guo
@ 2019-04-01  9:12 ` C.r. Guo
  2019-04-01  9:12 ` [PATCH 04/24] u-boot: update to 80b2d2b C.r. Guo
                   ` (21 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: C.r. Guo @ 2019-04-01  9:12 UTC (permalink / raw)
  To: meta-freescale; +Cc: C.r. Guo

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

*update to lsdk 1903 tag
include the following changes
f137787 - ls2088a: Removed the manually calculated PBI_LENGTH
bac41de - ls1088a: Removed the manually calculated PBI_LENGTH
4d4177d - t4240: Add workaround for PCIe erratum A-008098
a90d032 - t2080: Add workaround for PCIe erratum A-008098
9f513df - ls2088a: Add workaround for PCIe erratum A-009531
65e8607 - ls1088a: Add workaround for PCIe erratum A-009531
6179f2e - ls1012a: Add workaround for PCIe erratum A-009531
f1ee2f1 - ls1046a: Add workaround for PCIe erratum A-009531
7645eb7 - Revert "Revert "ls1043a: Fix QSPI endian issue for QSPI boot on LS1043AQDS""
840ce92 - Revert "qspi: use byte_swap.tcl under board directory for special board"

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-bsp/rcw/rcw_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-bsp/rcw/rcw_git.bb b/recipes-bsp/rcw/rcw_git.bb
index 007e7d2..ba26ef2 100644
--- a/recipes-bsp/rcw/rcw_git.bb
+++ b/recipes-bsp/rcw/rcw_git.bb
@@ -8,7 +8,7 @@ DEPENDS += "change-file-endianess-native tcl-native"
 inherit deploy siteinfo
 
 SRC_URI = "git://source.codeaurora.org/external/qoriq/qoriq-components/rcw;nobranch=1"
-SRCREV = "17254ac35250197877c6321f9d13e33b1f85388a"
+SRCREV = "f1377876cc06a87ec8afa8a3412ca7c8455861f2"
 
 S = "${WORKDIR}/git"
 
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 25+ messages in thread

* [PATCH 04/24] u-boot: update to 80b2d2b
  2019-04-01  9:12 [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
  2019-04-01  9:12 ` [PATCH 02/24] mc-utils: update to eeb8972 C.r. Guo
  2019-04-01  9:12 ` [PATCH 03/24] rcw: update to f137787 C.r. Guo
@ 2019-04-01  9:12 ` C.r. Guo
  2019-04-01  9:12 ` [PATCH 05/24] uefi: update to de8834d C.r. Guo
                   ` (20 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: C.r. Guo @ 2019-04-01  9:12 UTC (permalink / raw)
  To: meta-freescale; +Cc: C.r. Guo

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

*update to lsdk 1903 tag
include the following changes
80b2d2b - include: configs: lx2160a: update copyright info
7d323d4 - board: fsl: ls2080rdb: update copyright info
ff35e0c - board: fsl: ls2080aqds: update copyright info
77020d0 - board: fsl: ls1088ardb: update copyright info
6d77068 - board: fsl: ls1088aqds: update copyright info
0c48371 - armv8: fsl-layerscape: update copyright info
6f50f71 - driver: net: phy: update copyright info
ab528e9 - driver: net: ldpaa_eth: update copyright info
17c8520 - env: Update env_addr for mmc environment driver
72eb5d3 - MC : Report extra reserved memory to Linux
4f25ac0 - board/fsl/lx2160a: Fix MC firmware loading during SD boot
a4b3dc5 - armv8: fsl-layerscape: Set env_loc to ENVL_NOWHERE with CONFIG_ENV_IS_NOWHERE.
b572cfe - configs: ls1046: Update mtd-id for QSPI nor in mtdparts variable
e46941d - armv7: ls102xa: Add workaround for DDR erratum A-008850
a25b491 - board: fsl: lx2160aqds: modify the phy fixup code
100b48f - driver: net: fsl-mc: Fix DPC MAC address fixup
822c996 - drivers: net: ls1088ardb: Fix EC1 and EC2 RCW offset
bd037a4 - board/freescale: Enable DHCP distro boot for Layerscape board
705049e - Revert "Revert "pci: layerscape: Add the dts fixup for EP and RC""
d83e59c - mc : Add support to run MC in 128 MB DDR size
ec8543d - QSFP+ eeprom read support in U-boot
d163325 - pci: pcie_lx: Add the dts fixup for EP and RC
cb3f278 - armv8: cache: Flush L3 cache after relocation
6b7ff12 - net:phy:aquantia Set only autoneg on in register 4.c441
bc6f526 - armv8: lx2160aqds : Add support for LX2160AQDS platform
54d0cd6 - drivers: net: ldpaa_eth: check if the dpmac is enabled
3011d18 - armv8: fsl-layerscape: reorder rgmii dpmacs' enablement
6546319 - net: phy: Add clause 45 identifier to phy_device
1822aff - miiphy: Add function to retrieve MDIO bus list head
42b8ff2 - ldpaa_eth.c: Fix warning when PHYLIB is not enabled
16c470c - driver: net: fsl-mc: Add support of multiple phys for dpmac

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-bsp/u-boot/u-boot-qoriq-common_2018.09.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-bsp/u-boot/u-boot-qoriq-common_2018.09.inc b/recipes-bsp/u-boot/u-boot-qoriq-common_2018.09.inc
index a3a554c..06ec01b 100644
--- a/recipes-bsp/u-boot/u-boot-qoriq-common_2018.09.inc
+++ b/recipes-bsp/u-boot/u-boot-qoriq-common_2018.09.inc
@@ -12,7 +12,7 @@ LIC_FILES_CHKSUM = " \
 
 SRC_URI = "git://source.codeaurora.org/external/qoriq/qoriq-components/u-boot;nobranch=1 \
 "
-SRCREV= "c08de7c3c92d45a824500ad936f4d72465c181ec"
+SRCREV= "80b2d2bc4cab0a8363c9b7eba8064b1795f12670"
 
 S = "${WORKDIR}/git"
 PV_append = "+fslgit"
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 25+ messages in thread

* [PATCH 05/24] uefi: update to de8834d
  2019-04-01  9:12 [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
                   ` (2 preceding siblings ...)
  2019-04-01  9:12 ` [PATCH 04/24] u-boot: update to 80b2d2b C.r. Guo
@ 2019-04-01  9:12 ` C.r. Guo
  2019-04-01  9:12 ` [PATCH 06/24] openssl-qoriq: update to 472c9c3 C.r. Guo
                   ` (19 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: C.r. Guo @ 2019-04-01  9:12 UTC (permalink / raw)
  To: meta-freescale; +Cc: C.r. Guo

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

*update to lsdk 1903 tag
include the following changes
de8834d - binaries: update to LSDK-1903-TC1

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-bsp/uefi/uefi_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-bsp/uefi/uefi_git.bb b/recipes-bsp/uefi/uefi_git.bb
index 8b63f50..b170f15 100644
--- a/recipes-bsp/uefi/uefi_git.bb
+++ b/recipes-bsp/uefi/uefi_git.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://NXP-Binary-EULA;md5=343ec8f06efc37467a6de53686fa6315"
 inherit deploy fsl-eula-unpack
 
 SRC_URI = "git://github.com/NXP/qoriq-uefi-binary.git;fsl-eula=true;nobranch=1"
-SRCREV= "5b259f75decbc478bcab0612d79a58562bef1838"
+SRCREV= "de8834df31646c1dc5a3fe1c1bf09582e0b2781c"
 
 S = "${WORKDIR}/git"
 
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 25+ messages in thread

* [PATCH 06/24] openssl-qoriq: update to 472c9c3
  2019-04-01  9:12 [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
                   ` (3 preceding siblings ...)
  2019-04-01  9:12 ` [PATCH 05/24] uefi: update to de8834d C.r. Guo
@ 2019-04-01  9:12 ` C.r. Guo
  2019-04-01  9:12 ` [PATCH 07/24] cst: update to 2737b8b C.r. Guo
                   ` (18 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: C.r. Guo @ 2019-04-01  9:12 UTC (permalink / raw)
  To: meta-freescale; +Cc: C.r. Guo

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

*update to lsdk 1903 tag
include the following changes
472c9c3 - crypto/engine/eng_cryptodev.c: fix bignum<->crp conversion

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-connectivity/openssl/openssl-qoriq_1.1.0g.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-connectivity/openssl/openssl-qoriq_1.1.0g.bb b/recipes-connectivity/openssl/openssl-qoriq_1.1.0g.bb
index 3df7c1a..c80c33a 100644
--- a/recipes-connectivity/openssl/openssl-qoriq_1.1.0g.bb
+++ b/recipes-connectivity/openssl/openssl-qoriq_1.1.0g.bb
@@ -21,7 +21,7 @@ SRC_URI = "git://source.codeaurora.org/external/qoriq/qoriq-components/openssl;n
            file://0001-aes-asm-aes-armv4-bsaes-armv7-.pl-make-it-work-with-.patch \
           "
 
-SRCREV = "c2300d1fdb30a439f555b07f228d3bce498238d5"
+SRCREV = "472c9c380669eb7a26819a52598632f257b3e72b"
 
 PROVIDES = "openssl"
 
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 25+ messages in thread

* [PATCH 07/24] cst: update to 2737b8b
  2019-04-01  9:12 [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
                   ` (4 preceding siblings ...)
  2019-04-01  9:12 ` [PATCH 06/24] openssl-qoriq: update to 472c9c3 C.r. Guo
@ 2019-04-01  9:12 ` C.r. Guo
  2019-04-01  9:12 ` [PATCH 08/24] eth-config: update to 6164664 C.r. Guo
                   ` (17 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: C.r. Guo @ 2019-04-01  9:12 UTC (permalink / raw)
  To: meta-freescale; +Cc: C.r. Guo

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

*update to lsdk 1903 tag
include the following change
2737b8b - LX2160A:SD Boot: Adds input files to sign firmware images.
6be878a - Ls1028A: Add uni_pbi command in script to sign rcw image.
7aace25 - LS1028A: Add input files to sign the firmware images.
6d83dd8 - Removes "All Rights Reserved" Text.

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-devtools/cst/cst_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-devtools/cst/cst_git.bb b/recipes-devtools/cst/cst_git.bb
index 05d2d4c..8de37bc 100644
--- a/recipes-devtools/cst/cst_git.bb
+++ b/recipes-devtools/cst/cst_git.bb
@@ -11,7 +11,7 @@ inherit kernel-arch
 
 SRC_URI = "git://source.codeaurora.org/external/qoriq/qoriq-components/cst;nobranch=1 \
 "
-SRCREV = "f599f6126ae1a382a581dcd75e9ad2e34c79a183"
+SRCREV = "2737b8bca4432c3ef21ac675e949cb53d444a369"
 
 S = "${WORKDIR}/git"
 
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 25+ messages in thread

* [PATCH 08/24] eth-config: update to 6164664
  2019-04-01  9:12 [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
                   ` (5 preceding siblings ...)
  2019-04-01  9:12 ` [PATCH 07/24] cst: update to 2737b8b C.r. Guo
@ 2019-04-01  9:12 ` C.r. Guo
  2019-04-01  9:12 ` [PATCH 09/24] fmlib: update to 69a7047 C.r. Guo
                   ` (16 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: C.r. Guo @ 2019-04-01  9:12 UTC (permalink / raw)
  To: meta-freescale; +Cc: C.r. Guo

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

*update to lsdk 1903 tag
include the following changes
6164664 - eth_config: Add support for LS1046AFRWY

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-dpaa/eth-config/eth-config_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-dpaa/eth-config/eth-config_git.bb b/recipes-dpaa/eth-config/eth-config_git.bb
index 5255bd0..cfeae11 100644
--- a/recipes-dpaa/eth-config/eth-config_git.bb
+++ b/recipes-dpaa/eth-config/eth-config_git.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=47716bd5b656aa5e298a132a64d2d1e4"
 PR = "r2"
 
 SRC_URI = "git://source.codeaurora.org/external/qoriq/qoriq-components/eth-config;nobranch=1"
-SRCREV = "eefb06353c8c3db34d22c26825b66e921bce617d"
+SRCREV = "6164664070e45810c793f112781ebcedc979e132"
 
 S = "${WORKDIR}/git"
 
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 25+ messages in thread

* [PATCH 09/24] fmlib: update to 69a7047
  2019-04-01  9:12 [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
                   ` (6 preceding siblings ...)
  2019-04-01  9:12 ` [PATCH 08/24] eth-config: update to 6164664 C.r. Guo
@ 2019-04-01  9:12 ` C.r. Guo
  2019-04-01  9:12 ` [PATCH 10/24] aiopsl: update to 87d83d8 C.r. Guo
                   ` (15 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: C.r. Guo @ 2019-04-01  9:12 UTC (permalink / raw)
  To: meta-freescale; +Cc: C.r. Guo

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

*update to lsdk 1903 tag
include the following changes
69a7047 - fmlib handles conversion in FR Runtime API

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-dpaa/fmlib/fmlib_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-dpaa/fmlib/fmlib_git.bb b/recipes-dpaa/fmlib/fmlib_git.bb
index 6976813..880d768 100644
--- a/recipes-dpaa/fmlib/fmlib_git.bb
+++ b/recipes-dpaa/fmlib/fmlib_git.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=9c7bd5e45d066db084bdb3543d55b1ac"
 PR = "r1"
 
 SRC_URI = "git://source.codeaurora.org/external/qoriq/qoriq-components/fmlib;nobranch=1"
-SRCREV = "82d89adae917397324c5d74108305f6c9bae8d00"
+SRCREV = "69a70474cd8411d5a099c34f40760b6567d781d6"
 
 S = "${WORKDIR}/git"
 
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 25+ messages in thread

* [PATCH 10/24] aiopsl: update to 87d83d8
  2019-04-01  9:12 [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
                   ` (7 preceding siblings ...)
  2019-04-01  9:12 ` [PATCH 09/24] fmlib: update to 69a7047 C.r. Guo
@ 2019-04-01  9:12 ` C.r. Guo
  2019-04-01  9:12 ` [PATCH 11/24] dce: update to 0455555 C.r. Guo
                   ` (14 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: C.r. Guo @ 2019-04-01  9:12 UTC (permalink / raw)
  To: meta-freescale; +Cc: C.r. Guo

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

*update to lsdk 1903 tag
include the following changes
87d83d8 - AIOPSL-1233
26212e6 - Fix for AIOPSL-1232

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-dpaa2/aiopsl/aiopsl_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-dpaa2/aiopsl/aiopsl_git.bb b/recipes-dpaa2/aiopsl/aiopsl_git.bb
index 9ba1281..feff783 100644
--- a/recipes-dpaa2/aiopsl/aiopsl_git.bb
+++ b/recipes-dpaa2/aiopsl/aiopsl_git.bb
@@ -8,7 +8,7 @@ BASEDEPENDS = ""
 S = "${WORKDIR}/git"
 
 SRC_URI = "git://source.codeaurora.org/external/qoriq/qoriq-components/aiopsl;nobranch=1"
-SRCREV = "ec0e50b9bfe794b78bf0d91789f2a77dc4e8ceb4"
+SRCREV = "87d83d8e99770325cc7ad9e10965c9959e7cb828"
 
 do_configure[noexec] = "1"
 do_compile[noexec] = "1"
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 25+ messages in thread

* [PATCH 11/24] dce: update to 0455555
  2019-04-01  9:12 [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
                   ` (8 preceding siblings ...)
  2019-04-01  9:12 ` [PATCH 10/24] aiopsl: update to 87d83d8 C.r. Guo
@ 2019-04-01  9:12 ` C.r. Guo
  2019-04-01  9:12 ` [PATCH 12/24] mc: Upgrade version to 10.14.3 C.r. Guo
                   ` (13 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: C.r. Guo @ 2019-04-01  9:12 UTC (permalink / raw)
  To: meta-freescale; +Cc: C.r. Guo

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

*Update to lsdk 1903 tag
include the following changes:
0455555 - .gitmodules: use codeaurora url
d1add39 - Merge pull request #32 in DPAA2/dce from ~NXA07713/dce:jira/QSDK-5623-update-dce-license-files to master
b3c27ed - LICENSE: Remove GPL License
68a6dab - Merge pull request #31 in DPAA2/dce from ~NXA07713/dce:jira/QSDK-5623-update-dce-license-files to master
0f33f16 - LICENSE: Update License year and full BSD-3 text
0175bb4 - Merge pull request #30 in DPAA2/dce from ~NXA07713/dce:jira/QSDK-5621-dpdcei-object-fails-to-unassign-out-of-child-dprc to master
361e4d0 - dpdcei: Cleanup hanldes in dpdcei_deactivate
81fae16 - LX2160 Rev1: Edit warning for stateful ERR011568
ede610b - LX2160 Rev1: Print warning for stateful ERR011568
34133be - perf-test: Update output buffer allocation
c0b437e - Fix swp_init for LX2: set qman mode explicitly
aac02ee - perf-test: Correct CPU affine logic

*qbman update to
Update to lsdk 1903 tag
include the following changes:
a1af1e1 - Adding average pull/enqueue statistics and minor performance improvement.

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-dpaa2/dce/dce_git.bb | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/recipes-dpaa2/dce/dce_git.bb b/recipes-dpaa2/dce/dce_git.bb
index 7313ca7..2e0b453 100644
--- a/recipes-dpaa2/dce/dce_git.bb
+++ b/recipes-dpaa2/dce/dce_git.bb
@@ -1,13 +1,13 @@
 DESCRIPTION = "Decompression Compression Engine Userspace Utils"
 SECTION = "dpaa2"
 LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=338308e2a663929309c9929ab9495bb5"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=956df5ea6cfe0a1dcf2dee7ca37c0cdf"
 
 SRC_URI = "git://source.codeaurora.org/external/qoriq/qoriq-components/dce;nobranch=1 \
       git://source.codeaurora.org/external/qoriq/qoriq-components/qbman_userspace;nobranch=1;name=qbman;destsuffix=git/lib/qbman_userspace \
 "
-SRCREV = "49389aa57cc94e0503f53c6b33e4b358ccf42eb5"
-SRCREV_qbman = "383ceac0c09b1e38f2a8b1cf42822686b4cf15f3"
+SRCREV = "0455555e5ce6f469d0c60e25f14a2340054a531a"
+SRCREV_qbman = "a1af1e1528fe2e1ce0df1e6d9170b6c239c8ab4f"
 
 S = "${WORKDIR}/git"
 
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 25+ messages in thread

* [PATCH 12/24] mc: Upgrade version to 10.14.3
  2019-04-01  9:12 [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
                   ` (9 preceding siblings ...)
  2019-04-01  9:12 ` [PATCH 11/24] dce: update to 0455555 C.r. Guo
@ 2019-04-01  9:12 ` C.r. Guo
  2019-04-01  9:12 ` [PATCH 13/24] restool: update to 8b1dd40 C.r. Guo
                   ` (12 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: C.r. Guo @ 2019-04-01  9:12 UTC (permalink / raw)
  To: meta-freescale; +Cc: C.r. Guo

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

*Update to lsdk 1903 tag
include the following changes:
bd64d18 - Add the prebuilt binaries of mc 10.14.3 release

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 .../management-complex_10.12.0.bb                  | 40 ----------------------
 .../management-complex_10.14.3.bb                  | 40 ++++++++++++++++++++++
 2 files changed, 40 insertions(+), 40 deletions(-)
 delete mode 100644 recipes-dpaa2/management-complex/management-complex_10.12.0.bb
 create mode 100644 recipes-dpaa2/management-complex/management-complex_10.14.3.bb

diff --git a/recipes-dpaa2/management-complex/management-complex_10.12.0.bb b/recipes-dpaa2/management-complex/management-complex_10.12.0.bb
deleted file mode 100644
index 6b5d0a8..0000000
--- a/recipes-dpaa2/management-complex/management-complex_10.12.0.bb
+++ /dev/null
@@ -1,40 +0,0 @@
-SUMMARY = "DPAA2 Management Complex Firmware"
-LICENSE = "NXP-Binary-EULA"
-LIC_FILES_CHKSUM = "file://NXP-Binary-EULA.txt;md5=afcb1213054384820390d410ab62105f"
-
-inherit deploy fsl-eula-unpack
-
-INHIBIT_DEFAULT_DEPS = "1"
-
-SRC_URI = "git://github.com/nxp/qoriq-mc-binary;fsl-eula=true;nobranch=1"
-SRCREV = "cdb5af4b25ec1ee3e9d26ece41efaa1556b28bac"
-
-S = "${WORKDIR}/git"
-
-REGLEX_ls2088a = "ls2088a"
-REGLEX_ls1088a = "ls1088a"
-REGLEX_lx2160a = "lx2160a"
-
-do_install () {
-    install -d ${D}/boot
-    install -m 755 ${S}/${REGLEX}/*.itb ${D}/boot
-}
-
-do_deploy () {
-    install -d ${DEPLOYDIR}/mc_app
-    install -m 755 ${S}/${REGLEX}/*.itb ${DEPLOYDIR}/mc_app
-    # make a symlink to the latest binary
-    for mc_binary in `ls ${DEPLOYDIR}/mc_app |sort`;do
-        ln -sfT ${mc_binary} ${DEPLOYDIR}/mc_app/mc.itb
-    done
-}
-addtask deploy before do_build after do_install
-
-PACKAGES += "${PN}-image"
-FILES_${PN}-image += "/boot"
-
-INHIBIT_PACKAGE_STRIP = "1"
-
-COMPATIBLE_MACHINE = "(qoriq-arm64)"
-PACKAGE_ARCH = "${MACHINE_ARCH}"
-
diff --git a/recipes-dpaa2/management-complex/management-complex_10.14.3.bb b/recipes-dpaa2/management-complex/management-complex_10.14.3.bb
new file mode 100644
index 0000000..b77c4fb
--- /dev/null
+++ b/recipes-dpaa2/management-complex/management-complex_10.14.3.bb
@@ -0,0 +1,40 @@
+SUMMARY = "DPAA2 Management Complex Firmware"
+LICENSE = "NXP-Binary-EULA"
+LIC_FILES_CHKSUM = "file://NXP-Binary-EULA.txt;md5=afcb1213054384820390d410ab62105f"
+
+inherit deploy fsl-eula-unpack
+
+INHIBIT_DEFAULT_DEPS = "1"
+
+SRC_URI = "git://github.com/nxp/qoriq-mc-binary;fsl-eula=true;nobranch=1"
+SRCREV = "bd64d1824681b009fd83b0a3699e45b117b72695"
+
+S = "${WORKDIR}/git"
+
+REGLEX_ls2088a = "ls2088a"
+REGLEX_ls1088a = "ls1088a"
+REGLEX_lx2160a = "lx2160a"
+
+do_install () {
+    install -d ${D}/boot
+    install -m 755 ${S}/${REGLEX}/*.itb ${D}/boot
+}
+
+do_deploy () {
+    install -d ${DEPLOYDIR}/mc_app
+    install -m 755 ${S}/${REGLEX}/*.itb ${DEPLOYDIR}/mc_app
+    # make a symlink to the latest binary
+    for mc_binary in `ls ${DEPLOYDIR}/mc_app |sort`;do
+        ln -sfT ${mc_binary} ${DEPLOYDIR}/mc_app/mc.itb
+    done
+}
+addtask deploy before do_build after do_install
+
+PACKAGES += "${PN}-image"
+FILES_${PN}-image += "/boot"
+
+INHIBIT_PACKAGE_STRIP = "1"
+
+COMPATIBLE_MACHINE = "(qoriq-arm64)"
+PACKAGE_ARCH = "${MACHINE_ARCH}"
+
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 25+ messages in thread

* [PATCH 13/24] restool: update to 8b1dd40
  2019-04-01  9:12 [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
                   ` (10 preceding siblings ...)
  2019-04-01  9:12 ` [PATCH 12/24] mc: Upgrade version to 10.14.3 C.r. Guo
@ 2019-04-01  9:12 ` C.r. Guo
  2019-04-01  9:12 ` [PATCH 14/24] dpdk: update to c0fe1b9 C.r. Guo
                   ` (11 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: C.r. Guo @ 2019-04-01  9:12 UTC (permalink / raw)
  To: meta-freescale; +Cc: C.r. Guo

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

*Update to lsdk 1903 tag
include the following changes:
8b1dd40 - dprc: fix compile error (only witn gcc 8.x)
8eb494d - dprc: enable DPDMUX_METHOD_CUSTOM in dpdmux generate dpl
dc120ff - add support for num cgs in restool for mc 10.14

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-dpaa2/restool/restool_git.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes-dpaa2/restool/restool_git.bb b/recipes-dpaa2/restool/restool_git.bb
index 382e314..521aa7a 100644
--- a/recipes-dpaa2/restool/restool_git.bb
+++ b/recipes-dpaa2/restool/restool_git.bb
@@ -7,7 +7,7 @@ RDEPENDS_${PN} += "bash dtc"
 SRC_URI = "git://source.codeaurora.org/external/qoriq/qoriq-components/restool;nobranch=1 \
     file://0001-restool-fix-build-error-with-gcc7.patch"
 
-SRCREV = "2b4dd211d5c584d5f81cfa530a3a93854dc1d490"
+SRCREV = "8b1dd407bbd48b4f1a50c71b78083112a6397619"
 
 S = "${WORKDIR}/git"
 
@@ -17,6 +17,6 @@ do_install () {
     oe_runmake install DESTDIR=${D}
 }
 
-COMPATIBLE_MACHINE = "(ls2080ardb|ls2088ardb|ls1088ardb|ls1043ardb|ls1046ardb)"
+COMPATIBLE_MACHINE = "(qoriq-arm64)"
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 25+ messages in thread

* [PATCH 14/24] dpdk: update to c0fe1b9
  2019-04-01  9:12 [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
                   ` (11 preceding siblings ...)
  2019-04-01  9:12 ` [PATCH 13/24] restool: update to 8b1dd40 C.r. Guo
@ 2019-04-01  9:12 ` C.r. Guo
  2019-04-01  9:12 ` [PATCH 15/24] ovs-dpdk: Upgrade version to 2.10 C.r. Guo
                   ` (10 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: C.r. Guo @ 2019-04-01  9:12 UTC (permalink / raw)
  To: meta-freescale; +Cc: C.r. Guo

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

*Update to lsdk 1903 tag
include the following changes:
c0fe1b9 - PVT: LSDK Legal fix
e4236e8 - PVT: examples/qdma_demo: fix mem to mem restart issue
ef25767 - Merge pull request #903 in GITAM/dpdk from DPDK-1630-lsdk-19.03 to 17.11-qoriq-dev
9f0b86c - PVT: update NXP README for DPDK
4bd98af - PVT: drivers/event: fix dead code issue reported by coverity
ccbfa23 - Merge pull request #901 in GITAM/dpdk from DPDK-1630-lsdk-19.03 to 17.11-qoriq-dev
dd8cd08 - PVT: mempool: fix the LS1043 errata logic
e21296a - net/dpaa: add the errata define in datapath
11d1691 - add missing static keyword to globals
77c31f0 - bus/fslmc: remove unneeded strdup
4952d1d - bus/fslmc: don't log error for other devices
520a795 - vfio: do not needlessly setup device in secondary process
c584ff9 - gro: fix overflow of TCP payload calculation
e7f2d15 - doc: add cross-compilation in sample apps guide
e6700bf - bus/dpaa: fix build with gcc 9.0
b8ee5c4 - app/pdump: fix port id storage size
b2e2970 - Merge pull request #900 in GITAM/dpdk from DPDK-1627 to 17.11-qoriq-dev
074cd1d - PVT: net/dpaa2: pre-allocate aligned fqids for rx queues
a8ac57a - PVT: bus/dpaa: export qman fqid range allocation function
61ab58f - Merge pull request #899 in GITAM/dpdk from feature/DPDK-804-dpaa1-support-multiprocess-apps to 17.11-qoriq-dev
9fbf216 - drivers/crypto: update the SEC HW inline desc for sharing mode
fba143f - Merge pull request #895 in GITAM/dpdk from DPDK-1628 to 17.11-qoriq-dev
195da8c - PVT: crypto/dpaa2_sec: use mempool ptov conversion wherever applicable
88fe6c2 - PVT: net/dpaa2: use mempool ptov conversion wherever applicable
692ce13 - PVT: mempool/dpaa2: add fast ptov for mempool having single memseg

*Refresh patch
*Package arm64-dpaa-linuxapp-gcc/*.a  as part of ${PN}

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-extended/dpdk/dpdk_17.11.bb | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/recipes-extended/dpdk/dpdk_17.11.bb b/recipes-extended/dpdk/dpdk_17.11.bb
index f9fe91e..2eceebe 100644
--- a/recipes-extended/dpdk/dpdk_17.11.bb
+++ b/recipes-extended/dpdk/dpdk_17.11.bb
@@ -11,9 +11,9 @@ inherit module
 
 SRC_URI = "git://source.codeaurora.org/external/qoriq/qoriq-components/dpdk;nobranch=1 \
     file://add-RTE_KERNELDIR_OUT-to-split-kernel-bu.patch \
-    file://0001-fix-gcc-8-build-error.patch \
+    file://0001-add-Wno-cast-function-type.patch \
 "
-SRCREV = "f451d2beff458833f4da6682694ebc5c03d595c6"
+SRCREV = "c0fe1b99b562a4015423e8ff748bfb0f55a68c05"
 
 S = "${WORKDIR}/git"
 
@@ -100,5 +100,8 @@ FILES_${PN}-dev += "${datadir}/mk ${datadir}/scripts \
 "
 FILES_${PN}-examples += "${datadir}/examples"
 
-FILES_${PN}-staticdev += "/usr/share/dpdk/cmdif/lib/*.a"
+FILES_${PN}-staticdev += "/usr/share/dpdk/cmdif/lib/*.a \ 
+    /usr/share/examples/cmdif/lib/arm64-dpaa-linuxapp-gcc/*.a \
+    /usr/share/examples/cmdif/lib/arm64-dpaa-linuxapp-gcc/lib/*.a \
+"
 COMPATIBLE_MACHINE = "(qoriq)"
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 25+ messages in thread

* [PATCH 15/24] ovs-dpdk: Upgrade version to 2.10
  2019-04-01  9:12 [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
                   ` (12 preceding siblings ...)
  2019-04-01  9:12 ` [PATCH 14/24] dpdk: update to c0fe1b9 C.r. Guo
@ 2019-04-01  9:12 ` C.r. Guo
  2019-04-01  9:12 ` [PATCH 16/24] linux-qoriq/4.19 : add recipes C.r. Guo
                   ` (9 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: C.r. Guo @ 2019-04-01  9:12 UTC (permalink / raw)
  To: meta-freescale; +Cc: C.r. Guo

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

*update to lsdk 1903 tag
include the following changes:
4d82df3 - netdev-dpdk: have env based configurable number of packet buffers
92d8a38 - travis: Remove 'sudo' configuration.
1a5ba65 - dpif-netlink: Free leaked ofpbuf by using ofpbuf_delete
d3ad005 - OVN: update RA next_announce according to {min, max}_interval
93a59ee - rconn: Avoid occasional immediate connection failures.
8896ba7 - dpdk: Fix case-sensitivity of dpdk-init knob.
a552f3a - ofp-actions: Make all actions a multiple of OFPACT_ALIGNTO bytes.
547e119 - conntrack: Fix L4 csum for V6 extension hdr pkts.
5b17e49 - packets: Change return type for 'packet_csum_upperlayer6()'.
b7478c8 - ovsdb-client: Fix typo.
5520531 - ofctl: break the loop if ovs_pcap_read returns error
8e02ed4 - Revert "ovs-tcpdump: Fix an undefined variable"
2a2ca07 - netlink: added check to prevent netlink attribute overflow
a508017 - conntrack: Keep Address Sanitizer happy.
6ecc5fc - Initialize the right database.
fc8e73f - monitor: Fix crash when monitor condition adds new columns.
bf94ce0 - conntrack: Exclude l2 padding in 'conn_key_extract()'.
057ac78 - dp-packet: Add 'dp_packet_l3_size()'.

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 .../0001-automake-remove-static-key-word.patch     | 27 ------------
 recipes-extended/ovs-dpdk/ovs-dpdk_2.10.bb         | 49 +++++++++++++++++++++
 recipes-extended/ovs-dpdk/ovs-dpdk_2.9.bb          | 50 ----------------------
 3 files changed, 49 insertions(+), 77 deletions(-)
 delete mode 100644 recipes-extended/ovs-dpdk/ovs-dpdk/0001-automake-remove-static-key-word.patch
 create mode 100644 recipes-extended/ovs-dpdk/ovs-dpdk_2.10.bb
 delete mode 100644 recipes-extended/ovs-dpdk/ovs-dpdk_2.9.bb

diff --git a/recipes-extended/ovs-dpdk/ovs-dpdk/0001-automake-remove-static-key-word.patch b/recipes-extended/ovs-dpdk/ovs-dpdk/0001-automake-remove-static-key-word.patch
deleted file mode 100644
index e438e47..0000000
--- a/recipes-extended/ovs-dpdk/ovs-dpdk/0001-automake-remove-static-key-word.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 9327cc35bc9e7040d9de743caebd0fee72bbd619 Mon Sep 17 00:00:00 2001
-From: Chunrong Guo <chunrong.guo@nxp.com>
-Date: Fri, 12 Oct 2018 10:53:00 +0800
-Subject: [PATCH] automake: remove static key word
-
-Upstream-Status: Inappropriate [embedded specific]
-
-Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
----
- lib/automake.mk | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/lib/automake.mk b/lib/automake.mk
-index 8ecad12..f9016a0 100644
---- a/lib/automake.mk
-+++ b/lib/automake.mk
-@@ -439,6 +439,7 @@ lib/dhparams.c: lib/dh1024.pem lib/dh2048.pem lib/dh4096.pem
- 	 openssl dhparam -C -in $(srcdir)/lib/dh2048.pem -noout &&	\
- 	 openssl dhparam -C -in $(srcdir)/lib/dh4096.pem -noout)	\
- 	| sed 's/\(get_dh[0-9]*\)()/\1(void)/' > lib/dhparams.c.tmp &&  \
-+        sed -i '/\(get_dh[0-9]*\)(void)/s/^static//' lib/dhparams.c.tmp && \
- 	mv lib/dhparams.c.tmp lib/dhparams.c
- else
- lib_libopenvswitch_la_SOURCES += lib/stream-nossl.c
--- 
-2.7.4
-
diff --git a/recipes-extended/ovs-dpdk/ovs-dpdk_2.10.bb b/recipes-extended/ovs-dpdk/ovs-dpdk_2.10.bb
new file mode 100644
index 0000000..3ffa9a0
--- /dev/null
+++ b/recipes-extended/ovs-dpdk/ovs-dpdk_2.10.bb
@@ -0,0 +1,49 @@
+DESCRIPTION = "OVS DPDK"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=1ce5d23a6429dff345518758f13aaeab"
+
+DEPENDS = "dpdk python-six-native coreutils-native"
+RDEPENDS_${PN} = "bash libcrypto libssl python"
+
+inherit pythonnative
+
+SRC_URI = "git://source.codeaurora.org/external/qoriq/qoriq-components/ovs-dpdk;nobranch=1 \
+"
+SRCREV = "4d82df36993ca502d33afa305fbd2a41a950106d"
+
+S = "${WORKDIR}/git"
+
+DPAA_VER ?= "dpaa"
+export RTE_TARGET = "${ARCH}-${DPAA_VER}-linuxapp-gcc"
+
+EXTRA_OEMAKE += 'ARCH="${ARCH}" CROSS="${TARGET_PREFIX}" \
+    CPU_CFLAGS="--sysroot=${STAGING_DIR_HOST}" RTE_SDK="${S}" \
+    OPENSSL_PATH="${STAGING_DIR_HOST}" RTE_KERNELDIR="${STAGING_KERNEL_DIR}" \
+    RTE_KERNELDIR_OUT="${STAGING_KERNEL_BUILDDIR}" \
+'
+
+do_configure() {
+	export SYSROOT_DPDK=${PKG_CONFIG_SYSROOT_DIR}
+	${S}/boot.sh
+	${S}/configure --host aarch64-fsl-linux --with-dpdk=${SYSROOT_DPDK}/usr/share/${RTE_TARGET} --with-openssl=${SYSROOT_DPDK}/usr CFLAGS="-g -Wno-cast-align -Ofast" 
+}
+
+do_compile() {
+	oe_runmake O="${RTE_TARGET}" T="${RTE_TARGET}" 
+}
+
+do_install() {
+	install -d ${D}${bindir}/ovs-dpdk
+	cp -rf  ${S}/ovsdb/ovsdb-tool ${D}${bindir}/ovs-dpdk
+	cp -rf  ${S}/ovsdb/ovsdb-server ${D}${bindir}/ovs-dpdk
+	cp -rf  ${S}/vswitchd/vswitch.ovsschema ${D}${bindir}/ovs-dpdk
+	cp -rf  ${S}/vswitchd/ovs-vswitchd ${D}${bindir}/ovs-dpdk
+	cp -rf  ${S}/utilities/ovs-vsctl ${D}${bindir}/ovs-dpdk
+	cp -rf  ${S}/utilities/ovs-ofctl ${D}${bindir}/ovs-dpdk
+	chmod 777 -R ${D}${bindir}/ovs-dpdk/*
+}
+
+ALLOW_EMPTY_${PN} = "1"
+INHIBIT_PACKAGE_STRIP = "1"
+PACKAGE_ARCH = "${MACHINE_ARCH}"
+COMPATIBLE_MACHINE = "(qoriq-arm64)"
diff --git a/recipes-extended/ovs-dpdk/ovs-dpdk_2.9.bb b/recipes-extended/ovs-dpdk/ovs-dpdk_2.9.bb
deleted file mode 100644
index b1994c5..0000000
--- a/recipes-extended/ovs-dpdk/ovs-dpdk_2.9.bb
+++ /dev/null
@@ -1,50 +0,0 @@
-DESCRIPTION = "OVS DPDK"
-LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://COPYING;md5=17b2c9d4c70853a09c0e143137754b35"
-
-DEPENDS = "dpdk python-six-native coreutils-native"
-RDEPENDS_${PN} = "bash libcrypto libssl python"
-
-inherit pythonnative
-
-SRC_URI = "git://source.codeaurora.org/external/qoriq/qoriq-components/ovs-dpdk;nobranch=1 \
-    file://0001-automake-remove-static-key-word.patch \
-"
-SRCREV = "24eec4133f03b0a5a8f903577bc87603577150c0"
-
-S = "${WORKDIR}/git"
-
-DPAA_VER ?= "dpaa"
-export RTE_TARGET = "${ARCH}-${DPAA_VER}-linuxapp-gcc"
-
-EXTRA_OEMAKE += 'ARCH="${ARCH}" CROSS="${TARGET_PREFIX}" \
-    CPU_CFLAGS="--sysroot=${STAGING_DIR_HOST}" RTE_SDK="${S}" \
-    OPENSSL_PATH="${STAGING_DIR_HOST}" RTE_KERNELDIR="${STAGING_KERNEL_DIR}" \
-    RTE_KERNELDIR_OUT="${STAGING_KERNEL_BUILDDIR}" \
-'
-
-do_configure() {
-	export SYSROOT_DPDK=${PKG_CONFIG_SYSROOT_DIR}
-	${S}/boot.sh
-	${S}/configure --host aarch64-fsl-linux --with-dpdk=${SYSROOT_DPDK}/usr/share/${RTE_TARGET} --with-openssl=${SYSROOT_DPDK}/usr CFLAGS="-g -Wno-cast-align -Ofast" 
-}
-
-do_compile() {
-	oe_runmake O="${RTE_TARGET}" T="${RTE_TARGET}" 
-}
-
-do_install() {
-	install -d ${D}${bindir}/ovs-dpdk
-	cp -rf  ${S}/ovsdb/ovsdb-tool ${D}${bindir}/ovs-dpdk
-	cp -rf  ${S}/ovsdb/ovsdb-server ${D}${bindir}/ovs-dpdk
-	cp -rf  ${S}/vswitchd/vswitch.ovsschema ${D}${bindir}/ovs-dpdk
-	cp -rf  ${S}/vswitchd/ovs-vswitchd ${D}${bindir}/ovs-dpdk
-	cp -rf  ${S}/utilities/ovs-vsctl ${D}${bindir}/ovs-dpdk
-	cp -rf  ${S}/utilities/ovs-ofctl ${D}${bindir}/ovs-dpdk
-	chmod 777 -R ${D}${bindir}/ovs-dpdk/*
-}
-
-ALLOW_EMPTY_${PN} = "1"
-INHIBIT_PACKAGE_STRIP = "1"
-PACKAGE_ARCH = "${MACHINE_ARCH}"
-COMPATIBLE_MACHINE = "(ls2080ardb|ls2084ardb|ls2088a|ls1043a|ls1046a|ls1088a)"
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 25+ messages in thread

* [PATCH 16/24] linux-qoriq/4.19 : add recipes
  2019-04-01  9:12 [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
                   ` (13 preceding siblings ...)
  2019-04-01  9:12 ` [PATCH 15/24] ovs-dpdk: Upgrade version to 2.10 C.r. Guo
@ 2019-04-01  9:12 ` C.r. Guo
  2019-04-01  9:12 ` [PATCH 17/24] linux-qoriq/4.14:update to 7e52442 C.r. Guo
                   ` (8 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: C.r. Guo @ 2019-04-01  9:12 UTC (permalink / raw)
  To: meta-freescale; +Cc: C.r. Guo

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

*Update to lsdk 1903 tag
include the following changes:
c0c2141 - vfio/fsl-mc: Reset container on last reference release
628aca9 - Revert "net: phy: aquantia: add pause frame support"
99f8355 - Update the year of NXP copyright
66ca144 - powerpc/dts/fsl: add crypto node alias for B4
1d98121 - arm64: dts: ls1043a: add crypto node alias also for qds
bef16ab - soc: fsl: dpio: Increase timeout for QBMan Management Commands
deb34f2 - soc: fsl: qbman: avoid race in clearing QMan interrupt
ab14cd9 - i2c: imx: defer probing on dma channel request
a48d147 - i2c: imx: fix dma_request_chan error handling
a8e3023 - i2c: imx: improve the error handling in i2c_imx_dma_request()
dd6f891 - i2c: imx: notify about real errors on dma i2c_imx_dma_request
9335f72 - crypto: caam - fix building job ring as module
0bc1219 - soc/fsl/bqman: page align iommu mapping sizes
aabe1ef - sdk: dts: remove dma-coherent from sdk dts for QE
68aad5f - net: phy: aquantia: add pause frame support
4f96e7e - staging: fsl-dpaa2/mac: Fix bug in pause frame advertising
1f10c93 - staging: fsl-dpaa2/mac: add pause frames support for managed phys
81c18ad - dpaa2-eth: Update pause frames settings on link up
473f1b9 - dpaa2-eth: fix race condition with bql frame accounting
0ccd3c2 - dpaa2-eth: configure the cache stashing amount on a queue
8992d4e - crypto: caam - move shared symbols in a common location
f8d1f310 - dmaengine: fsl-edma: dma map slave device address
75ea596 - arm64: dts: lx2160a: add flextimer entry

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-kernel/linux/linux-qoriq_4.19.bb | 72 ++++++++++++++++++++++++++++++++
 1 file changed, 72 insertions(+)
 create mode 100644 recipes-kernel/linux/linux-qoriq_4.19.bb

diff --git a/recipes-kernel/linux/linux-qoriq_4.19.bb b/recipes-kernel/linux/linux-qoriq_4.19.bb
new file mode 100644
index 0000000..c5105d0
--- /dev/null
+++ b/recipes-kernel/linux/linux-qoriq_4.19.bb
@@ -0,0 +1,72 @@
+inherit kernel qoriq_build_64bit_kernel siteinfo
+inherit fsl-kernel-localversion
+
+SUMMARY = "Linux Kernel for NXP QorIQ platforms"
+SECTION = "kernel"
+LICENSE = "GPLv2"
+LIC_FILES_CHKSUM = "file://COPYING;md5=bbea815ee2795b2f4230826c0c6b8814"
+
+SRC_URI = "git://source.codeaurora.org/external/qoriq/qoriq-components/linux;nobranch=1 \
+"
+SRCREV = "c0c2141106240d61e7b9d7c80284711d54f6ae91"
+
+SRC_URI += " file://0001-Makfefile-add-cflags.patch \
+"
+S = "${WORKDIR}/git"
+
+DEPENDS_append = " libgcc"
+# not put Images into /boot of rootfs, install kernel-image if needed
+RDEPENDS_${KERNEL_PACKAGE_NAME}-base = ""
+
+KERNEL_CC_append = " ${TOOLCHAIN_OPTIONS}"
+KERNEL_LD_append = " ${TOOLCHAIN_OPTIONS}"
+KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"
+
+ZIMAGE_BASE_NAME = "zImage-${PKGE}-${PKGV}-${PKGR}-${MACHINE}-${DATETIME}"
+ZIMAGE_BASE_NAME[vardepsexclude] = "DATETIME"
+
+SCMVERSION ?= "y"
+LOCALVERSION = ""
+DELTA_KERNEL_DEFCONFIG ?= ""
+DELTA_KERNEL_DEFCONFIG_prepend_qoriq-arm64 = "lsdk.config "
+DELTA_KERNEL_DEFCONFIG_prepend_fsl-lsch2-32b = "multi_v7_lpae.config multi_v8.config lsdk.config "
+DELTA_KERNEL_DEFCONFIG_prepend_ls102xa = "multi_v7_lpae.config lsdk.config "
+
+do_merge_delta_config[depends] += "virtual/${TARGET_PREFIX}gcc:do_populate_sysroot"
+do_merge_delta_config[dirs] = "${B}"
+
+do_merge_delta_config() {
+    # create config with make config
+    oe_runmake  -C ${S} O=${B} ${KERNEL_DEFCONFIG}
+    
+    # check if bigendian is enabled
+    if [ "${SITEINFO_ENDIANNESS}" = "be" ]; then
+        echo "CONFIG_CPU_BIG_ENDIAN=y" >> .config
+        echo "CONFIG_MTD_CFI_BE_BYTE_SWAP=y" >> .config
+    fi
+
+    # add config fragments
+    for deltacfg in ${DELTA_KERNEL_DEFCONFIG}; do
+        if [ -f ${S}/arch/${ARCH}/configs/${deltacfg} ]; then
+            oe_runmake  -C ${S} O=${B} ${deltacfg}
+        elif [ -f "${WORKDIR}/${deltacfg}" ]; then
+            ${S}/scripts/kconfig/merge_config.sh -m .config ${WORKDIR}/${deltacfg}
+        elif [ -f "${deltacfg}" ]; then
+            ${S}/scripts/kconfig/merge_config.sh -m .config ${deltacfg}
+        fi
+    done
+    cp .config ${WORKDIR}/defconfig
+}
+addtask merge_delta_config before do_preconfigure after do_patch
+
+# The link of dts folder is needed for 32b compile of aarch64 targets(e.g. ls1043ardb-32b)
+do_compile_prepend_fsl-lsch2-32b() {
+    ln -sfT ${STAGING_KERNEL_DIR}/arch/arm64/boot/dts/freescale ${STAGING_KERNEL_DIR}/arch/arm/boot/dts/freescale
+}
+
+do_install_prepend_fsl-lsch2-32b() {
+    rm -f ${STAGING_KERNEL_DIR}/arch/arm/boot/dts/freescale
+}
+
+FILES_${KERNEL_PACKAGE_NAME}-image += "/boot/zImage*"
+COMPATIBLE_MACHINE = "(qoriq)"
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 25+ messages in thread

* [PATCH 17/24] linux-qoriq/4.14:update to 7e52442
  2019-04-01  9:12 [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
                   ` (14 preceding siblings ...)
  2019-04-01  9:12 ` [PATCH 16/24] linux-qoriq/4.19 : add recipes C.r. Guo
@ 2019-04-01  9:12 ` C.r. Guo
  2019-04-01  9:12 ` [PATCH 18/24] linux-qoriq/4.9: remove recipes C.r. Guo
                   ` (7 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: C.r. Guo @ 2019-04-01  9:12 UTC (permalink / raw)
  To: meta-freescale; +Cc: C.r. Guo

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

*update to lsdk 1903 tag
include the following changes:
7e52442 - vfio/fsl-mc: Reset container on last reference release
66346b1 - Revert "net: phy: aquantia: add pause frame support"
5a51f09 - Merge branch 'linux-4.14-nxp' into linux-4.14 on Mar 21, 2019
0412772 - PCI: controller: dwc: Do not let PCIE_DW_PLAT_HOST default to yes
55f1e5e - i2c: imx: defer probing on dma channel request
c42701e - i2c: imx: fix dma_request_chan error handling
e16c8a1 - i2c: imx: improve the error handling in i2c_imx_dma_request()
434a13d - i2c: imx: notify about real errors on dma i2c_imx_dma_request
ba46a4b - powerpc/dts/fsl: add crypto node alias for B4
1c0ec67 - arm64: dts: ls1043a: add crypto node alias also for qds
eb96cdd - soc: fsl: dpio: Increase timeout for QBMan Management Commands
a695286 - soc: fsl: qbman: avoid race in clearing QMan interrupt
07977ec - drivers: soc: fsl: fix problem of compiling qixis driver
0529a6d - PCI: endpoint: Correcting nonstandard NXP copyright
70827e4 - Merge branch 'linux-4.14-nxp' into linux-4.14 on Mar 20, 2019
2a71b28 - crypto: caam - fix building job ring as module
b87ba6a - soc/fsl/bqman: page align iommu mapping sizes
d2e2129 - sdk: dts: remove dma-coherent from sdk dts for QE
788e297 - net: phy: aquantia: add pause frame support
fcc8208 - dpaa2-eth: Update pause frames settings on link up
4c86a9c - dpaa2-eth: fix race condition with bql frame accounting
e0d959e - dpaa2-eth: configure the cache stashing amount on a queue
bafb6b5 - staging: fsl-dpaa2/mac: Fix bug in pause frame advertising
0ed08fd - staging: fsl-dpaa2/mac: add pause frames support for managed phys
adcaa66 - of/device: Set bus DMA mask as appropriate
7f97665 - iommu/dma: Respect bus DMA limit for IOVAs

*refresh patches

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 .../0001-Makefile-fix-gcc-8-build-error.patch      | 25 ---------------------
 .../linux-qoriq/0001-Makfefile-add-cflags.patch    | 26 ++++++++++++++++++++++
 .../linux-qoriq/0001-fix-gcc8-build-error.patch    | 25 ---------------------
 recipes-kernel/linux/linux-qoriq_4.14.bb           |  4 ++--
 4 files changed, 28 insertions(+), 52 deletions(-)
 delete mode 100644 recipes-kernel/linux/linux-qoriq/0001-Makefile-fix-gcc-8-build-error.patch
 create mode 100644 recipes-kernel/linux/linux-qoriq/0001-Makfefile-add-cflags.patch
 delete mode 100644 recipes-kernel/linux/linux-qoriq/0001-fix-gcc8-build-error.patch

diff --git a/recipes-kernel/linux/linux-qoriq/0001-Makefile-fix-gcc-8-build-error.patch b/recipes-kernel/linux/linux-qoriq/0001-Makefile-fix-gcc-8-build-error.patch
deleted file mode 100644
index b4c4aed..0000000
--- a/recipes-kernel/linux/linux-qoriq/0001-Makefile-fix-gcc-8-build-error.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 5066b8f46b0f2348881923491b93825ac04d13d2 Mon Sep 17 00:00:00 2001
-From: Chunrong Guo <chunrong.guo@nxp.com>
-Date: Sat, 29 Sep 2018 14:12:34 +0800
-Subject: [PATCH] Makefile: fix gcc-8 build error
-
-Signed-off-by: BJ DevOps Team <bjdevops@NXP1.onmicrosoft.com>
----
- Makefile | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/Makefile b/Makefile
-index 53d57ac..b7c5fd4 100644
---- a/Makefile
-+++ b/Makefile
-@@ -395,6 +395,7 @@ LINUXINCLUDE	+= $(filter-out $(LINUXINCLUDE),$(USERINCLUDE))
- KBUILD_AFLAGS   := -D__ASSEMBLY__
- KBUILD_CFLAGS   := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \
- 		   -fno-strict-aliasing -fno-common \
-+                   -Wno-packed-not-aligned -Wno-tautological-compare \
- 		   -Werror-implicit-function-declaration \
- 		   -Wno-format-security \
- 		   -std=gnu89
--- 
-1.8.3.1
-
diff --git a/recipes-kernel/linux/linux-qoriq/0001-Makfefile-add-cflags.patch b/recipes-kernel/linux/linux-qoriq/0001-Makfefile-add-cflags.patch
new file mode 100644
index 0000000..b01545f
--- /dev/null
+++ b/recipes-kernel/linux/linux-qoriq/0001-Makfefile-add-cflags.patch
@@ -0,0 +1,26 @@
+From e2283cc7582ba82f346b05fdb38f0057e54de7fa Mon Sep 17 00:00:00 2001
+From: Chunrong Guo <chunrong.guo@nxp.com>
+Date: Tue, 12 Mar 2019 03:52:03 +0100
+Subject: [PATCH] Makfefile: add cflags
+
+Signed-off-by: C.r. Guo <nxa13725@lsv07004.swis.us-cdc01.nxp.com>
+---
+ Makefile | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Makefile b/Makefile
+index 967692b..ae395cd 100644
+--- a/Makefile
++++ b/Makefile
+@@ -417,7 +417,7 @@ LINUXINCLUDE    := \
+ KBUILD_AFLAGS   := -D__ASSEMBLY__
+ KBUILD_CFLAGS   := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \
+ 		   -fno-strict-aliasing -fno-common -fshort-wchar \
+-		   -Werror-implicit-function-declaration \
++		   -Werror-implicit-function-declaration -Wno-misleading-indentation -Wno-tautological-compare \
+ 		   -Wno-format-security \
+ 		   -std=gnu89
+ KBUILD_CPPFLAGS := -D__KERNEL__
+-- 
+2.7.4
+
diff --git a/recipes-kernel/linux/linux-qoriq/0001-fix-gcc8-build-error.patch b/recipes-kernel/linux/linux-qoriq/0001-fix-gcc8-build-error.patch
deleted file mode 100644
index 3cd2501..0000000
--- a/recipes-kernel/linux/linux-qoriq/0001-fix-gcc8-build-error.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 844ce11967bca7b7f68c6cb459e02c9a10f32574 Mon Sep 17 00:00:00 2001
-From: BJ DevOps Team <bjdevops@NXP1.onmicrosoft.com>
-Date: Tue, 3 Jul 2018 15:06:29 +0800
-Subject: [PATCH] fix gcc8 build error
-
----
- Makefile | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/Makefile b/Makefile
-index d6db01a..85d9d6c 100644
---- a/Makefile
-+++ b/Makefile
-@@ -422,6 +422,8 @@ LINUXINCLUDE    := \
- KBUILD_AFLAGS   := -D__ASSEMBLY__
- KBUILD_CFLAGS   := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \
- 		   -fno-strict-aliasing -fno-common -fshort-wchar \
-+                   -Wno-packed-not-aligned \
-+                   -Wno-tautological-compare \
- 		   -Werror-implicit-function-declaration \
- 		   -Wno-format-security \
- 		   -std=gnu89
--- 
-1.8.3.1
-
diff --git a/recipes-kernel/linux/linux-qoriq_4.14.bb b/recipes-kernel/linux/linux-qoriq_4.14.bb
index cb06ae4..9f4bcf0 100644
--- a/recipes-kernel/linux/linux-qoriq_4.14.bb
+++ b/recipes-kernel/linux/linux-qoriq_4.14.bb
@@ -7,9 +7,9 @@ LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7"
 
 SRC_URI = "git://source.codeaurora.org/external/qoriq/qoriq-components/linux;nobranch=1 \
-    file://0001-fix-gcc8-build-error.patch \
+    file://0001-Makfefile-add-cflags.patch \
 "
-SRCREV = "7e0006ca696756b867abbeb7a4ed97ffe9caf725"
+SRCREV = "7e52442b136c439c142c4859a70ce92208c481a9"
 
 S = "${WORKDIR}/git"
 
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 25+ messages in thread

* [PATCH 18/24] linux-qoriq/4.9: remove recipes
  2019-04-01  9:12 [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
                   ` (15 preceding siblings ...)
  2019-04-01  9:12 ` [PATCH 17/24] linux-qoriq/4.14:update to 7e52442 C.r. Guo
@ 2019-04-01  9:12 ` C.r. Guo
  2019-04-01  9:12 ` [PATCH 19/24] optee-client-qoriq:update to 0842873 C.r. Guo
                   ` (6 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: C.r. Guo @ 2019-04-01  9:12 UTC (permalink / raw)
  To: meta-freescale; +Cc: C.r. Guo

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

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-kernel/linux/linux-qoriq_4.9.bb | 71 ---------------------------------
 1 file changed, 71 deletions(-)
 delete mode 100644 recipes-kernel/linux/linux-qoriq_4.9.bb

diff --git a/recipes-kernel/linux/linux-qoriq_4.9.bb b/recipes-kernel/linux/linux-qoriq_4.9.bb
deleted file mode 100644
index 04ff7b9..0000000
--- a/recipes-kernel/linux/linux-qoriq_4.9.bb
+++ /dev/null
@@ -1,71 +0,0 @@
-inherit kernel qoriq_build_64bit_kernel siteinfo
-inherit fsl-kernel-localversion
-
-SUMMARY = "Linux Kernel for Freescale QorIQ platforms"
-SECTION = "kernel"
-LICENSE = "GPLv2"
-LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7"
-
-SRC_URI = "git://source.codeaurora.org/external/qoriq/qoriq-components/linux;nobranch=1 \
-    file://0001-Makefile-fix-gcc-8-build-error.patch \
-"
-SRCREV = "e8b01fb24fb8eb1adee9667eba2cae702b5892e9"
-
-S = "${WORKDIR}/git"
-
-DEPENDS_append = " libgcc"
-# not put Images into /boot of rootfs, install kernel-image if needed
-RDEPENDS_${KERNEL_PACKAGE_NAME}-base = ""
-
-KERNEL_CC_append = " ${TOOLCHAIN_OPTIONS}"
-KERNEL_LD_append = " ${TOOLCHAIN_OPTIONS}"
-KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"
-
-ZIMAGE_BASE_NAME = "zImage-${PKGE}-${PKGV}-${PKGR}-${MACHINE}-${DATETIME}"
-ZIMAGE_BASE_NAME[vardepsexclude] = "DATETIME"
-
-SCMVERSION ?= "y"
-LOCALVERSION = ""
-DELTA_KERNEL_DEFCONFIG ?= ""
-DELTA_KERNEL_DEFCONFIG_prepend_qoriq-arm64 = "lsdk.config "
-DELTA_KERNEL_DEFCONFIG_prepend_fsl-lsch2-32b = "multi_v7_lpae.config multi_v8.config lsdk.config "
-DELTA_KERNEL_DEFCONFIG_prepend_ls102xa = "multi_v7_lpae.config lsdk.config "
-
-do_merge_delta_config[dirs] = "${B}" 
-
-do_merge_delta_config() {
-    # create .config with make config
-    oe_runmake  -C ${S} O=${B} ${KERNEL_DEFCONFIG}
-
-    # check if bigendian is enabled
-    if [ "${SITEINFO_ENDIANNESS}" = "be" ]; then
-        echo "CONFIG_CPU_BIG_ENDIAN=y" >> .config
-        echo "CONFIG_MTD_CFI_BE_BYTE_SWAP=y" >> .config
-    fi
-
-    # add config fragments
-    for deltacfg in ${DELTA_KERNEL_DEFCONFIG}; do
-        if [ -f ${S}/arch/${ARCH}/configs/${deltacfg} ]; then
-            oe_runmake  -C ${S} O=${B} ${deltacfg}
-        elif [ -f "${WORKDIR}/${deltacfg}" ]; then
-            ${S}/scripts/kconfig/merge_config.sh -m .config ${WORKDIR}/${deltacfg}
-        elif [ -f "${deltacfg}" ]; then
-            ${S}/scripts/kconfig/merge_config.sh -m .config ${deltacfg}
-        fi
-    done
-    cp .config ${WORKDIR}/defconfig
-}
-addtask merge_delta_config before do_preconfigure after do_patch
-
-# The link of dts folder is needed for 32b compile of aarch64 targets(e.g. ls1043ardb-32b)
-do_compile_prepend_fsl-lsch2-32b() {
-    ln -sfT ${STAGING_KERNEL_DIR}/arch/arm64/boot/dts/freescale ${STAGING_KERNEL_DIR}/arch/arm/boot/dts/freescale
-}
-
-do_install_append_qoriq-arm() {
-    install -m 0644 arch/${ARCH}/boot/zImage ${D}/boot/zImage-${KERNEL_VERSION}
-    ln -sf zImage-${KERNEL_VERSION} ${D}/boot/zImage
-}
-
-FILES_${KERNEL_PACKAGE_NAME}-image += "/boot/zImage*"
-COMPATIBLE_MACHINE = "(qoriq)"
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 25+ messages in thread

* [PATCH 19/24] optee-client-qoriq:update to 0842873
  2019-04-01  9:12 [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
                   ` (16 preceding siblings ...)
  2019-04-01  9:12 ` [PATCH 18/24] linux-qoriq/4.9: remove recipes C.r. Guo
@ 2019-04-01  9:12 ` C.r. Guo
  2019-04-01  9:12 ` [PATCH 20/24] optee-os-qoriq:update to b7a1527 C.r. Guo
                   ` (5 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: C.r. Guo @ 2019-04-01  9:12 UTC (permalink / raw)
  To: meta-freescale; +Cc: C.r. Guo

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

*update to lsdk 1903 tag
include the following changes:
0842873 - flags: add -D_FILE_OFFSET_BITS=64 to support large files
28eea17 - libteec: Makefile: Generate .so files the same way as CMake
656e427 - tee_supplicant: gprof: fix compile error
c48bc3b - tee-supplicant: cmake: enable RPMB emulation by default
b6bfce9 - Makefile and config.mk: remove export in config.mk
66cdd5d - tee-supplicant: add daemon mode (-d)
5355fdb - Do not set -Werror by default
9c5e24c - tee-supplicant: rpmb.c: add __attribute__((fallthrough))
0361f9b - libteec: refactor _dprintf()
8742233 - benchmark: fix computation of page address
bd0e7c8 - Android related files: changes to work with Treble enabled build
9a63135 - Android.mk & config.mk: move teec.log/teesupp.log under /data/tee
6b4ca04 - benchmark: fix compilation issues
2d542f2 - Do not export CMakeLists.txt when running install
0fc28f2 - libteec: Fix incorrect SOVERSION number
3f16662 - tee-supplicant: cast sizeof(x) to socklen_t
23b22b1 - tee-supplicant: fix gcc warning
e0a12e2 - cmake: Initial CMake support
33fa3c1 - tee-supplicant: fix use of mem after it's freed
09b69af - libteec/tee-supplicant: respect LDFLAGS set from distribution toolchain
9681680 - libteec/Makefile: generate static library (libteec.a)
73b4e49 - tee-supplicant: REE fs open file with O_SYNC flag
075c56e - tee_supplicant: add register memory feature

*remove patch

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-security/optee/optee-client-qoriq.bb | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/recipes-security/optee/optee-client-qoriq.bb b/recipes-security/optee/optee-client-qoriq.bb
index 6aaf714..4d1caa1 100644
--- a/recipes-security/optee/optee-client-qoriq.bb
+++ b/recipes-security/optee/optee-client-qoriq.bb
@@ -7,12 +7,10 @@ LIC_FILES_CHKSUM = "file://${S}/LICENSE;md5=69663ab153298557a59c67a60a743e5b"
 inherit pythonnative systemd
 
 SRC_URI = "git://source.codeaurora.org/external/qoriq/qoriq-components/optee_client;nobranch=1 \
-           file://0001-GCC-8-format-truncation-error.patch \
-           file://0001-flags-CFLAGS-add-Wno-cpp.patch \
 "
 S = "${WORKDIR}/git"
 
-SRCREV = "ab3c79ccd3ea9323e236d30037977c0a19944dbd"
+SRCREV = "08428734c67fb559e420d87fa52fd74a955ea1bd"
 
 EXTRA_OEMAKE = "ARCH=arm64"
 
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 25+ messages in thread

* [PATCH 20/24] optee-os-qoriq:update to b7a1527
  2019-04-01  9:12 [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
                   ` (17 preceding siblings ...)
  2019-04-01  9:12 ` [PATCH 19/24] optee-client-qoriq:update to 0842873 C.r. Guo
@ 2019-04-01  9:12 ` C.r. Guo
  2019-04-01  9:12 ` [PATCH 21/24] optee-test-qoriq:update to 6690584 C.r. Guo
                   ` (4 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: C.r. Guo @ 2019-04-01  9:12 UTC (permalink / raw)
  To: meta-freescale; +Cc: C.r. Guo

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

*update to lsdk 1903 tag
include the following changes:
b7a1527 - Merge pull request #15 in DASH/optee_os from ~NXA18717/optee_os:master to master
6fac599 - plat-ls: Corrected GIC configuration for GIVv3 SoCs
b3f7be2 - plat-ls: Corrected GIC configuration for ls1043ardb.
a0bfef6 - plat-ls: updated conf.mk to set CFG_USER_TA_TARGETS
406c609 - Update CHANGELOG.md for 3.4.0
86b8b34 - core: arm32: fix gicv3 fiq race
41b2940 - core: syscall_storage_obj_create(): fix a memory leak
4198578 - plat-vexpress: disable uart IT with TF-A and GICv3
84e9c40 - core: svc_cryp: fix truncated buffer length
d5c5b0b - core: svc: always check ta parameters
c6edc12 - core: entry_std: check value of num_params
c4f75cc - core: optee_msg.h: define OPTEE_MSG_MAX_NUM_PARAMS
95f36d6 - core: tee_mmu_check_access_rights() check all pages
359324a - svc: Initialize tmp_va_buf to prevent a TOCTOU attack
e3adcf5 - core: ensure that supplied range matches MOBJ
99e8a8c - svc: fix NULL pointer dereference during storage enumeration
ea8357c - svc: check for overflow when allocating a BigNum buffer
54ebc3a - svc: avoid TOCTOU issue in syscall_hash_final
70697bf - svc: check for allocation overflow in crypto calls part 2
a637243 - svc: check for allocation overflow in crypto calls
b60e1ce - svc: check for allocation overflow in syscall_cryp_obj_populate

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-security/optee/optee-os-qoriq_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-security/optee/optee-os-qoriq_git.bb b/recipes-security/optee/optee-os-qoriq_git.bb
index c8ebe2b..5d21c00 100644
--- a/recipes-security/optee/optee-os-qoriq_git.bb
+++ b/recipes-security/optee/optee-os-qoriq_git.bb
@@ -8,7 +8,7 @@ DEPENDS = "python-pycrypto-native"
 
 inherit deploy pythonnative
 
-SRCREV = "e93f053213c574ec1b97f9e56b2f31692cd3723c"
+SRCREV = "b7a1527b42371e6c60bb4921c5389f1bc693f33b"
 SRC_URI = "git://source.codeaurora.org/external/qoriq/qoriq-components/optee_os;nobranch=1 \
            file://0001-allow-setting-sysroot-for-libgcc-lookup.patch \
           "
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 25+ messages in thread

* [PATCH 21/24] optee-test-qoriq:update to 6690584
  2019-04-01  9:12 [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
                   ` (18 preceding siblings ...)
  2019-04-01  9:12 ` [PATCH 20/24] optee-os-qoriq:update to b7a1527 C.r. Guo
@ 2019-04-01  9:12 ` C.r. Guo
  2019-04-01  9:12 ` [PATCH 22/24] ddy-phy :update recipes C.r. Guo
                   ` (3 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: C.r. Guo @ 2019-04-01  9:12 UTC (permalink / raw)
  To: meta-freescale; +Cc: C.r. Guo

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

*update to lsdk 1903 tag
include the following changes:
6690584 - cmake: locate files WRT to project home directory
f6f68a2 - regression 6000: fix uninitialized local variables
0cf4cfe - regression 4100: fix uninitialized local variable
481c660 - regression 4000: fix uninitialized local variable
a410edb - xtest --aes-perf: add -u option to process buffer in several steps
5401161 - improve xtest summary message
a8c8f87 - regression: split 4007 into key types
0953bf0 - regression 4011: correct potential overflow
493574a - xtest: prevent unexpected build warning with strncpy
7dbf877 - regression: 6010: add rename conflict case (with close)

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-security/optee/optee-test-qoriq_git.bb | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/recipes-security/optee/optee-test-qoriq_git.bb b/recipes-security/optee/optee-test-qoriq_git.bb
index a9aaffc..bb0c30d 100644
--- a/recipes-security/optee/optee-test-qoriq_git.bb
+++ b/recipes-security/optee/optee-test-qoriq_git.bb
@@ -9,11 +9,10 @@ DEPENDS = "optee-client-qoriq optee-os-qoriq python-pycrypto-native"
 inherit pythonnative
 
 SRC_URI = "git://source.codeaurora.org/external/qoriq/qoriq-components/optee_test;nobranch=1 \
-    file://0001-fix-build-failure-with-GCC-8.patch \
 "
 S = "${WORKDIR}/git"
 
-SRCREV = "83c87d9b368c33545688c7aad27432ff9a22868f"
+SRCREV = "669058459e4a544be12f37dab103ee4c2b32e31d"
 
 OPTEE_CLIENT_EXPORT = "${STAGING_DIR_HOST}${prefix}"
 TEEC_EXPORT         = "${STAGING_DIR_HOST}${prefix}"
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 25+ messages in thread

* [PATCH 22/24] ddy-phy :update recipes
  2019-04-01  9:12 [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
                   ` (19 preceding siblings ...)
  2019-04-01  9:12 ` [PATCH 21/24] optee-test-qoriq:update to 6690584 C.r. Guo
@ 2019-04-01  9:12 ` C.r. Guo
  2019-04-01  9:12 ` [PATCH 23/24] vpp-core: add "-DCLIB_LOG2_CACHE_LINE_BYTES=6" to CFLAGS C.r. Guo
                   ` (2 subsequent siblings)
  23 siblings, 0 replies; 25+ messages in thread
From: C.r. Guo @ 2019-04-01  9:12 UTC (permalink / raw)
  To: meta-freescale; +Cc: C.r. Guo

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

*dpends atf source
*build fiptool tools
*make fip_ddr_all.bin by fiptool
*install *bin

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-bsp/ddr-phy/ddr-phy_git.bb | 19 ++++++++++++++++---
 1 file changed, 16 insertions(+), 3 deletions(-)

diff --git a/recipes-bsp/ddr-phy/ddr-phy_git.bb b/recipes-bsp/ddr-phy/ddr-phy_git.bb
index ebd68c2..766ba79 100644
--- a/recipes-bsp/ddr-phy/ddr-phy_git.bb
+++ b/recipes-bsp/ddr-phy/ddr-phy_git.bb
@@ -4,21 +4,34 @@ LIC_FILES_CHKSUM = "file://NXP-Binary-EULA.txt;md5=89cc852481956e861228286ac7430
 
 inherit deploy fsl-eula-unpack
 
-SRC_URI = "git://github.com/nxp/ddr-phy-binary.git;fsl-eula=true;nobranch=1"
+SRC_URI = "git://github.com/nxp/ddr-phy-binary.git;fsl-eula=true;nobranch=1 \
+    git://source.codeaurora.org/external/qoriq/qoriq-components/atf;nobranch=1;nobranch=1;destsuffix=git/atf;name=atf"
 SRCREV = "14d03e6e748ed5ebb9440f264bb374f1280b061c"
+SRCREV_atf = "7e34aebe658c7c3439d2d68b0ce6b9776e8e6996"
 
 S = "${WORKDIR}/git"
 
 REGLEX_lx2160a = "lx2160a"
 
 do_install () {
+    oe_runmake -C ${S}/atf fiptool
+    cd ${S}/${REGLEX}
+    ${S}/atf/tools/fiptool/fiptool create --ddr-immem-udimm-1d ddr4_pmu_train_imem.bin \
+    --ddr-immem-udimm-2d ddr4_2d_pmu_train_imem.bin \
+    --ddr-dmmem-udimm-1d ddr4_pmu_train_dmem.bin \
+    --ddr-dmmem-udimm-2d ddr4_2d_pmu_train_dmem.bin \
+    --ddr-immem-rdimm-1d ddr4_rdimm_pmu_train_imem.bin \
+    --ddr-immem-rdimm-2d ddr4_rdimm2d_pmu_train_imem.bin \
+    --ddr-dmmem-rdimm-1d ddr4_rdimm_pmu_train_dmem.bin \
+    --ddr-dmmem-rdimm-2d ddr4_rdimm2d_pmu_train_dmem.bin \
+    fip_ddr_all.bin
     install -d ${D}/boot
-    install -m 755 ${S}/${REGLEX}/* ${D}/boot
+    install -m 755 ${S}/${REGLEX}/*.bin ${D}/boot
 }
 
 do_deploy () {
     install -d ${DEPLOYDIR}/ddr-phy
-    install -m 755 ${S}/${REGLEX}/* ${DEPLOYDIR}/ddr-phy
+    install -m 755 ${S}/${REGLEX}/*.bin ${DEPLOYDIR}/ddr-phy
 }
 addtask deploy before do_populate_sysroot after do_install
 
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 25+ messages in thread

* [PATCH 23/24] vpp-core: add "-DCLIB_LOG2_CACHE_LINE_BYTES=6" to CFLAGS
  2019-04-01  9:12 [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
                   ` (20 preceding siblings ...)
  2019-04-01  9:12 ` [PATCH 22/24] ddy-phy :update recipes C.r. Guo
@ 2019-04-01  9:12 ` C.r. Guo
  2019-04-01  9:12 ` [PATCH 24/24] qemu-qoriq: add glib-2.0 zlib pixman dtc to DEPENDS C.r. Guo
  2019-04-08  5:13 ` [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
  23 siblings, 0 replies; 25+ messages in thread
From: C.r. Guo @ 2019-04-01  9:12 UTC (permalink / raw)
  To: meta-freescale; +Cc: C.r. Guo

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

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-extended/vpp-core/vpp-core.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-extended/vpp-core/vpp-core.bb b/recipes-extended/vpp-core/vpp-core.bb
index 2bfbba8..8274534 100644
--- a/recipes-extended/vpp-core/vpp-core.bb
+++ b/recipes-extended/vpp-core/vpp-core.bb
@@ -43,7 +43,7 @@ EXTRA_OECONF = " \
 "
 
 EXTRA_OECONF_append_class-native = " --disable-vlib"
-
+CFLAGS += "-DCLIB_LOG2_CACHE_LINE_BYTES=6"
 
 include vpp-pkgs.inc
 
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 25+ messages in thread

* [PATCH 24/24] qemu-qoriq: add glib-2.0 zlib pixman dtc to DEPENDS
  2019-04-01  9:12 [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
                   ` (21 preceding siblings ...)
  2019-04-01  9:12 ` [PATCH 23/24] vpp-core: add "-DCLIB_LOG2_CACHE_LINE_BYTES=6" to CFLAGS C.r. Guo
@ 2019-04-01  9:12 ` C.r. Guo
  2019-04-08  5:13 ` [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
  23 siblings, 0 replies; 25+ messages in thread
From: C.r. Guo @ 2019-04-01  9:12 UTC (permalink / raw)
  To: meta-freescale; +Cc: C.r. Guo

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

fix the below error:
| DEBUG: Executing shell function do_configure
|
| ERROR: DTC (libfdt) version >= 1.4.2 not present. Your options:
| ERROR: glib-2.22 gthread-2.0 Zlib is required to compile QEMU

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-devtools/qemu/qemu-qoriq_git.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/recipes-devtools/qemu/qemu-qoriq_git.bb b/recipes-devtools/qemu/qemu-qoriq_git.bb
index 889603c..51104b6 100644
--- a/recipes-devtools/qemu/qemu-qoriq_git.bb
+++ b/recipes-devtools/qemu/qemu-qoriq_git.bb
@@ -5,6 +5,7 @@ require recipes-devtools/qemu/qemu.inc
 inherit ptest
 
 RDEPENDS_${PN}-ptest = "bash make"
+DEPENDS = "glib-2.0 zlib pixman dtc"
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=441c28d2cf86e15a37fa47e15a72fbac \
                     file://COPYING.LIB;endline=24;md5=c04def7ae38850e7d3ef548588159913"
-- 
2.7.4



^ permalink raw reply related	[flat|nested] 25+ messages in thread

* Re: [PATCH 01/24] atf: update to 7e34aeb
  2019-04-01  9:12 [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
                   ` (22 preceding siblings ...)
  2019-04-01  9:12 ` [PATCH 24/24] qemu-qoriq: add glib-2.0 zlib pixman dtc to DEPENDS C.r. Guo
@ 2019-04-08  5:13 ` C.r. Guo
  23 siblings, 0 replies; 25+ messages in thread
From: C.r. Guo @ 2019-04-08  5:13 UTC (permalink / raw)
  To: meta-freescale

PING!

-----Original Message-----
From: C.r. Guo 
Sent: 2019年4月1日 17:12
To: meta-freescale@yoctoproject.org
Cc: C.r. Guo <chunrong.guo@nxp.com>
Subject: [PATCH 01/24] atf: update to 7e34aeb

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

*update to lsdk 1903 tag
include the following changes
7e34aeb - Fix 2088 sleep hang
dc16e35 - SDEI: Ensure SDEI handler executes with CVE-2018-3639 mitigation enabled
5eb3190 - Fast path SMCCC_ARCH_WORKAROUND_1 calls from AArch32 cd1e8ce - Add support for dynamic mitigation for CVE-2018-3639 82c570f - aarch32: Implement static workaround for CVE-2018-3639 2a655ec - Implement static workaround for CVE-2018-3639
90c75d3 - Rename symbols and files relating to CVE-2017-5715 179e18a - Fixup SMCCC_FEATURES return value for SMCCC_ARCH_WORKAROUND_1
2671898 - lx2: Remove setting of POWMGTCSR[LPM20_RQ] from LPM20 flow 7ca22ff - Adding LX2160 system power-down (LPM20)
0f81f07 - ls2088ardb: Add support of Non-ECC UDIMM
ee53ed7 - nxp/lx2: Enable Errate ERRATA_A72_859971 on LX2

*add ddr-phy to DEPENDS for lx2160a
*install ddr4_pmu_train_dmem.bin

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-bsp/atf/atf_git.bb | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/recipes-bsp/atf/atf_git.bb b/recipes-bsp/atf/atf_git.bb index 883b7ea..6583be8 100644
--- a/recipes-bsp/atf/atf_git.bb
+++ b/recipes-bsp/atf/atf_git.bb
@@ -5,14 +5,15 @@ LIC_FILES_CHKSUM = "file://license.rst;md5=e927e02bca647e14efd87e9e914b2443"
 
 inherit deploy
 
-DEPENDS += "u-boot-mkimage-native u-boot openssl openssl-native mbedtls rcw cst-native uefi"
+DEPENDS += "u-boot-mkimage-native u-boot openssl openssl-native mbedtls rcw cst-native"
+DEPENDS_append_lx2160a += "ddr-phy"
 DEPENDS_append_qoriq-arm64 += "optee-os-qoriq"
 do_compile[depends] += "u-boot:do_deploy rcw:do_deploy uefi:do_deploy"
 
 S = "${WORKDIR}/git"
 
 SRC_URI = "git://source.codeaurora.org/external/qoriq/qoriq-components/atf;nobranch=1"
-SRCREV = "4971f394cf32e33e3a9ca23a4faa49d606af31c5"
+SRCREV = "7e34aebe658c7c3439d2d68b0ce6b9776e8e6996"
 
 SRC_URI += "file://0001-fix-fiptool-build-error.patch \
     file://0001-Makefile-add-CC-gcc.patch \ @@ -81,6 +82,9 @@ do_compile() {
         bl32opt="BL32=${bl32}"
         spdopt="SPD=opteed" 
     fi
+    if [ -f ${DEPLOY_DIR_IMAGE}/ddr-phy/ddr4_pmu_train_dmem.bin ]; then
+        cp ${DEPLOY_DIR_IMAGE}/ddr-phy/*.bin ${S}/
+    fi
 
     for d in ${BOOTTYPE}; do
         case $d in
--
2.7.4


^ permalink raw reply	[flat|nested] 25+ messages in thread

end of thread, other threads:[~2019-04-08 20:44 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-01  9:12 [PATCH 01/24] atf: update to 7e34aeb C.r. Guo
2019-04-01  9:12 ` [PATCH 02/24] mc-utils: update to eeb8972 C.r. Guo
2019-04-01  9:12 ` [PATCH 03/24] rcw: update to f137787 C.r. Guo
2019-04-01  9:12 ` [PATCH 04/24] u-boot: update to 80b2d2b C.r. Guo
2019-04-01  9:12 ` [PATCH 05/24] uefi: update to de8834d C.r. Guo
2019-04-01  9:12 ` [PATCH 06/24] openssl-qoriq: update to 472c9c3 C.r. Guo
2019-04-01  9:12 ` [PATCH 07/24] cst: update to 2737b8b C.r. Guo
2019-04-01  9:12 ` [PATCH 08/24] eth-config: update to 6164664 C.r. Guo
2019-04-01  9:12 ` [PATCH 09/24] fmlib: update to 69a7047 C.r. Guo
2019-04-01  9:12 ` [PATCH 10/24] aiopsl: update to 87d83d8 C.r. Guo
2019-04-01  9:12 ` [PATCH 11/24] dce: update to 0455555 C.r. Guo
2019-04-01  9:12 ` [PATCH 12/24] mc: Upgrade version to 10.14.3 C.r. Guo
2019-04-01  9:12 ` [PATCH 13/24] restool: update to 8b1dd40 C.r. Guo
2019-04-01  9:12 ` [PATCH 14/24] dpdk: update to c0fe1b9 C.r. Guo
2019-04-01  9:12 ` [PATCH 15/24] ovs-dpdk: Upgrade version to 2.10 C.r. Guo
2019-04-01  9:12 ` [PATCH 16/24] linux-qoriq/4.19 : add recipes C.r. Guo
2019-04-01  9:12 ` [PATCH 17/24] linux-qoriq/4.14:update to 7e52442 C.r. Guo
2019-04-01  9:12 ` [PATCH 18/24] linux-qoriq/4.9: remove recipes C.r. Guo
2019-04-01  9:12 ` [PATCH 19/24] optee-client-qoriq:update to 0842873 C.r. Guo
2019-04-01  9:12 ` [PATCH 20/24] optee-os-qoriq:update to b7a1527 C.r. Guo
2019-04-01  9:12 ` [PATCH 21/24] optee-test-qoriq:update to 6690584 C.r. Guo
2019-04-01  9:12 ` [PATCH 22/24] ddy-phy :update recipes C.r. Guo
2019-04-01  9:12 ` [PATCH 23/24] vpp-core: add "-DCLIB_LOG2_CACHE_LINE_BYTES=6" to CFLAGS C.r. Guo
2019-04-01  9:12 ` [PATCH 24/24] qemu-qoriq: add glib-2.0 zlib pixman dtc to DEPENDS C.r. Guo
2019-04-08  5:13 ` [PATCH 01/24] atf: update to 7e34aeb C.r. Guo

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.