All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 01/20] qe-ucode: update SRC_URL
@ 2017-10-10  9:42 Chunrong Guo
  2017-10-10  9:42 ` [PATCH 02/20] uboot: update to upgrade to 2017.09 Chunrong Guo
                   ` (18 more replies)
  0 siblings, 19 replies; 35+ messages in thread
From: Chunrong Guo @ 2017-10-10  9:42 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

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

diff --git a/recipes-bsp/qe-ucode/qe-ucode_git.bb b/recipes-bsp/qe-ucode/qe-ucode_git.bb
index 7e0dd3c..27166d0 100644
--- a/recipes-bsp/qe-ucode/qe-ucode_git.bb
+++ b/recipes-bsp/qe-ucode/qe-ucode_git.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://Freescale-Binary-EULA;md5=f4719d59382b5ee2a2ebe4db784
 
 inherit deploy
 
-SRC_URI = "git://git.freescale.com/ppc/sdk/qe-ucode.git;branch=sdk-v2.0.x"
+SRC_URI = "git://github.com/qoriq-open-source/qe-ucode.git;nobranch=1"
 SRCREV= "adb1560b76090a11f61a46b7a6b3b33b1436ed4d"
 
 S = "${WORKDIR}/git"
@@ -33,6 +33,6 @@ addtask deploy before do_build after do_install
 PACKAGES += "${PN}-image"
 FILES_${PN}-image += "/boot/*"
 
-COMPATIBLE_MACHINE = "(ls1021a|ls1043a|t1)"
+COMPATIBLE_MACHINE = "(ls1021a|ls1043a)"
 PACKAGE_ARCH = "${MACHINE_SOCARCH}"
 
-- 
1.9.0



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

* [PATCH 02/20] uboot: update to upgrade to 2017.09
  2017-10-10  9:42 [PATCH 01/20] qe-ucode: update SRC_URL Chunrong Guo
@ 2017-10-10  9:42 ` Chunrong Guo
  2017-10-11 12:59   ` Otavio Salvador
  2017-10-10  9:42 ` [PATCH 03/20] cst :update to 1afb40c Chunrong Guo
                   ` (17 subsequent siblings)
  18 siblings, 1 reply; 35+ messages in thread
From: Chunrong Guo @ 2017-10-10  9:42 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-bsp/u-boot/u-boot-qoriq_2017.03.bb |  93 -------------------
 recipes-bsp/u-boot/u-boot-qoriq_2017.09.bb | 142 +++++++++++++++++++++++++++++
 2 files changed, 142 insertions(+), 93 deletions(-)
 delete mode 100644 recipes-bsp/u-boot/u-boot-qoriq_2017.03.bb
 create mode 100644 recipes-bsp/u-boot/u-boot-qoriq_2017.09.bb

diff --git a/recipes-bsp/u-boot/u-boot-qoriq_2017.03.bb b/recipes-bsp/u-boot/u-boot-qoriq_2017.03.bb
deleted file mode 100644
index 5bde945..0000000
--- a/recipes-bsp/u-boot/u-boot-qoriq_2017.03.bb
+++ /dev/null
@@ -1,93 +0,0 @@
-require recipes-bsp/u-boot/u-boot.inc
-
-DESCRIPTION = "U-Boot provided by Freescale with focus on QorIQ boards"
-PROVIDES += "u-boot"
-LICENSE = "GPLv2 & BSD-3-Clause & BSD-2-Clause & LGPL-2.0 & LGPL-2.1"
-LIC_FILES_CHKSUM = " \
-    file://Licenses/gpl-2.0.txt;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
-    file://Licenses/bsd-2-clause.txt;md5=6a31f076f5773aabd8ff86191ad6fdd5 \
-    file://Licenses/bsd-3-clause.txt;md5=4a1190eac56a9db675d58ebe86eaf50c \
-    file://Licenses/lgpl-2.0.txt;md5=5f30f0716dfdd0d91eb439ebec522ec2 \
-    file://Licenses/lgpl-2.1.txt;md5=4fbd65380cdd255951079008b364516c \
-"
-
-PV_append = "+fslgit"
-INHIBIT_DEFAULT_DEPS = "1"
-DEPENDS = "libgcc virtual/${TARGET_PREFIX}gcc"
-DEPENDS_append_qoriq-arm64 = " change-file-endianess-native dtc-native tcl-native"
-DEPENDS_append_qoriq-arm = " change-file-endianess-native dtc-native tcl-native"
-DEPENDS_append_qoriq-ppc = " boot-format-native"
-
-SRC_URI = "git://github.com/qoriq-open-source/u-boot.git;nobranch=1 \
-    file://fix-build-error-under-gcc6.patch \
-"
-SRCREV = "6fc2946a7b1973a8221cdfeccd1666f2d8eec467"
-
-S = "${WORKDIR}/git"
-
-python () {
-    if d.getVar("TCMODE", True) == "external-fsl":
-        return
-
-    ml = d.getVar("MULTILIB_VARIANTS", True)
-    arch = d.getVar("OVERRIDES", True)
-
-    if "e5500-64b:" in arch or "e6500-64b:" in arch:
-        if not "lib32" in ml:
-            raise bb.parse.SkipPackage("Building the u-boot for this arch requires multilib to be enabled")
-        sys_multilib = d.getVar('TARGET_VENDOR') + 'mllib32-linux'
-        sys_original = d.getVar('TARGET_VENDOR') + '-' + d.getVar('TARGET_OS')
-        workdir = d.getVar('WORKDIR').replace(sys_original,sys_multilib)
-        d.setVar('DEPENDS_append', ' lib32-gcc-cross-powerpc lib32-libgcc')
-        d.setVar('PATH_append', ':' + d.getVar('STAGING_BINDIR_NATIVE') + '/powerpc' + sys_multilib)
-        d.setVar('TOOLCHAIN_OPTIONS', '--sysroot=' + workdir + '/lib32-recipe-sysroot')
-        d.setVar("WRAP_TARGET_PREFIX", 'powerpc' + sys_multilib + '-')
-    elif "fsl-lsch2-32b:" in arch:
-        if not "lib64" in ml:
-            raise bb.parse.SkipPackage("Building the u-boot for this arch requires multilib to be enabled")
-        sys_multilib = d.getVar('TARGET_VENDOR') + 'mllib64-linux'
-        sys_original = d.getVar('TARGET_VENDOR') + '-' + d.getVar('TARGET_OS')
-        workdir = d.getVar('WORKDIR').replace(sys_original,sys_multilib)
-        d.setVar('DEPENDS_append', ' lib64-gcc-cross-aarch64 lib64-libgcc')
-        d.setVar('PATH_append', ':' + d.getVar('STAGING_BINDIR_NATIVE') + '/aarch64' + sys_multilib)
-        d.setVar('TOOLCHAIN_OPTIONS', '--sysroot=' + workdir + '/lib64-recipe-sysroot')
-        d.setVar("WRAP_TARGET_PREFIX", 'aarch64' + sys_multilib + '-')
-}
-
-WRAP_TARGET_PREFIX ?= "${TARGET_PREFIX}"
-EXTRA_OEMAKE = 'CROSS_COMPILE=${WRAP_TARGET_PREFIX} CC="${WRAP_TARGET_PREFIX}gcc ${TOOLCHAIN_OPTIONS}" V=1'
-EXTRA_OEMAKE += 'HOSTCC="${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_LDFLAGS}"'
-
-inherit fsl-u-boot-localversion
-LOCALVERSION = "+fsl"
-
-do_compile_append_qoriq() {
-    unset i j k
-    for config in ${UBOOT_MACHINE}; do
-        i=`expr $i + 1`;
-        for type in ${UBOOT_CONFIG}; do
-            j=`expr $j + 1`;
-            for binary in ${UBOOT_BINARIES}; do
-                k=`expr $k + 1`
-                if [ $j -eq $i ] && [ $k -eq $i ]; then
-                    if [ -n "${BOOTFORMAT_CONFIG}" ] && echo "${type}" |grep -q spi;then
-                        # regenerate spi binary if BOOTFORMAT_CONFIG is set
-                        boot_format ${STAGING_DATADIR_NATIVE}/boot_format/${BOOTFORMAT_CONFIG} \
-                            ${config}/u-boot-${type}.${UBOOT_SUFFIX} -spi ${config}/u-boot.format.bin
-                        cp ${config}/u-boot.format.bin ${config}/u-boot-${type}.${UBOOT_SUFFIX}
-                    elif [ "qspi" = "${type}" ];then
-                        cp ${config}/${binary} ${config}/u-boot-${type}-${PV}-${PR}.${UBOOT_SUFFIX}
-                    fi
-                fi
-            done
-            unset k
-        done
-        unset j
-    done
-    unset i
-}
-
-
-PACKAGES += "${PN}-images"
-FILES_${PN}-images += "/boot"
-COMPATIBLE_MACHINE = "(qoriq)"
diff --git a/recipes-bsp/u-boot/u-boot-qoriq_2017.09.bb b/recipes-bsp/u-boot/u-boot-qoriq_2017.09.bb
new file mode 100644
index 0000000..3fe9fac
--- /dev/null
+++ b/recipes-bsp/u-boot/u-boot-qoriq_2017.09.bb
@@ -0,0 +1,142 @@
+require recipes-bsp/u-boot/u-boot.inc
+
+DESCRIPTION = "U-Boot provided by Freescale with focus on QorIQ boards"
+PROVIDES += "u-boot"
+LICENSE = "GPLv2 & BSD-3-Clause & BSD-2-Clause & LGPL-2.0 & LGPL-2.1"
+LIC_FILES_CHKSUM = " \
+    file://Licenses/gpl-2.0.txt;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
+    file://Licenses/bsd-2-clause.txt;md5=6a31f076f5773aabd8ff86191ad6fdd5 \
+    file://Licenses/bsd-3-clause.txt;md5=4a1190eac56a9db675d58ebe86eaf50c \
+    file://Licenses/lgpl-2.0.txt;md5=5f30f0716dfdd0d91eb439ebec522ec2 \
+    file://Licenses/lgpl-2.1.txt;md5=4fbd65380cdd255951079008b364516c \
+"
+
+PV_append = "+fslgit"
+INHIBIT_DEFAULT_DEPS = "1"
+DEPENDS = "libgcc virtual/${TARGET_PREFIX}gcc"
+DEPENDS_append_qoriq-arm64 = " change-file-endianess-native dtc-native tcl-native"
+DEPENDS_append_qoriq-arm = " change-file-endianess-native dtc-native tcl-native"
+DEPENDS_append_qoriq-ppc = " boot-format-native"
+
+SRC_URI = "git://github.com/qoriq-open-source/u-boot.git;nobranch=1 \
+    file://fix-build-error-under-gcc6.patch \
+"
+SRCREV = "503eff00a7119d2690a662ed64e83e4782b7d3d9"
+
+S = "${WORKDIR}/git"
+
+python () {
+    if d.getVar("TCMODE", True) == "external-fsl":
+        return
+
+    ml = d.getVar("MULTILIB_VARIANTS", True)
+    arch = d.getVar("OVERRIDES", True)
+
+    if "e5500-64b:" in arch or "e6500-64b:" in arch:
+        if not "lib32" in ml:
+            raise bb.parse.SkipPackage("Building the u-boot for this arch requires multilib to be enabled")
+        sys_multilib = d.getVar('TARGET_VENDOR') + 'mllib32-linux'
+        sys_original = d.getVar('TARGET_VENDOR') + '-' + d.getVar('TARGET_OS')
+        workdir = d.getVar('WORKDIR').replace(sys_original,sys_multilib)
+        d.setVar('DEPENDS_append', ' lib32-gcc-cross-powerpc lib32-libgcc')
+        d.setVar('PATH_append', ':' + d.getVar('STAGING_BINDIR_NATIVE') + '/powerpc' + sys_multilib)
+        d.setVar('TOOLCHAIN_OPTIONS', '--sysroot=' + workdir + '/lib32-recipe-sysroot')
+        d.setVar("WRAP_TARGET_PREFIX", 'powerpc' + sys_multilib + '-')
+    elif "fsl-lsch2-32b:" in arch:
+        if not "lib64" in ml:
+            raise bb.parse.SkipPackage("Building the u-boot for this arch requires multilib to be enabled")
+        sys_multilib = d.getVar('TARGET_VENDOR') + 'mllib64-linux'
+        sys_original = d.getVar('TARGET_VENDOR') + '-' + d.getVar('TARGET_OS')
+        workdir = d.getVar('WORKDIR').replace(sys_original,sys_multilib)
+        d.setVar('DEPENDS_append', ' lib64-gcc-cross-aarch64 lib64-libgcc')
+        d.setVar('PATH_append', ':' + d.getVar('STAGING_BINDIR_NATIVE') + '/aarch64' + sys_multilib)
+        d.setVar('TOOLCHAIN_OPTIONS', '--sysroot=' + workdir + '/lib64-recipe-sysroot')
+        d.setVar("WRAP_TARGET_PREFIX", 'aarch64' + sys_multilib + '-')
+}
+
+WRAP_TARGET_PREFIX ?= "${TARGET_PREFIX}"
+EXTRA_OEMAKE = 'CROSS_COMPILE=${WRAP_TARGET_PREFIX} CC="${WRAP_TARGET_PREFIX}gcc ${TOOLCHAIN_OPTIONS}" V=1'
+EXTRA_OEMAKE += 'HOSTCC="${BUILD_CC} ${BUILD_CFLAGS} ${BUILD_LDFLAGS}"'
+
+inherit fsl-u-boot-localversion
+LOCALVERSION = "+fsl"
+
+do_compile_append_qoriq() {
+    unset i j k
+    for config in ${UBOOT_MACHINE}; do
+        i=`expr $i + 1`;
+        for type in ${UBOOT_CONFIG}; do
+            j=`expr $j + 1`;
+            for binary in ${UBOOT_BINARIES}; do
+                k=`expr $k + 1`
+                if [ $j -eq $i ] && [ $k -eq $i ]; then
+                    if [ -n "${BOOTFORMAT_CONFIG}" ] && echo "${type}" |grep -q spi;then
+                        # regenerate spi binary if BOOTFORMAT_CONFIG is set
+                        boot_format ${STAGING_DATADIR_NATIVE}/boot_format/${BOOTFORMAT_CONFIG} \
+                            ${config}/u-boot-${type}.${UBOOT_SUFFIX} -spi ${config}/u-boot.format.bin
+                        cp ${config}/u-boot.format.bin ${config}/u-boot-${type}.${UBOOT_SUFFIX}
+                    elif [ "qspi" = "${type}" ];then
+                        cp ${config}/${binary} ${config}/u-boot-${type}-${PV}-${PR}.${UBOOT_SUFFIX}
+                    elif [ "sdcard-secure-boot" = "${type}" ];then
+                        cp ${config}/spl/u-boot-spl.bin ${config}/u-boot-spl.bin 
+                    elif [ "nand-secure-boot" = "${type}" ];then
+                        cp ${config}/spl/u-boot-spl.bin ${config}/u-boot-spl.bin
+                    fi
+                fi
+            done
+            unset k
+        done
+        unset j
+    done
+    unset i
+}
+
+do_install_append_qoriq() {
+    if [ -n "${UBOOT_CONFIG}" ]
+    then
+        for config in ${UBOOT_MACHINE}; do
+            i=$(expr $i + 1);
+            for type in ${UBOOT_CONFIG}; do
+                j=$(expr $j + 1);
+                if [ $j -eq $i ]; then
+                    if [ "sdcard-secure-boot" = "${type}" ];then
+                        install -m 644 ${B}/${config}/u-boot-spl.bin ${D}/boot/uboot-${type}-spl.bin
+                        install -m 644 ${B}/${config}/u-boot-dtb.bin ${D}/boot/uboot-${type}-dtb.bin
+                    elif [ "nand-secure-boot" = "${type}" ];then
+                        install -m 644 ${B}/${config}/u-boot-spl.bin ${D}/boot/uboot-${type}-spl.bin
+                        install -m 644 ${B}/${config}/u-boot-dtb.bin ${D}/boot/uboot-${type}-dtb.bin
+                    fi
+                fi
+            done
+            unset j
+        done
+        unset  i
+    fi
+}
+
+do_deploy_append_qoriq() {
+    if [ -n "${UBOOT_CONFIG}" ]
+    then
+        for config in ${UBOOT_MACHINE}; do
+            i=$(expr $i + 1);
+            for type in ${UBOOT_CONFIG}; do
+                j=$(expr $j + 1);
+                if [ $j -eq $i ]; then
+                    if [ "sdcard-secure-boot" = "${type}" ] || [ "nand-secure-boot" = "${type}" ];then
+                        install -d {DEPLOYDIR}
+                        install -m 644 ${B}/${config}/u-boot-spl.bin ${DEPLOYDIR}/uboot-${type}-spl.bin
+                        install -m 644 ${B}/${config}/u-boot-dtb.bin ${DEPLOYDIR}/uboot-${type}-dtb.bin
+                    fi
+                fi
+            done
+            unset j
+        done
+        unset  i
+    fi
+}
+
+
+
+PACKAGES += "${PN}-images"
+FILES_${PN}-images += "/boot"
+COMPATIBLE_MACHINE = "(qoriq)"
-- 
1.9.0



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

* [PATCH 03/20] cst :update to 1afb40c
  2017-10-10  9:42 [PATCH 01/20] qe-ucode: update SRC_URL Chunrong Guo
  2017-10-10  9:42 ` [PATCH 02/20] uboot: update to upgrade to 2017.09 Chunrong Guo
@ 2017-10-10  9:42 ` Chunrong Guo
  2017-10-11 13:00   ` Otavio Salvador
  2017-10-10  9:42 ` [PATCH 04/20] eth-config: update SRC_URL Chunrong Guo
                   ` (16 subsequent siblings)
  18 siblings, 1 reply; 35+ messages in thread
From: Chunrong Guo @ 2017-10-10  9:42 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

This includes the following changes:
1afb40c - Make SRK table default option
1650003 - Make ls1088_ls2088.sh executable
4ae056a - Generate SRK hash value
c3e7c34 - LS1088 QSPI: Change in address in input file
fe4e0da - LS104x_1012: Add signing of bootscript_decap in case of NAND
8f42212 - LS1088 SD: Add input files for LS1088ardb SD
88b3f45 - Merge pull request #73 in SDK/cst from ~B57223/cst-create-pbi:master to master
63bfb68 - To enable blob, added input file
d124628 - LS1021ATWR: Change SPL hdr load address
12c489f - LS2088_1088: Add uni_sign input files for sd boot
04ac1a0 - LS2088_1088: Sample uni_pbi input file for sd boot
23bf3b7 - LS2088_1088: Modify tool to add pbi commands for sd secure
46f4045 - Enable cmd line flag "--u" urand option for gen_otpmk_drbg

Signed-off-by: Chunrong Guo <B40290@freescale.com>
---
 ...rbg-fails-compilation-due-to-uninitialize.patch | 28 ++++++++++++++++++++++
 recipes-devtools/cst/cst_git.bb                    |  6 +++--
 2 files changed, 32 insertions(+), 2 deletions(-)
 create mode 100644 recipes-devtools/cst/cst/0001-gen_otpmk_drbg-fails-compilation-due-to-uninitialize.patch

diff --git a/recipes-devtools/cst/cst/0001-gen_otpmk_drbg-fails-compilation-due-to-uninitialize.patch b/recipes-devtools/cst/cst/0001-gen_otpmk_drbg-fails-compilation-due-to-uninitialize.patch
new file mode 100644
index 0000000..0dc5c3a
--- /dev/null
+++ b/recipes-devtools/cst/cst/0001-gen_otpmk_drbg-fails-compilation-due-to-uninitialize.patch
@@ -0,0 +1,28 @@
+From 6eb82ed1ba56c398e89f04fb848c5f3c4543e772 Mon Sep 17 00:00:00 2001
+From: Chunrong Guo <chunrong.guo@nxp.com>
+Date: Wed, 20 Sep 2017 13:22:34 +0800
+Subject: [PATCH] gen_otpmk_drbg: fails compilation due to uninitialized
+ variables
+
+Upstream-Status: Submitted
+Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
+---
+ tools/key_generation/gen_otpmk_drbg.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/tools/key_generation/gen_otpmk_drbg.c b/tools/key_generation/gen_otpmk_drbg.c
+index 6465367..33e5ea6 100644
+--- a/tools/key_generation/gen_otpmk_drbg.c
++++ b/tools/key_generation/gen_otpmk_drbg.c
+@@ -142,7 +142,7 @@ int main(int argc, char *argv[])
+ {
+ 	char otpmk_in[2];
+ 	int c, i, l, ret;
+-	char *string;
++	char *string = NULL;
+ 	char urand_flag = 0;
+ 
+ 	printf("\n\t#----------------------------------------------------#");
+-- 
+2.7.4
+
diff --git a/recipes-devtools/cst/cst_git.bb b/recipes-devtools/cst/cst_git.bb
index fcae0c7..dc0ae5e 100644
--- a/recipes-devtools/cst/cst_git.bb
+++ b/recipes-devtools/cst/cst_git.bb
@@ -9,8 +9,10 @@ RDEPENDS_${PN} = "bash"
 
 inherit kernel-arch
 
-SRC_URI = "git://github.com/qoriq-open-source/cst.git;nobranch=1"
-SRCREV = "6424157985568df3f42a46e24222e38671455ddb"
+SRC_URI = "git://github.com/qoriq-open-source/cst.git;nobranch=1 \
+    file://0001-gen_otpmk_drbg-fails-compilation-due-to-uninitialize.patch \
+"
+SRCREV = "1afb40c13097fc9e8a641aa5d0420498fea01c65"
 
 S = "${WORKDIR}/git"
 
-- 
1.9.0



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

* [PATCH 04/20] eth-config: update SRC_URL
  2017-10-10  9:42 [PATCH 01/20] qe-ucode: update SRC_URL Chunrong Guo
  2017-10-10  9:42 ` [PATCH 02/20] uboot: update to upgrade to 2017.09 Chunrong Guo
  2017-10-10  9:42 ` [PATCH 03/20] cst :update to 1afb40c Chunrong Guo
@ 2017-10-10  9:42 ` Chunrong Guo
  2017-10-10  9:42 ` [PATCH 05/20] flib: update to 14489ee Chunrong Guo
                   ` (15 subsequent siblings)
  18 siblings, 0 replies; 35+ messages in thread
From: Chunrong Guo @ 2017-10-10  9:42 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

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

diff --git a/recipes-dpaa/eth-config/eth-config_git.bb b/recipes-dpaa/eth-config/eth-config_git.bb
index 6507613..1d11474 100644
--- a/recipes-dpaa/eth-config/eth-config_git.bb
+++ b/recipes-dpaa/eth-config/eth-config_git.bb
@@ -5,8 +5,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=8ed5eddbfbb84af5089ea94c382d423c"
 
 PR = "r2"
 
-SRC_URI = "git://git.freescale.com/ppc/sdk/eth-config.git;branch=sdk-v2.0.x"
-SRCREV = "664ba136cfdb42116d9617176deda7c25ede9db9"
+SRC_URI = "git://github.com/qoriq-open-source/eth-config.git;nobranch=1"
+SRCREV = "e3dcd110638dab004bcc759f6f51a0994bdfd8d5"
 
 S = "${WORKDIR}/git"
 
-- 
1.9.0



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

* [PATCH 05/20] flib: update to 14489ee
  2017-10-10  9:42 [PATCH 01/20] qe-ucode: update SRC_URL Chunrong Guo
                   ` (2 preceding siblings ...)
  2017-10-10  9:42 ` [PATCH 04/20] eth-config: update SRC_URL Chunrong Guo
@ 2017-10-10  9:42 ` Chunrong Guo
  2017-10-10  9:42 ` [PATCH 06/20] fmlib: update SRC_URL Chunrong Guo
                   ` (14 subsequent siblings)
  18 siblings, 0 replies; 35+ messages in thread
From: Chunrong Guo @ 2017-10-10  9:42 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

*include the following changes
14489ee - add AES-CTR support in cnstr_shdsc_blkcipher()
875b56d - authenc: add AES-CTR support
317f9d9 - add generic AES-GCM support

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

diff --git a/recipes-dpaa/flib/flib_git.bb b/recipes-dpaa/flib/flib_git.bb
index 6e12996..1fea97d 100644
--- a/recipes-dpaa/flib/flib_git.bb
+++ b/recipes-dpaa/flib/flib_git.bb
@@ -4,7 +4,7 @@ LICENSE = "BSD & GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=75d2f6a74299640c05ae6c69ed7a4ad6"
 
 SRC_URI = "git://github.com/qoriq-open-source/flib.git;nobranch=1"
-SRCREV = "2c9b9dc22699f7c00f24a2134c42901932a6a0b9"
+SRCREV = "14489ee2207650ddc89890df4b9f600da9ad665c"
 
 S = "${WORKDIR}/git"
 
-- 
1.9.0



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

* [PATCH 06/20] fmlib: update SRC_URL
  2017-10-10  9:42 [PATCH 01/20] qe-ucode: update SRC_URL Chunrong Guo
                   ` (3 preceding siblings ...)
  2017-10-10  9:42 ` [PATCH 05/20] flib: update to 14489ee Chunrong Guo
@ 2017-10-10  9:42 ` Chunrong Guo
  2017-10-11 13:00   ` Otavio Salvador
  2017-10-10  9:42 ` [PATCH 07/20] aiopsl: update to 2b7284f Chunrong Guo
                   ` (13 subsequent siblings)
  18 siblings, 1 reply; 35+ messages in thread
From: Chunrong Guo @ 2017-10-10  9:42 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-dpaa/fmlib/fmlib_git.bb | 12 +++---------
 1 file changed, 3 insertions(+), 9 deletions(-)

diff --git a/recipes-dpaa/fmlib/fmlib_git.bb b/recipes-dpaa/fmlib/fmlib_git.bb
index 8a7f9a7..11783c5 100644
--- a/recipes-dpaa/fmlib/fmlib_git.bb
+++ b/recipes-dpaa/fmlib/fmlib_git.bb
@@ -5,22 +5,16 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=3f16fa8e677e45af3127c5c4bafc3c00"
 
 PR = "r1"
 
-SRC_URI = "git://git.freescale.com/ppc/sdk/fmlib.git;branch=sdk-v2.0.x"
-SRCREV = "caec18a71ed702a176892efaf946281b9160e220"
+SRC_URI = "git://github.com/qoriq-open-source/fmlib.git;nobranch=1"
+SRCREV = "9f20cab379212e8fab907b17910e31a6a86380dd"
 
 S = "${WORKDIR}/git"
 
-TARGET_ARCH_FMLIB = "${DEFAULTTUNE}"
-TARGET_ARCH_FMLIB_e5500 = "ppc32e5500"
-TARGET_ARCH_FMLIB_e6500 = "ppc32e6500"
-TARGET_ARCH_FMLIB_ls1043a = "arm64a53"
-TARGET_ARCH_FMLIB_ls1046a = "arm64a72"
 
 EXTRA_OEMAKE = "DESTDIR=${D} PREFIX=${prefix} LIB_DEST_DIR=${libdir} \
         CROSS_COMPILE=${TARGET_PREFIX} KERNEL_SRC=${STAGING_KERNEL_DIR}"
 
-FMLIB_TARGET = "libfm-${TARGET_ARCH_FMLIB}"
-FMLIB_TARGET_t1 = "libfm-${TARGET_ARCH_FMLIB}-fmv3l"
+FMLIB_TARGET = "libfm-arm"
 do_compile () {
     oe_runmake ${FMLIB_TARGET}.a
 }
-- 
1.9.0



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

* [PATCH 07/20] aiopsl: update to 2b7284f
  2017-10-10  9:42 [PATCH 01/20] qe-ucode: update SRC_URL Chunrong Guo
                   ` (4 preceding siblings ...)
  2017-10-10  9:42 ` [PATCH 06/20] fmlib: update SRC_URL Chunrong Guo
@ 2017-10-10  9:42 ` Chunrong Guo
  2017-10-10  9:42 ` [PATCH 08/20] gpp-aioptool: update to 43b842b Chunrong Guo
                   ` (12 subsequent siblings)
  18 siblings, 0 replies; 35+ messages in thread
From: Chunrong Guo @ 2017-10-10  9:42 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

*include the following changes
2b7284f - apps: update elfs before tag
2e44c43 - firmware no.: 8.1.1
ba731d9 - scripts: fix dpcon creation
9bc1ca5 - apps: update elfs before tag
a0531c5 - firmware no.: 8.1.0
f7e361b - dpni: fix compilation warnings
f87f389 - qos demo: perf targets
b795e2a - projects: fix all builds
6720145 - scripts: updates for QoS
60da9a9 - qos demo: sync with the new QoS API
5ef275c - dpl: updates for QoS
e685d99 - qos: API sync with MC 10.3.1
c3aebfe - IPR: Fixed IPv6 atomic fragment detection
eb3f4c0 - IPF_demo: initial presentation offset should be 0
253e989 - IPF: initial presentation offset should be 0
97dc5a1 - Apps: New GSO demo app
930fbc1 - ipc: change spinclocks/atomic counter type to uint64_t
7c0fab8 - roc_process_packet : TMAN query timer state command
f0c33a9 - TMAN: Fix TMI statistics
57efe24 - TMAN: Add API for getting TMI statistics
0281d8d - roc_process_packet : FDMA replicate frame command
de7b372 - roc_process_packet : Update TLS size
be6d737 - roc_process_packet : Set data segment presentation
666ee6d - roc_process_packet : Convert to Unix EOL
116c8fd - slob: fixed free list not updating properly
f8ee861 - FDMA : Concatenated frame handle not set in PRC
d53b626 - debugging: update dump functions for slob
5bb5157 - FDMA : Wrong segment length when ASA extend size is 0
e2ff23c - slob: Fix allocation issue when passing large alignment to slob_get()
207b05b - apps: update elfs before tag
b305330 - firmware no.: 8.0.3
7496304 - ipr: removed reference counter usage
833986f - aiop_apps: helper functions to fix the default FD
27cef58 - aiop_apps : Soft Parser readme
ee42501 - roc_process_packet : MC cache coherence issue
8a74d70 - CDMA : Cache attributes control API
70ab217 - cwapr: removed reference counter usage

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 5df26e6..f6f6fb2 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://github.com/qoriq-open-source/aiopsl.git;nobranch=1"
-SRCREV = "9d45f430b648d49a893be8a43ef1b64c09a5b41b"
+SRCREV = "2b7284f0020b7f42bf8eae1a4094df9f3140575e"
 
 do_configure[noexec] = "1"
 do_compile[noexec] = "1"
-- 
1.9.0



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

* [PATCH 08/20] gpp-aioptool: update to 43b842b
  2017-10-10  9:42 [PATCH 01/20] qe-ucode: update SRC_URL Chunrong Guo
                   ` (5 preceding siblings ...)
  2017-10-10  9:42 ` [PATCH 07/20] aiopsl: update to 2b7284f Chunrong Guo
@ 2017-10-10  9:42 ` Chunrong Guo
  2017-10-10  9:42 ` [PATCH 09/20] restool: update to 87c3abe Chunrong Guo
                   ` (11 subsequent siblings)
  18 siblings, 0 replies; 35+ messages in thread
From: Chunrong Guo @ 2017-10-10  9:42 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

*include the following changes
43b842b - Add support for 'Thread per Core' parameter
647f02e - Remove dependency on KERNEL_PATH for build
5103b0c - Fix misleading variable name

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

diff --git a/recipes-dpaa2/gpp-aioptool/gpp-aioptool_git.bb b/recipes-dpaa2/gpp-aioptool/gpp-aioptool_git.bb
index dfc649b..f75421d 100644
--- a/recipes-dpaa2/gpp-aioptool/gpp-aioptool_git.bb
+++ b/recipes-dpaa2/gpp-aioptool/gpp-aioptool_git.bb
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=386a6287daa6504b7e7e5014ddfb3987"
 
 SRC_URI = "git://github.com/qoriq-open-source/gpp-aioptool.git;nobranch=1 \
 "
-SRCREV = "a350379796653a0e0f8c096c46d84b8469ef19a9"
+SRCREV = "43b842b493482385b93e34fa7cab09bd96802af2"
 
 S = "${WORKDIR}/git"
 
-- 
1.9.0



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

* [PATCH 09/20] restool: update to 87c3abe
  2017-10-10  9:42 [PATCH 01/20] qe-ucode: update SRC_URL Chunrong Guo
                   ` (6 preceding siblings ...)
  2017-10-10  9:42 ` [PATCH 08/20] gpp-aioptool: update to 43b842b Chunrong Guo
@ 2017-10-10  9:42 ` Chunrong Guo
  2017-10-10  9:42 ` [PATCH 10/20] restool:add ls1043ardb and ls1046ardb support Chunrong Guo
                   ` (10 subsequent siblings)
  18 siblings, 0 replies; 35+ messages in thread
From: Chunrong Guo @ 2017-10-10  9:42 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

87c3abe - scripts: fix improper usage of bash arithmetic operations

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

diff --git a/recipes-dpaa2/restool/restool_git.bb b/recipes-dpaa2/restool/restool_git.bb
index aa6b8e4..c5e0231 100644
--- a/recipes-dpaa2/restool/restool_git.bb
+++ b/recipes-dpaa2/restool/restool_git.bb
@@ -7,7 +7,7 @@ RDEPENDS_${PN} += "bash"
 SRC_URI = "git://github.com/qoriq-open-source/restool.git;nobranch=1 \
     file://0001-restool-fix-build-error-with-gcc7.patch"
 
-SRCREV = "f01f2ea4ab2d5b2432c4497cc772d2fd8cca3eb3"
+SRCREV = "87c3abe305d02a866404237773d4f736ab5247b2"
 
 S = "${WORKDIR}/git"
 
-- 
1.9.0



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

* [PATCH 10/20] restool:add ls1043ardb and ls1046ardb support
  2017-10-10  9:42 [PATCH 01/20] qe-ucode: update SRC_URL Chunrong Guo
                   ` (7 preceding siblings ...)
  2017-10-10  9:42 ` [PATCH 09/20] restool: update to 87c3abe Chunrong Guo
@ 2017-10-10  9:42 ` Chunrong Guo
  2017-10-10  9:42 ` [PATCH 11/20] cantest: update SRC_URL Chunrong Guo
                   ` (9 subsequent siblings)
  18 siblings, 0 replies; 35+ messages in thread
From: Chunrong Guo @ 2017-10-10  9:42 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

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

diff --git a/recipes-dpaa2/restool/restool_git.bb b/recipes-dpaa2/restool/restool_git.bb
index c5e0231..3b56102 100644
--- a/recipes-dpaa2/restool/restool_git.bb
+++ b/recipes-dpaa2/restool/restool_git.bb
@@ -17,6 +17,6 @@ do_install () {
     oe_runmake install DESTDIR=${D}
 }
 
-COMPATIBLE_MACHINE = "(ls2080ardb|ls2088ardb|ls1088ardb)"
+COMPATIBLE_MACHINE = "(ls2080ardb|ls2088ardb|ls1088ardb|ls1043ardb|ls1046ardb)"
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
-- 
1.9.0



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

* [PATCH 11/20] cantest: update SRC_URL
  2017-10-10  9:42 [PATCH 01/20] qe-ucode: update SRC_URL Chunrong Guo
                   ` (8 preceding siblings ...)
  2017-10-10  9:42 ` [PATCH 10/20] restool:add ls1043ardb and ls1046ardb support Chunrong Guo
@ 2017-10-10  9:42 ` Chunrong Guo
  2017-10-11 13:01   ` Otavio Salvador
  2017-10-10  9:42 ` [PATCH 12/20] dpdk: update to 64578fa Chunrong Guo
                   ` (8 subsequent siblings)
  18 siblings, 1 reply; 35+ messages in thread
From: Chunrong Guo @ 2017-10-10  9:42 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

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

diff --git a/recipes-extended/cantest/cantest_1.0.bb b/recipes-extended/cantest/cantest_1.0.bb
index 72062f3..cf8f1f0 100644
--- a/recipes-extended/cantest/cantest_1.0.bb
+++ b/recipes-extended/cantest/cantest_1.0.bb
@@ -2,16 +2,19 @@ DESCRIPTION = "cantest"
 LICENSE = "GPLv2"
 LIC_FILES_CHKSUM = "file://COPYING;md5=d85064f0fa931974668d281ab83cc97e"
 
-SRC_URI = "git://git.freescale.com/ppc/sdk/cantest.git;branch=sdk-v2.0.x"
-SRCREV = "0ad5fa86b1007aefef60a10ccb3a946497477995"
+SRC_URI = "git://github.com/qoriq-open-source/cantest.git;nobranch=1"
+SRCREV = "9a9735862dce192de782550d0ab1a50f163b537c"
 
 S = "${WORKDIR}/git"
 
+EXTRA_OEMAKE = 'CC="${CC}" LD="${CC}"'
+
+PARALLEL_MAKE = ""
+
 do_install() {
     install -d ${D}${bindir}
     install -m 755 cantest ${D}${bindir}
 }
 
-COMPATIBLE_MACHINE = "(e500v2)"
 PACKAGE_ARCH = "${MACHINE_SOCARCH}"
 
-- 
1.9.0



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

* [PATCH 12/20] dpdk: update to 64578fa
  2017-10-10  9:42 [PATCH 01/20] qe-ucode: update SRC_URL Chunrong Guo
                   ` (9 preceding siblings ...)
  2017-10-10  9:42 ` [PATCH 11/20] cantest: update SRC_URL Chunrong Guo
@ 2017-10-10  9:42 ` Chunrong Guo
  2017-10-11 13:05   ` Otavio Salvador
  2017-10-10  9:42 ` [PATCH 13/20] odp: update to bef6398 Chunrong Guo
                   ` (7 subsequent siblings)
  18 siblings, 1 reply; 35+ messages in thread
From: Chunrong Guo @ 2017-10-10  9:42 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

*include the following changes
64578fa - bus/dpaa: fix port order shuffling
f58c470 - Merge pull request #451 in GITAM/dpdk from feature/DPDK-837 to 17.05-qoriq
7132562 - dpaa: Patch to fix coverity issue
cdc268a - dpaa2: Patch to fix coverity issues.
10bc4d4 - dpaa: Patch to fix coverity issues
38d7299 - dpaa2: add devices in sorted order
780057c - examples/ipsec-secgw: increase max number of SA
c2982a1 - examples/ipsec-secgw: add cfg files for 64x64 tunnels
47150cb - Revert "net: dpaa2: enable rx checksum offload as per user input"
7ebbca7 - net/dpaa:Adding correct Mask layers while ptype calculation
727336c - Revert "net: dpaa2: enable fetching hash result from hardware"

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 .../dpdk/dpdk/0001-fix-build-with-gcc-7.1.patch    | 119 ---------------------
 recipes-extended/dpdk/dpdk_16.07.bb                |   7 +-
 2 files changed, 2 insertions(+), 124 deletions(-)
 delete mode 100644 recipes-extended/dpdk/dpdk/0001-fix-build-with-gcc-7.1.patch

diff --git a/recipes-extended/dpdk/dpdk/0001-fix-build-with-gcc-7.1.patch b/recipes-extended/dpdk/dpdk/0001-fix-build-with-gcc-7.1.patch
deleted file mode 100644
index 399510a..0000000
--- a/recipes-extended/dpdk/dpdk/0001-fix-build-with-gcc-7.1.patch
+++ /dev/null
@@ -1,119 +0,0 @@
-From 03ee26cd708971a51f056e3f53482367aa38fcb1 Mon Sep 17 00:00:00 2001
-From: Chunrong Guo <chunrong.guo@nxp.com>
-Date: Wed, 12 Jul 2017 12:03:38 +0800
-Subject: [PATCH] fix build with gcc 7.1
-
-Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
----
- lib/librte_cmdline/cmdline_parse_num.c        |  4 ++--
- lib/librte_eal/linuxapp/kni/ethtool/igb/igb.h |  2 +-
- lib/librte_hash/rte_crc_arm64.h               |  2 ++
- lib/librte_ring/rte_ring.h                    | 18 ++++++++++++------
- mk/toolchain/gcc/rte.vars.mk                  |  6 ++++++
- 5 files changed, 23 insertions(+), 9 deletions(-)
-
-diff --git a/lib/librte_cmdline/cmdline_parse_num.c b/lib/librte_cmdline/cmdline_parse_num.c
-index b0f9a35..e507ec4 100644
---- a/lib/librte_cmdline/cmdline_parse_num.c
-+++ b/lib/librte_cmdline/cmdline_parse_num.c
-@@ -250,7 +250,7 @@ cmdline_parse_num(cmdline_parse_token_hdr_t *tk, const char *srcbuf, void *res,
- 
- 		case HEX:
- 			st = HEX_OK;
--			/* no break */
-+			/* fall-through no break */
- 		case HEX_OK:
- 			if (c >= '0' && c <= '9') {
- 				if (add_to_res(c - '0', &res1, 16) < 0)
-@@ -282,7 +282,7 @@ cmdline_parse_num(cmdline_parse_token_hdr_t *tk, const char *srcbuf, void *res,
- 
- 		case BIN:
- 			st = BIN_OK;
--			/* no break */
-+			/* fall-through */
- 		case BIN_OK:
- 			if (c >= '0' && c <= '1') {
- 				if (add_to_res(c - '0', &res1, 2) < 0)
-diff --git a/lib/librte_eal/linuxapp/kni/ethtool/igb/igb.h b/lib/librte_eal/linuxapp/kni/ethtool/igb/igb.h
-index e5554ca..8d76f32 100644
---- a/lib/librte_eal/linuxapp/kni/ethtool/igb/igb.h
-+++ b/lib/librte_eal/linuxapp/kni/ethtool/igb/igb.h
-@@ -607,7 +607,7 @@ struct igb_adapter {
- 	int int_mode;
- 	u32 rss_queues;
- 	u32 vmdq_pools;
--	char fw_version[32];
-+	char fw_version[43];
- 	u32 wvbr;
- 	struct igb_mac_addr *mac_table;
- #ifdef CONFIG_IGB_VMDQ_NETDEV
-diff --git a/lib/librte_hash/rte_crc_arm64.h b/lib/librte_hash/rte_crc_arm64.h
-index 7dd6334..a17c0e4 100644
---- a/lib/librte_hash/rte_crc_arm64.h
-+++ b/lib/librte_hash/rte_crc_arm64.h
-@@ -110,8 +110,10 @@ rte_hash_crc_set_alg(uint8_t alg)
- 	case CRC32_ARM64:
- 		if (!rte_cpu_get_flag_enabled(RTE_CPUFLAG_CRC32))
- 			alg = CRC32_SW;
-+                /* fall-through */
- 	case CRC32_SW:
- 		crc32_alg = alg;
-+                /* fall-through */
- 	default:
- 		break;
- 	}
-diff --git a/lib/librte_ring/rte_ring.h b/lib/librte_ring/rte_ring.h
-index 0e22e69..085f3fe 100644
---- a/lib/librte_ring/rte_ring.h
-+++ b/lib/librte_ring/rte_ring.h
-@@ -364,9 +364,12 @@ void rte_ring_dump(FILE *f, const struct rte_ring *r);
- 			r->ring[idx+3] = obj_table[i+3]; \
- 		} \
- 		switch (n & 0x3) { \
--			case 3: r->ring[idx++] = obj_table[i++]; \
--			case 2: r->ring[idx++] = obj_table[i++]; \
--			case 1: r->ring[idx++] = obj_table[i++]; \
-+		case 3: \
-+			r->ring[idx++] = obj_table[i++]; /* fallthrough */ \
-+		case 2: \
-+			r->ring[idx++] = obj_table[i++]; /* fallthrough */ \
-+		case 1: \
-+			r->ring[idx++] = obj_table[i++]; /* fallthrough */  \
- 		} \
- 	} else { \
- 		for (i = 0; idx < size; i++, idx++)\
-@@ -390,9 +393,12 @@ void rte_ring_dump(FILE *f, const struct rte_ring *r);
- 			obj_table[i+3] = r->ring[idx+3]; \
- 		} \
- 		switch (n & 0x3) { \
--			case 3: obj_table[i++] = r->ring[idx++]; \
--			case 2: obj_table[i++] = r->ring[idx++]; \
--			case 1: obj_table[i++] = r->ring[idx++]; \
-+		case 3: \
-+			obj_table[i++] = r->ring[idx++]; /* fallthrough */ \
-+		case 2: \
-+			obj_table[i++] = r->ring[idx++]; /* fallthrough */ \
-+		case 1: \
-+			obj_table[i++] = r->ring[idx++]; /* fallthrough */ \
- 		} \
- 	} else { \
- 		for (i = 0; idx < size; i++, idx++) \
-diff --git a/mk/toolchain/gcc/rte.vars.mk b/mk/toolchain/gcc/rte.vars.mk
-index 94f6412..350c8bc 100644
---- a/mk/toolchain/gcc/rte.vars.mk
-+++ b/mk/toolchain/gcc/rte.vars.mk
-@@ -101,5 +101,11 @@ ifeq ($(shell test $(GCC_VERSION) -lt 47 && echo 1), 1)
- WERROR_FLAGS += -Wno-uninitialized
- endif
- 
-+ifeq ($(shell test $(GCC_VERSION) -gt 70 && echo 1), 1)
-+# Tell GCC only to error for switch fallthroughs without a suitable comment
-+# Ignore errors for snprintf truncation
-+WERROR_FLAGS += -Wno-format-truncation
-+endif
-+
- export CC AS AR LD OBJCOPY OBJDUMP STRIP READELF
- export TOOLCHAIN_CFLAGS TOOLCHAIN_LDFLAGS TOOLCHAIN_ASFLAGS
--- 
-2.7.4
-
diff --git a/recipes-extended/dpdk/dpdk_16.07.bb b/recipes-extended/dpdk/dpdk_16.07.bb
index b47d041..a78db85 100644
--- a/recipes-extended/dpdk/dpdk_16.07.bb
+++ b/recipes-extended/dpdk/dpdk_16.07.bb
@@ -12,9 +12,8 @@ inherit module
 SRC_URI = "git://github.com/qoriq-open-source/dpdk.git;nobranch=1 \
     file://add-RTE_KERNELDIR_OUT-to-split-kernel-bu.patch \
     file://0001-include-sys-sysmacros.h-for-major-minor-defintions.patch \
-    file://0001-fix-build-with-gcc-7.1.patch \
 "
-SRCREV = "98f548c36b3c805a04d9963b8eb02e09340aa089"
+SRCREV = "64578fa146b459ef88f90e1cb1bf9c3fc3b36b97"
 
 S = "${WORKDIR}/git"
 
@@ -55,8 +54,6 @@ do_install() {
     install -d ${D}/lib/modules/${KERNEL_VERSION}/dpdk
     install -m 0755 ${S}/${RTE_TARGET}/kmod/rte_kni.ko ${D}/lib/modules/${KERNEL_VERSION}/dpdk/
 
-    sed -i 's#/bin/echo#/bin/bash#' ${D}/${datadir}/scripts/load-devel-config.sh
-   # rm ${S}/${RTE_TARGET}/app/dpdk-pmdinfogen
     rm ${D}/${datadir}/${RTE_TARGET}/app/dpdk-pmdinfogen
 
     chown root:root -R ${D}
@@ -66,7 +63,7 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
 
 PACKAGES += "${PN}-examples"
 
-FILES_${PN} += "${datadir}/tools /usr/bin/* /usr/sbin/*"
+FILES_${PN} += "${datadir}/tools /usr/bin/* /usr/sbin/* /usr/share/*"
 FILES_${PN}-dbg += "${bindir}/dpdk-example/.debug \
     ${datadir}/examples/kni/build/.debug \
     ${datadir}/examples/kni/build/app/.debug \
-- 
1.9.0



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

* [PATCH 13/20] odp: update to bef6398
  2017-10-10  9:42 [PATCH 01/20] qe-ucode: update SRC_URL Chunrong Guo
                   ` (10 preceding siblings ...)
  2017-10-10  9:42 ` [PATCH 12/20] dpdk: update to 64578fa Chunrong Guo
@ 2017-10-10  9:42 ` Chunrong Guo
  2017-10-11 13:02   ` Otavio Salvador
  2017-10-10  9:42 ` [PATCH 14/20] ovs-dpdk: update SRC_URL Chunrong Guo
                   ` (6 subsequent siblings)
  18 siblings, 1 reply; 35+ messages in thread
From: Chunrong Guo @ 2017-10-10  9:42 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

*include the following changes
bef6398 - TM: Invalid flow crash fix
8e7a136 - Removed device based jiffies
df492ef - Fixing legal issues
3e9c5da - Scripts: binaries path and odp_tm test cases updated
c91dac8 - Werror flag enabled for ODP library
ced3aaf - Updated MC flib to version 10.3.2
a68cd87 - odp_pktio_stats API updated
03e0e05 - LD_LIBRARY_PATH removed from loopback_script
7a64406 - CUNIT: Cunit installation enabled
048c6a6 - script: ODP library path fixed

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>>
---
 recipes-extended/odp/odp.inc    | 7 ++++---
 recipes-extended/odp/odp_git.bb | 6 ++----
 2 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/recipes-extended/odp/odp.inc b/recipes-extended/odp/odp.inc
index 421deff..5d8d789 100644
--- a/recipes-extended/odp/odp.inc
+++ b/recipes-extended/odp/odp.inc
@@ -4,7 +4,7 @@ DESCRIPTION = "OpenDataPlane (ODP) provides a data plane application programming
 HOMEPAGE = "http://www.opendataplane.org"
 SECTION = "console/network"
 LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=472053b942339f200d9e1d2dcb947e9d"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=ca6103dc75397fb6bec596187d6b7829"
 
 FILESEXTRAPATHS_prepend := "${THISDIR}/odp:"
 
@@ -16,9 +16,10 @@ git://github.com/qoriq-open-source/flib.git;nobranch=1;name=rta;destsuffix=git/p
 
 SRC_URI += "file://0001-Fix-this-build-error.patch"
 
-SRCREV = "fdb26cb5c751afadf2299da2a1376e6ca0e61cc7"
+SRCREV = "bef6398a09db4a6b909aa0c6accc7c15621ce5ef"
+
 SRCREV_qbman = "097595befc2bb60b733027e94ad2ed16a0e9cae0"
-SRCREV_rta = "2c9b9dc22699f7c00f24a2134c42901932a6a0b9"
+SRCREV_rta = "bbab28b03ae21c52ce913f8b052acf53bd24ff5d"
 
 S = "${WORKDIR}/git"
 
diff --git a/recipes-extended/odp/odp_git.bb b/recipes-extended/odp/odp_git.bb
index b7c7deb..b9d4558 100644
--- a/recipes-extended/odp/odp_git.bb
+++ b/recipes-extended/odp/odp_git.bb
@@ -12,8 +12,6 @@ ODP_SOC ?= ""
 ODP_SOC_ls1043ardb = "LS1043"
 ODP_SOC_ls1046ardb = "LS1046"
 ODP_PLATFORM ?= "linux-dpaa2"
-ODP_PLATFORM_ls1043ardb = "linux-dpaa1"
-ODP_PLATFORM_ls1046ardb = "linux-dpaa1"
 ODP_BUILD_TYPE ?= "ls2088"
 ODP_BUILD_TYPE_ls1043ardb = "ls1043"
 ODP_BUILD_TYPE_ls1046ardb = "ls1046"
@@ -21,8 +19,6 @@ ODP_BUILD_TYPE_ls2080ardb = "ls2080"
 ODP_BUILD_TYPE_ls1088ardb = "ls1088"
 
 EXTRA_OECONF = "--with-platform=${ODP_PLATFORM} \
-                --with-sdk-install-path=${STAGING_DIR_TARGET} \
-                --enable-build-type=${ODP_BUILD_TYPE} \
                 --enable-test-vald \
                 --enable-test-perf \
                 --enable-test-cpp \
@@ -32,6 +28,8 @@ EXTRA_OEMAKE = "CROSS_COMPILE="${TARGET_PREFIX}" \
                 SYSROOT="${STAGING_DIR_TARGET}" \
 "
 
+CFLAGS += "-Wno-format-truncation -Wno-maybe-uninitialized -Wno-implicit-fallthrough"
+
 PACKAGECONFIG[perf] = "--enable-test-perf,,,"
 
 do_configure_prepend () {
-- 
1.9.0



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

* [PATCH 14/20] ovs-dpdk: update SRC_URL
  2017-10-10  9:42 [PATCH 01/20] qe-ucode: update SRC_URL Chunrong Guo
                   ` (11 preceding siblings ...)
  2017-10-10  9:42 ` [PATCH 13/20] odp: update to bef6398 Chunrong Guo
@ 2017-10-10  9:42 ` Chunrong Guo
  2017-10-11 13:04   ` Otavio Salvador
  2017-10-10  9:42 ` [PATCH 15/20] qoriq-base: add UBINIZE_ARGS and MKUBIFS_ARGS Chunrong Guo
                   ` (5 subsequent siblings)
  18 siblings, 1 reply; 35+ messages in thread
From: Chunrong Guo @ 2017-10-10  9:42 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

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

diff --git a/recipes-extended/ovs-dpdk/ovs-dpdk_0.1.bb b/recipes-extended/ovs-dpdk/ovs-dpdk_0.1.bb
index e8d89c7..78188cd 100644
--- a/recipes-extended/ovs-dpdk/ovs-dpdk_0.1.bb
+++ b/recipes-extended/ovs-dpdk/ovs-dpdk_0.1.bb
@@ -7,8 +7,8 @@ RDEPENDS_${PN} = "bash libcrypto libssl python"
 
 inherit pythonnative
 
-SRC_URI = "git://git.freescale.com/ppc/sdk/ovs-dpdk.git;nobranch=1"
-SRCREV = "84599fad4a10597fb4377174abdeb84b871cb4b0"
+SRC_URI = "git://github.com/qoriq-open-source/ovs-dpdk.git;nobranch=1"
+SRCREV = "626a2600f093d84608a1bde29336f523ac74ae99"
 
 S = "${WORKDIR}/git"
 
@@ -46,4 +46,4 @@ do_install() {
 ALLOW_EMPTY_${PN} = "1"
 INHIBIT_PACKAGE_STRIP = "1"
 PACKAGE_ARCH = "${MACHINE_ARCH}"
-COMPATIBLE_MACHINE = "(ls2080ardb|ls2084ardb|ls2088a|ls1043a|ls1046a)"
+COMPATIBLE_MACHINE = "(ls2080ardb|ls2084ardb|ls2088a|ls1043a|ls1046a|ls1088a)"
-- 
1.9.0



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

* [PATCH 15/20] qoriq-base: add UBINIZE_ARGS and MKUBIFS_ARGS
  2017-10-10  9:42 [PATCH 01/20] qe-ucode: update SRC_URL Chunrong Guo
                   ` (12 preceding siblings ...)
  2017-10-10  9:42 ` [PATCH 14/20] ovs-dpdk: update SRC_URL Chunrong Guo
@ 2017-10-10  9:42 ` Chunrong Guo
  2017-10-11 13:02   ` Otavio Salvador
  2017-10-10  9:42 ` [PATCH 16/20] ppa :update to d455113 Chunrong Guo
                   ` (4 subsequent siblings)
  18 siblings, 1 reply; 35+ messages in thread
From: Chunrong Guo @ 2017-10-10  9:42 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 conf/machine/include/qoriq-base.inc | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/conf/machine/include/qoriq-base.inc b/conf/machine/include/qoriq-base.inc
index 562f5d7..dcb6d4e 100644
--- a/conf/machine/include/qoriq-base.inc
+++ b/conf/machine/include/qoriq-base.inc
@@ -27,3 +27,6 @@ MACHINE_ARCH_FILTER = "virtual/kernel"
 MACHINE_SOCARCH_FILTER_append_qoriq = " cryptodev-qoriq-linux cryptodev-qoriq-module cryptodev-qoriq-test openssl-qoriq"
 
 INHERIT += "fsl-dynamic-packagearch"
+
+MKUBIFS_ARGS ??= "-m 512 -e 15360 -c 12000"
+UBINIZE_ARGS ??= "-m 512 -p 16KiB -s 512"
-- 
1.9.0



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

* [PATCH 16/20] ppa :update to d455113
  2017-10-10  9:42 [PATCH 01/20] qe-ucode: update SRC_URL Chunrong Guo
                   ` (13 preceding siblings ...)
  2017-10-10  9:42 ` [PATCH 15/20] qoriq-base: add UBINIZE_ARGS and MKUBIFS_ARGS Chunrong Guo
@ 2017-10-10  9:42 ` Chunrong Guo
  2017-10-11 13:06   ` Otavio Salvador
  2017-10-10  9:42 ` [PATCH 17/20] uefi :update to bd59c46 Chunrong Guo
                   ` (3 subsequent siblings)
  18 siblings, 1 reply; 35+ messages in thread
From: Chunrong Guo @ 2017-10-10  9:42 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

This includes the following changes:

d455113 - Fixing offset into bootcore data area.
87b117e - Moving Chassis defs out of soc.h and into lsch3/lsch2.h.
93f17b3 - Releasing cores from reset that are marked "to be disabled".
2872682 - Fixing ordering problem in makefile.inc which caused builds using earlier than GCC 6.2 to fail.
f52a4a9 - Adding separate folders for each driver; Adding rdb board for LA17xx.
b003ea1 - Adding initial ppa for soc LA17xx.
ce7f372 - Changing secondary core release method to reduce risk of race condition between ppa and bootrom.
78b8281 - Fixing psci data area initialization.
bed0d04 - Eliminating race condition between psci and bootrom on core release.
89ddb56 - Cleanup of prefetch disable function.
8781337 - Fix for QPPA-23: overwriting saved link register in _soc_init_start when bootcore used to initialize ocram.
4ee3738 - Adding header file left out of last commit.
cc33e5e - Adding smc function prefetch disable.
2de51a3 - Changing psci call to _soc_core_rls_wait into a call to _soc_core_release.
12be3c6 - Updating text in license file.
76a61f5 - Added release note deprecating build methods using "make"

Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
---
 recipes-bsp/ppa/ppa/0001-fix-path-error.patch | 77 +++++++++++++++++++++++++++
 recipes-bsp/ppa/ppa_git.bb                    |  6 ++-
 2 files changed, 81 insertions(+), 2 deletions(-)
 create mode 100644 recipes-bsp/ppa/ppa/0001-fix-path-error.patch

diff --git a/recipes-bsp/ppa/ppa/0001-fix-path-error.patch b/recipes-bsp/ppa/ppa/0001-fix-path-error.patch
new file mode 100644
index 0000000..28d7b31
--- /dev/null
+++ b/recipes-bsp/ppa/ppa/0001-fix-path-error.patch
@@ -0,0 +1,77 @@
+From aa3b419876af9c2a9265fba7c7264130e1bc4926 Mon Sep 17 00:00:00 2001
+From: Chunrong Guo <chunrong.guo@nxp.com>
+Date: Wed, 27 Sep 2017 10:45:04 +0800
+Subject: [PATCH] fix path error
+
+fix the below error:
+|Makefile:58: ../armv8/gic.mk: No such file or directory
+
+Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
+---
+ ppa/soc-ls1046/Makefile | 4 ++--
+ ppa/soc-ls1088/Makefile | 4 ++--
+ ppa/soc-ls2088/Makefile | 5 +++--
+ 3 files changed, 7 insertions(+), 6 deletions(-)
+
+diff --git a/ppa/soc-ls1046/Makefile b/ppa/soc-ls1046/Makefile
+index 34ffe2d..6a06514 100644
+--- a/ppa/soc-ls1046/Makefile
++++ b/ppa/soc-ls1046/Makefile
+@@ -55,12 +55,12 @@ include $(PRE_PATH)soc.def
+ # -----------------------------------------------------------------------------
+ 
+  # include the gic architecture file
+-include ../armv8/gic.mk
++include $(PRE_PATH)../armv8/gic.mk
+ 
+ # -----------------------------------------------------------------------------
+ 
+  # include the interconnect architecture file
+-include ../armv8/inter.mk
++include $(PRE_PATH)../armv8/inter.mk
+ 
+ # -----------------------------------------------------------------------------
+ 
+diff --git a/ppa/soc-ls1088/Makefile b/ppa/soc-ls1088/Makefile
+index 7fc5db9..6472408 100644
+--- a/ppa/soc-ls1088/Makefile
++++ b/ppa/soc-ls1088/Makefile
+@@ -55,12 +55,12 @@ include $(PRE_PATH)soc.def
+ # -----------------------------------------------------------------------------
+ 
+  # include the gic architecture file
+-include ../armv8/gic.mk
++include $(PRE_PATH)../armv8/gic.mk
+ 
+ # -----------------------------------------------------------------------------
+ 
+  # include the interconnect architecture file
+-include ../armv8/inter.mk
++include $(PRE_PATH)../armv8/inter.mk
+ 
+ # -----------------------------------------------------------------------------
+ 
+diff --git a/ppa/soc-ls2088/Makefile b/ppa/soc-ls2088/Makefile
+index de3a06c..2fe23e2 100644
+--- a/ppa/soc-ls2088/Makefile
++++ b/ppa/soc-ls2088/Makefile
+@@ -54,13 +54,14 @@ include $(PRE_PATH)soc.def
+ 
+ # -----------------------------------------------------------------------------
+ 
++include $(PRE_PATH)../armv8/gic.mk
+  # include the gic architecture file
+-include ../armv8/gic.mk
++include $(PRE_PATH)../armv8/gic.mk
+ 
+ # -----------------------------------------------------------------------------
+ 
+  # include the interconnect architecture file
+-include ../armv8/inter.mk
++include $(PRE_PATH)../armv8/inter.mk
+ 
+ # -----------------------------------------------------------------------------
+ 
+-- 
+2.7.4
+
diff --git a/recipes-bsp/ppa/ppa_git.bb b/recipes-bsp/ppa/ppa_git.bb
index ede3b64..1bfaa65 100644
--- a/recipes-bsp/ppa/ppa_git.bb
+++ b/recipes-bsp/ppa/ppa_git.bb
@@ -6,8 +6,10 @@ DEPENDS += "u-boot-mkimage-native dtc-native"
 
 inherit deploy
 
-SRC_URI = "git://github.com/qoriq-open-source/ppa-generic.git;nobranch=1"
-SRCREV = "265d766de8c7f3161f2580af18558af35e114845"
+SRC_URI = "git://github.com/qoriq-open-source/ppa-generic.git;nobranch=1 \
+    file://0001-fix-path-error.patch \
+"
+SRCREV = "d455113088e157e3b544c376b5f1f6d044cbdf66"
 
 S = "${WORKDIR}/git"
 
-- 
1.9.0



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

* [PATCH 17/20] uefi :update to bd59c46
  2017-10-10  9:42 [PATCH 01/20] qe-ucode: update SRC_URL Chunrong Guo
                   ` (14 preceding siblings ...)
  2017-10-10  9:42 ` [PATCH 16/20] ppa :update to d455113 Chunrong Guo
@ 2017-10-10  9:42 ` Chunrong Guo
  2017-10-10  9:42 ` [PATCH 18/20] dpl-examples: update to a6c8375 Chunrong Guo
                   ` (2 subsequent siblings)
  18 siblings, 0 replies; 35+ messages in thread
From: Chunrong Guo @ 2017-10-10  9:42 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

*include the following changes
bd59c46 - update binaries for LSDK 1709

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 b42a85e..1493f0d 100644
--- a/recipes-bsp/uefi/uefi_git.bb
+++ b/recipes-bsp/uefi/uefi_git.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda
 inherit deploy
 
 SRC_URI = "git://github.com/qoriq-open-source/uefi-binary.git;nobranch=1"
-SRCREV= "d0974b734d0c50c99baebf54957ce32433905e40"
+SRCREV= "bd59c468be50737e0d12894c5e6debde433369bd"
 
 S = "${WORKDIR}/git"
 
-- 
1.9.0



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

* [PATCH 18/20] dpl-examples: update to a6c8375
  2017-10-10  9:42 [PATCH 01/20] qe-ucode: update SRC_URL Chunrong Guo
                   ` (15 preceding siblings ...)
  2017-10-10  9:42 ` [PATCH 17/20] uefi :update to bd59c46 Chunrong Guo
@ 2017-10-10  9:42 ` Chunrong Guo
  2017-10-10  9:42 ` [PATCH 19/20] mc:update to 10.3.2 Chunrong Guo
  2017-10-10  9:42 ` [PATCH 20/20] linux :update to 9c3f355 Chunrong Guo
  18 siblings, 0 replies; 35+ messages in thread
From: Chunrong Guo @ 2017-10-10  9:42 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

*include the following changes
a6c8375 - Merge pull request #151 in DPAA2/dpl-examples from ls1088a to master
804d48a - ls1088a: add custom DPC with 4M bman buffers
b51acbb - Merge pull request #148 in DPAA2/dpl-examples from ls1088a to master
3fe5c1a - ls1088a: Added DPNI@1 connected to DPMAC@2
05e9c76 - Merge pull request #141 in DPAA2/dpl-examples from ls2088a to master
89dfc05 - Merge pull request #140 in DPAA2/dpl-examples from ls1088a to master
8086cca - ls1088a: Added DPC and DPL for backplane support
cf5aecb - ls2088a: Added DPC and DPL for backplane support
759cbc9 - add root LICENSE file
365f259 - add root LICENSE file
*include the following changes
a6c8375 - Merge pull request #151 in DPAA2/dpl-examples from ls1088a to master
804d48a - ls1088a: add custom DPC with 4M bman buffers
b51acbb - Merge pull request #148 in DPAA2/dpl-examples from ls1088a to master
3fe5c1a - ls1088a: Added DPNI@1 connected to DPMAC@2
05e9c76 - Merge pull request #141 in DPAA2/dpl-examples from ls2088a to master
89dfc05 - Merge pull request #140 in DPAA2/dpl-examples from ls1088a to master
8086cca - ls1088a: Added DPC and DPL for backplane support
cf5aecb - ls2088a: Added DPC and DPL for backplane support
759cbc9 - add root LICENSE file
365f259 - add root LICENSE file

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

diff --git a/recipes-dpaa2/dpl-examples/dpl-examples_git.bb b/recipes-dpaa2/dpl-examples/dpl-examples_git.bb
index d6d668b..9991d40 100644
--- a/recipes-dpaa2/dpl-examples/dpl-examples_git.bb
+++ b/recipes-dpaa2/dpl-examples/dpl-examples_git.bb
@@ -7,7 +7,7 @@ DEPENDS = "dtc-native"
 inherit deploy
 
 SRC_URI = "git://github.com/qoriq-open-source/dpl-examples.git;nobranch=1"
-SRCREV = "592fc2fd1f13107c8a4ae8070fed11a5f8d10471"
+SRCREV = "a6c83759c0d9c02822eec89e86357a0998ef51d4"
 
 S = "${WORKDIR}/git"
 
-- 
1.9.0



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

* [PATCH 19/20] mc:update to 10.3.2
  2017-10-10  9:42 [PATCH 01/20] qe-ucode: update SRC_URL Chunrong Guo
                   ` (16 preceding siblings ...)
  2017-10-10  9:42 ` [PATCH 18/20] dpl-examples: update to a6c8375 Chunrong Guo
@ 2017-10-10  9:42 ` Chunrong Guo
  2017-10-10  9:42 ` [PATCH 20/20] linux :update to 9c3f355 Chunrong Guo
  18 siblings, 0 replies; 35+ messages in thread
From: Chunrong Guo @ 2017-10-10  9:42 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

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

diff --git a/recipes-dpaa2/management-complex/management-complex_10.2.2.bb b/recipes-dpaa2/management-complex/management-complex_10.2.2.bb
deleted file mode 100644
index a637754..0000000
--- a/recipes-dpaa2/management-complex/management-complex_10.2.2.bb
+++ /dev/null
@@ -1,39 +0,0 @@
-SUMMARY = "DPAA2 Management Complex Firmware"
-LICENSE = "Freescale-Binary-EULA"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=0ef9ba7621bd36f5fef5009fbeb56b00"
-
-inherit deploy
-
-INHIBIT_DEFAULT_DEPS = "1"
-
-SRC_URI = "git://github.com/qoriq-open-source/mc-binary.git;nobranch=1"
-SRCREV = "5798f9c2ec0f3b1f2a7a67dc666c87ae3ade837b"
-
-S = "${WORKDIR}/git"
-
-REGLEX_ls2088a = "ls2088a"
-REGLEX_ls1088a = "ls1088a"
-
-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 = "(ls2080ardb|ls2088a|ls1088a)"
-PACKAGE_ARCH = "${MACHINE_ARCH}"
-
diff --git a/recipes-dpaa2/management-complex/management-complex_10.3.2.bb b/recipes-dpaa2/management-complex/management-complex_10.3.2.bb
new file mode 100644
index 0000000..84c952c
--- /dev/null
+++ b/recipes-dpaa2/management-complex/management-complex_10.3.2.bb
@@ -0,0 +1,39 @@
+SUMMARY = "DPAA2 Management Complex Firmware"
+LICENSE = "Freescale-Binary-EULA"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=0ef9ba7621bd36f5fef5009fbeb56b00"
+
+inherit deploy
+
+INHIBIT_DEFAULT_DEPS = "1"
+
+SRC_URI = "git://github.com/qoriq-open-source/mc-binary.git;nobranch=1"
+SRCREV = "5e4a0d854def8cc4090cb86b26ac4ac18e7e4143"
+
+S = "${WORKDIR}/git"
+
+REGLEX_ls2088a = "ls2088a"
+REGLEX_ls1088a = "ls1088a"
+
+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 = "(ls2080ardb|ls2088a|ls1088a)"
+PACKAGE_ARCH = "${MACHINE_ARCH}"
+
-- 
1.9.0



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

* [PATCH 20/20] linux :update to 9c3f355
  2017-10-10  9:42 [PATCH 01/20] qe-ucode: update SRC_URL Chunrong Guo
                   ` (17 preceding siblings ...)
  2017-10-10  9:42 ` [PATCH 19/20] mc:update to 10.3.2 Chunrong Guo
@ 2017-10-10  9:42 ` Chunrong Guo
  18 siblings, 0 replies; 35+ messages in thread
From: Chunrong Guo @ 2017-10-10  9:42 UTC (permalink / raw)
  To: meta-freescale; +Cc: chunrong.guo

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

9c3f355 - mtd: spi-nor: fsl-qspi: Limit read to specified count provided by above layer
66d46f2 - sdk_dpaa: ls1043a errata: maintain timestamp info
f2576e9 - arm: configs: enable CONFIG_IP_MULTICAST in lsdk.config
a48b188 - dts: ls1043aqds: add #address-cells = <1> and #size-cells to fpga node
7fe4a5f - drm/fsl-dcu: fix the wrong calling sequence for clk_prepare and clk_enable
a645ba5 - mtd: spi-nor: fsl-quadspi: workaround for TKT253890
e2485a1 - drivers: firmware: psci: use psci v0.2 to implement sleep
86c8006 - i2c: imx: allow i2c devices share an interrupt
d9c2cd4 - dpaa_eth: avoid Tx timeout warnings
195de47 - dpaa_eth: avoid Tx timeout warnings
a07f339 - usb: dwc3: fix some occasional call trace
a43e0b7 - gianfar: Fix Tx flow control deactivation
70caa34 - sdk_dpaa: ls1043a errata: fix arm32 build
3ca12f1 - sdk_dpaa: ls1043a errata: do not recycle the realigned buffers
c665a20 - sdk_dpaa: ls1043a errata: verify and resize headroom alignment
b0375c7 - sdk_dpaa: ls1043a errata: realign skb in place if needed
e587be3 - sdk_dpaa: ls1043a errata: realign and linearize egress skbs
438cbca - sdk_dpaa: ls1043a errata: resplit the skb after copy
66d6eb5 - linux/core: export copy_skb_header() function
acbc1db - arm:configs: Add lttng.config to support LTTng modules
9621724 - arm64:configs: Add lttng.config to support LTTng modules
1405d32 - arm64: defconfig: enable CONFIG_RTC_DRV_PCF85263
3c94ee2 - config: rtc: pcf85263: add NXP PCF85263 support (i2c)
5e102e1 - config: enable support for lxd and lxd-bridge
e3fc409 - arm64: dts: ls1012a: add USB host controller nodes
dd6b18e - arm64: dts: ls1043a: add pcf85263 rtc nodes
b9183aa - rtc: pcf85263: add NXP PCF85263 support (i2c)
0f94fc9 - usb: dwc3: fix usb dwc3 compile issue
9ca14ec - usb: dwc3: core: re-factor init and exit paths
ee6056c - usb: dwc3: core: move fladj to dwc3 structure
7ef4ead - usb: dwc3: core: add fifo space helper
5f03a20 - usb: dwc3: add disable receiver detection in P3 quirk
74531b8 - usb: dwc3: core: fix PHY handling during suspend
eedbe26 - usb: dwc3: drop ev_buffs array
3b62719 - usb: dwc3: remove num_event_buffers
53891bf - usb: dwc3: drop FIFO resizing logic
9cbc0b72 - usb: dwc3: Validate the maximum_speed parameter
cec41d7 - usb: dwc3: Update maximum_speed for SuperSpeedPlus

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

diff --git a/recipes-kernel/linux/linux-qoriq_4.4.bb b/recipes-kernel/linux/linux-qoriq_4.4.bb
index a22a51c..61d00f2 100644
--- a/recipes-kernel/linux/linux-qoriq_4.4.bb
+++ b/recipes-kernel/linux/linux-qoriq_4.4.bb
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d7810fab7487fb0aad327b76f1be7cd7"
 
 SRC_URI = "git://github.com/qoriq-open-source/linux.git;nobranch=1 \
 "
-SRCREV = "ec61f521be6a22b100aabc0e2726c670aec3c845"
+SRCREV = "9c3f3554c9e7b01aa583ba377de81cd95ab4ab65"
 
 S = "${WORKDIR}/git"
 
-- 
1.9.0



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

* Re: [PATCH 02/20] uboot: update to upgrade to 2017.09
  2017-10-10  9:42 ` [PATCH 02/20] uboot: update to upgrade to 2017.09 Chunrong Guo
@ 2017-10-11 12:59   ` Otavio Salvador
  2017-10-11 13:28     ` Zhenhua Luo
  0 siblings, 1 reply; 35+ messages in thread
From: Otavio Salvador @ 2017-10-11 12:59 UTC (permalink / raw)
  To: Chunrong Guo; +Cc: meta-freescale, Chunrong Guo

On Tue, Oct 10, 2017 at 6:42 AM, Chunrong Guo <B40290@freescale.com> wrote:
> From: Chunrong Guo <chunrong.guo@nxp.com>
...
> +SRC_URI = "git://github.com/qoriq-open-source/u-boot.git;nobranch=1 \
> +    file://fix-build-error-under-gcc6.patch \
> +"

Please merge this to your branch. It is now using github so it makes
sense to avoid carring this kind of patch for no reason.

-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

* Re: [PATCH 03/20] cst :update to 1afb40c
  2017-10-10  9:42 ` [PATCH 03/20] cst :update to 1afb40c Chunrong Guo
@ 2017-10-11 13:00   ` Otavio Salvador
  2017-10-12  2:57     ` C.r. Guo
  0 siblings, 1 reply; 35+ messages in thread
From: Otavio Salvador @ 2017-10-11 13:00 UTC (permalink / raw)
  To: Chunrong Guo; +Cc: meta-freescale, Chunrong Guo

On Tue, Oct 10, 2017 at 6:42 AM, Chunrong Guo <B40290@freescale.com> wrote:
> From: Chunrong Guo <chunrong.guo@nxp.com>
>
> This includes the following changes:
> 1afb40c - Make SRK table default option
> 1650003 - Make ls1088_ls2088.sh executable
> 4ae056a - Generate SRK hash value
> c3e7c34 - LS1088 QSPI: Change in address in input file
> fe4e0da - LS104x_1012: Add signing of bootscript_decap in case of NAND
> 8f42212 - LS1088 SD: Add input files for LS1088ardb SD
> 88b3f45 - Merge pull request #73 in SDK/cst from ~B57223/cst-create-pbi:master to master
> 63bfb68 - To enable blob, added input file
> d124628 - LS1021ATWR: Change SPL hdr load address
> 12c489f - LS2088_1088: Add uni_sign input files for sd boot
> 04ac1a0 - LS2088_1088: Sample uni_pbi input file for sd boot
> 23bf3b7 - LS2088_1088: Modify tool to add pbi commands for sd secure
> 46f4045 - Enable cmd line flag "--u" urand option for gen_otpmk_drbg
>
> Signed-off-by: Chunrong Guo <B40290@freescale.com>

There are also pending patches here; it makes sense to apply this to
github and just update the hash here.


-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

* Re: [PATCH 06/20] fmlib: update SRC_URL
  2017-10-10  9:42 ` [PATCH 06/20] fmlib: update SRC_URL Chunrong Guo
@ 2017-10-11 13:00   ` Otavio Salvador
  0 siblings, 0 replies; 35+ messages in thread
From: Otavio Salvador @ 2017-10-11 13:00 UTC (permalink / raw)
  To: Chunrong Guo; +Cc: meta-freescale, Chunrong Guo

On Tue, Oct 10, 2017 at 6:42 AM, Chunrong Guo <B40290@freescale.com> wrote:
> From: Chunrong Guo <chunrong.guo@nxp.com>
>
> Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>

There are few changes not documented on commit log.

> ---
>  recipes-dpaa/fmlib/fmlib_git.bb | 12 +++---------
>  1 file changed, 3 insertions(+), 9 deletions(-)
>
> diff --git a/recipes-dpaa/fmlib/fmlib_git.bb b/recipes-dpaa/fmlib/fmlib_git.bb
> index 8a7f9a7..11783c5 100644
> --- a/recipes-dpaa/fmlib/fmlib_git.bb
> +++ b/recipes-dpaa/fmlib/fmlib_git.bb
> @@ -5,22 +5,16 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=3f16fa8e677e45af3127c5c4bafc3c00"
>
>  PR = "r1"
>
> -SRC_URI = "git://git.freescale.com/ppc/sdk/fmlib.git;branch=sdk-v2.0.x"
> -SRCREV = "caec18a71ed702a176892efaf946281b9160e220"
> +SRC_URI = "git://github.com/qoriq-open-source/fmlib.git;nobranch=1"
> +SRCREV = "9f20cab379212e8fab907b17910e31a6a86380dd"
>
>  S = "${WORKDIR}/git"
>
> -TARGET_ARCH_FMLIB = "${DEFAULTTUNE}"
> -TARGET_ARCH_FMLIB_e5500 = "ppc32e5500"
> -TARGET_ARCH_FMLIB_e6500 = "ppc32e6500"
> -TARGET_ARCH_FMLIB_ls1043a = "arm64a53"
> -TARGET_ARCH_FMLIB_ls1046a = "arm64a72"
>
>  EXTRA_OEMAKE = "DESTDIR=${D} PREFIX=${prefix} LIB_DEST_DIR=${libdir} \
>          CROSS_COMPILE=${TARGET_PREFIX} KERNEL_SRC=${STAGING_KERNEL_DIR}"
>
> -FMLIB_TARGET = "libfm-${TARGET_ARCH_FMLIB}"
> -FMLIB_TARGET_t1 = "libfm-${TARGET_ARCH_FMLIB}-fmv3l"
> +FMLIB_TARGET = "libfm-arm"
>  do_compile () {
>      oe_runmake ${FMLIB_TARGET}.a
>  }
> --
> 1.9.0
>
> --
> _______________________________________________
> meta-freescale mailing list
> meta-freescale@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-freescale



-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

* Re: [PATCH 11/20] cantest: update SRC_URL
  2017-10-10  9:42 ` [PATCH 11/20] cantest: update SRC_URL Chunrong Guo
@ 2017-10-11 13:01   ` Otavio Salvador
  0 siblings, 0 replies; 35+ messages in thread
From: Otavio Salvador @ 2017-10-11 13:01 UTC (permalink / raw)
  To: Chunrong Guo; +Cc: meta-freescale, Chunrong Guo

On Tue, Oct 10, 2017 at 6:42 AM, Chunrong Guo <B40290@freescale.com> wrote:
> From: Chunrong Guo <chunrong.guo@nxp.com>
>
> Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>
> ---
>  recipes-extended/cantest/cantest_1.0.bb | 9 ++++++---
>  1 file changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/recipes-extended/cantest/cantest_1.0.bb b/recipes-extended/cantest/cantest_1.0.bb
> index 72062f3..cf8f1f0 100644
> --- a/recipes-extended/cantest/cantest_1.0.bb
> +++ b/recipes-extended/cantest/cantest_1.0.bb
> @@ -2,16 +2,19 @@ DESCRIPTION = "cantest"
>  LICENSE = "GPLv2"
>  LIC_FILES_CHKSUM = "file://COPYING;md5=d85064f0fa931974668d281ab83cc97e"
>
> -SRC_URI = "git://git.freescale.com/ppc/sdk/cantest.git;branch=sdk-v2.0.x"
> -SRCREV = "0ad5fa86b1007aefef60a10ccb3a946497477995"
> +SRC_URI = "git://github.com/qoriq-open-source/cantest.git;nobranch=1"
> +SRCREV = "9a9735862dce192de782550d0ab1a50f163b537c"
>
>  S = "${WORKDIR}/git"
>
> +EXTRA_OEMAKE = 'CC="${CC}" LD="${CC}"'

Not documented.

> +PARALLEL_MAKE = ""

Not documented.

>  do_install() {
>      install -d ${D}${bindir}
>      install -m 755 cantest ${D}${bindir}
>  }
>
> -COMPATIBLE_MACHINE = "(e500v2)"
>  PACKAGE_ARCH = "${MACHINE_SOCARCH}"
>
> --
> 1.9.0
>
> --
> _______________________________________________
> meta-freescale mailing list
> meta-freescale@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-freescale



-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

* Re: [PATCH 13/20] odp: update to bef6398
  2017-10-10  9:42 ` [PATCH 13/20] odp: update to bef6398 Chunrong Guo
@ 2017-10-11 13:02   ` Otavio Salvador
  0 siblings, 0 replies; 35+ messages in thread
From: Otavio Salvador @ 2017-10-11 13:02 UTC (permalink / raw)
  To: Chunrong Guo; +Cc: meta-freescale, Chunrong Guo

On Tue, Oct 10, 2017 at 6:42 AM, Chunrong Guo <B40290@freescale.com> wrote:
> From: Chunrong Guo <chunrong.guo@nxp.com>
>
> *include the following changes
> bef6398 - TM: Invalid flow crash fix
> 8e7a136 - Removed device based jiffies
> df492ef - Fixing legal issues
> 3e9c5da - Scripts: binaries path and odp_tm test cases updated
> c91dac8 - Werror flag enabled for ODP library
> ced3aaf - Updated MC flib to version 10.3.2
> a68cd87 - odp_pktio_stats API updated
> 03e0e05 - LD_LIBRARY_PATH removed from loopback_script
> 7a64406 - CUNIT: Cunit installation enabled
> 048c6a6 - script: ODP library path fixed
>
> Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>>

Not documented changes.


-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

* Re: [PATCH 15/20] qoriq-base: add UBINIZE_ARGS and MKUBIFS_ARGS
  2017-10-10  9:42 ` [PATCH 15/20] qoriq-base: add UBINIZE_ARGS and MKUBIFS_ARGS Chunrong Guo
@ 2017-10-11 13:02   ` Otavio Salvador
  0 siblings, 0 replies; 35+ messages in thread
From: Otavio Salvador @ 2017-10-11 13:02 UTC (permalink / raw)
  To: Chunrong Guo; +Cc: meta-freescale, Chunrong Guo

On Tue, Oct 10, 2017 at 6:42 AM, Chunrong Guo <B40290@freescale.com> wrote:
> From: Chunrong Guo <chunrong.guo@nxp.com>
>
> Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>

The shortlog is fine but please explain what you are doing.

> ---
>  conf/machine/include/qoriq-base.inc | 3 +++
>  1 file changed, 3 insertions(+)
>
> diff --git a/conf/machine/include/qoriq-base.inc b/conf/machine/include/qoriq-base.inc
> index 562f5d7..dcb6d4e 100644
> --- a/conf/machine/include/qoriq-base.inc
> +++ b/conf/machine/include/qoriq-base.inc
> @@ -27,3 +27,6 @@ MACHINE_ARCH_FILTER = "virtual/kernel"
>  MACHINE_SOCARCH_FILTER_append_qoriq = " cryptodev-qoriq-linux cryptodev-qoriq-module cryptodev-qoriq-test openssl-qoriq"
>
>  INHERIT += "fsl-dynamic-packagearch"
> +
> +MKUBIFS_ARGS ??= "-m 512 -e 15360 -c 12000"
> +UBINIZE_ARGS ??= "-m 512 -p 16KiB -s 512"
> --
> 1.9.0
>
> --
> _______________________________________________
> meta-freescale mailing list
> meta-freescale@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-freescale



-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

* Re: [PATCH 14/20] ovs-dpdk: update SRC_URL
  2017-10-10  9:42 ` [PATCH 14/20] ovs-dpdk: update SRC_URL Chunrong Guo
@ 2017-10-11 13:04   ` Otavio Salvador
  0 siblings, 0 replies; 35+ messages in thread
From: Otavio Salvador @ 2017-10-11 13:04 UTC (permalink / raw)
  To: Chunrong Guo; +Cc: meta-freescale, Chunrong Guo

On Tue, Oct 10, 2017 at 6:42 AM, Chunrong Guo <B40290@freescale.com> wrote:
> From: Chunrong Guo <chunrong.guo@nxp.com>
>
> Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>

Undocumented changes.



-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

* Re: [PATCH 12/20] dpdk: update to 64578fa
  2017-10-10  9:42 ` [PATCH 12/20] dpdk: update to 64578fa Chunrong Guo
@ 2017-10-11 13:05   ` Otavio Salvador
  0 siblings, 0 replies; 35+ messages in thread
From: Otavio Salvador @ 2017-10-11 13:05 UTC (permalink / raw)
  To: Chunrong Guo; +Cc: meta-freescale, Chunrong Guo

On Tue, Oct 10, 2017 at 6:42 AM, Chunrong Guo <B40290@freescale.com> wrote:
> From: Chunrong Guo <chunrong.guo@nxp.com>
>
> *include the following changes
> 64578fa - bus/dpaa: fix port order shuffling
> f58c470 - Merge pull request #451 in GITAM/dpdk from feature/DPDK-837 to 17.05-qoriq
> 7132562 - dpaa: Patch to fix coverity issue
> cdc268a - dpaa2: Patch to fix coverity issues.
> 10bc4d4 - dpaa: Patch to fix coverity issues
> 38d7299 - dpaa2: add devices in sorted order
> 780057c - examples/ipsec-secgw: increase max number of SA
> c2982a1 - examples/ipsec-secgw: add cfg files for 64x64 tunnels
> 47150cb - Revert "net: dpaa2: enable rx checksum offload as per user input"
> 7ebbca7 - net/dpaa:Adding correct Mask layers while ptype calculation
> 727336c - Revert "net: dpaa2: enable fetching hash result from hardware"
>
> Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>

Undocumented changes as well left over patches. Please apply them on
github repositories so we avoid keeping patches forever.

-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

* Re: [PATCH 16/20] ppa :update to d455113
  2017-10-10  9:42 ` [PATCH 16/20] ppa :update to d455113 Chunrong Guo
@ 2017-10-11 13:06   ` Otavio Salvador
  0 siblings, 0 replies; 35+ messages in thread
From: Otavio Salvador @ 2017-10-11 13:06 UTC (permalink / raw)
  To: Chunrong Guo; +Cc: meta-freescale, Chunrong Guo

On Tue, Oct 10, 2017 at 6:42 AM, Chunrong Guo <B40290@freescale.com> wrote:
> From: Chunrong Guo <chunrong.guo@nxp.com>
>
> This includes the following changes:
>
> d455113 - Fixing offset into bootcore data area.
> 87b117e - Moving Chassis defs out of soc.h and into lsch3/lsch2.h.
> 93f17b3 - Releasing cores from reset that are marked "to be disabled".
> 2872682 - Fixing ordering problem in makefile.inc which caused builds using earlier than GCC 6.2 to fail.
> f52a4a9 - Adding separate folders for each driver; Adding rdb board for LA17xx.
> b003ea1 - Adding initial ppa for soc LA17xx.
> ce7f372 - Changing secondary core release method to reduce risk of race condition between ppa and bootrom.
> 78b8281 - Fixing psci data area initialization.
> bed0d04 - Eliminating race condition between psci and bootrom on core release.
> 89ddb56 - Cleanup of prefetch disable function.
> 8781337 - Fix for QPPA-23: overwriting saved link register in _soc_init_start when bootcore used to initialize ocram.
> 4ee3738 - Adding header file left out of last commit.
> cc33e5e - Adding smc function prefetch disable.
> 2de51a3 - Changing psci call to _soc_core_rls_wait into a call to _soc_core_release.
> 12be3c6 - Updating text in license file.
> 76a61f5 - Added release note deprecating build methods using "make"
>
> Signed-off-by: Chunrong Guo <chunrong.guo@nxp.com>

Leftover patch. Same drill ;-)



-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

* Re: [PATCH 02/20] uboot: update to upgrade to 2017.09
  2017-10-11 12:59   ` Otavio Salvador
@ 2017-10-11 13:28     ` Zhenhua Luo
  0 siblings, 0 replies; 35+ messages in thread
From: Zhenhua Luo @ 2017-10-11 13:28 UTC (permalink / raw)
  To: Otavio Salvador, C.r. Guo; +Cc: meta-freescale

I don't think the gcc6 patch is still needed in the new u-boot, Chunrong, please double-check and remove this patch if it is not needed anymore. 


Best Regards, 

Zhenhua

> -----Original Message-----
> From: meta-freescale-bounces@yoctoproject.org [mailto:meta-freescale-
> bounces@yoctoproject.org] On Behalf Of Otavio Salvador
> Sent: Wednesday, October 11, 2017 8:59 PM
> To: Chunrong Guo <B40290@freescale.com>
> Cc: meta-freescale@yoctoproject.org; C.r. Guo <chunrong.guo@nxp.com>
> Subject: Re: [meta-freescale] [PATCH 02/20] uboot: update to upgrade to
> 2017.09
> 
> On Tue, Oct 10, 2017 at 6:42 AM, Chunrong Guo <B40290@freescale.com>
> wrote:
> > From: Chunrong Guo <chunrong.guo@nxp.com>
> ...
> > +SRC_URI = "git://github.com/qoriq-open-source/u-boot.git;nobranch=1 \
> > +    file://fix-build-error-under-gcc6.patch \ "
> 
> Please merge this to your branch. It is now using github so it makes sense to
> avoid carring this kind of patch for no reason.
> 
> --
> Otavio Salvador                             O.S. Systems
> http://www.ossystems.com.br        http://code.ossystems.com.br
> Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750
> --
> _______________________________________________
> meta-freescale mailing list
> meta-freescale@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-freescale


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

* Re: [PATCH 03/20] cst :update to 1afb40c
  2017-10-11 13:00   ` Otavio Salvador
@ 2017-10-12  2:57     ` C.r. Guo
  2017-10-12 19:59       ` Otavio Salvador
  0 siblings, 1 reply; 35+ messages in thread
From: C.r. Guo @ 2017-10-12  2:57 UTC (permalink / raw)
  To: Otavio Salvador; +Cc: meta-freescale

Hi Otavio, 

Thanks for your comments. 

Currently the github is for publishing the source code of LSDK after fully testing. I will submit the patch in the internal tree firstly, when testing is done, the github  tree will be synced and related recipe will be updated accordingly.

We plan to support LSDK 17.09 in NXP BSP of Yocto 2.4,  can we apply the individual patch in Yocto layer firstly? We can begin the testing for new  NXP BSP as early as  possible. 


Thanks,   

Chunrong

-----Original Message-----
From: Otavio Salvador [mailto:otavio.salvador@ossystems.com.br] 
Sent: Wednesday, October 11, 2017 9:00 PM
To: Chunrong Guo <B40290@freescale.com>
Cc: meta-freescale@yoctoproject.org; C.r. Guo <chunrong.guo@nxp.com>
Subject: Re: [meta-freescale] [PATCH 03/20] cst :update to 1afb40c

On Tue, Oct 10, 2017 at 6:42 AM, Chunrong Guo <B40290@freescale.com> wrote:
> From: Chunrong Guo <chunrong.guo@nxp.com>
>
> This includes the following changes:
> 1afb40c - Make SRK table default option
> 1650003 - Make ls1088_ls2088.sh executable 4ae056a - Generate SRK hash 
> value
> c3e7c34 - LS1088 QSPI: Change in address in input file fe4e0da - 
> LS104x_1012: Add signing of bootscript_decap in case of NAND
> 8f42212 - LS1088 SD: Add input files for LS1088ardb SD
> 88b3f45 - Merge pull request #73 in SDK/cst from 
> ~B57223/cst-create-pbi:master to master
> 63bfb68 - To enable blob, added input file
> d124628 - LS1021ATWR: Change SPL hdr load address 12c489f - 
> LS2088_1088: Add uni_sign input files for sd boot
> 04ac1a0 - LS2088_1088: Sample uni_pbi input file for sd boot
> 23bf3b7 - LS2088_1088: Modify tool to add pbi commands for sd secure
> 46f4045 - Enable cmd line flag "--u" urand option for gen_otpmk_drbg
>
> Signed-off-by: Chunrong Guo <B40290@freescale.com>

There are also pending patches here; it makes sense to apply this to github and just update the hash here.


-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750

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

* Re: [PATCH 03/20] cst :update to 1afb40c
  2017-10-12  2:57     ` C.r. Guo
@ 2017-10-12 19:59       ` Otavio Salvador
  2017-10-13  3:34         ` Zhenhua Luo
  0 siblings, 1 reply; 35+ messages in thread
From: Otavio Salvador @ 2017-10-12 19:59 UTC (permalink / raw)
  To: C.r. Guo; +Cc: meta-freescale

On Wed, Oct 11, 2017 at 11:57 PM, C.r. Guo <chunrong.guo@nxp.com> wrote:
> Thanks for your comments.
>
> Currently the github is for publishing the source code of LSDK after fully testing. I will submit the patch in the internal tree firstly, when testing is done, the github  tree will be synced and related recipe will be updated accordingly.
>
> We plan to support LSDK 17.09 in NXP BSP of Yocto 2.4,  can we apply the individual patch in Yocto layer firstly? We can begin the testing for new  NXP BSP as early as  possible.

If the patch is good enough for you to send for us to include on OE
layer, it must be good enough to be merged on github. Also it makes no
sense to get the github setup if nobody can send patches and QorIQ
team does not adopt a more collaborative approach ...

-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

* Re: [PATCH 03/20] cst :update to 1afb40c
  2017-10-12 19:59       ` Otavio Salvador
@ 2017-10-13  3:34         ` Zhenhua Luo
  2017-10-13 17:21           ` Otavio Salvador
  0 siblings, 1 reply; 35+ messages in thread
From: Zhenhua Luo @ 2017-10-13  3:34 UTC (permalink / raw)
  To: Otavio Salvador, C.r. Guo; +Cc: meta-freescale

Hi Otavio, 

Thanks for your review and suggestion. 

Currently the github is just for source code publish instead of a collaboration platform for LSDK, we may migrate to a new SCM tool in the near future. Regarding the individual patch, I agree with you to manage the general fix patch in git tree instead of in Yocto, actually we are working with the internal package maintainer on submitting and merging the patch, the testing effort is also needed in LSDK environment before sync the patch to github. To ensure our release schedule, can we keep it as individual patch firstly and add a Upstream-Status field in the patch to track the status, we will update Yocto recipe if the patch is merged and synced to github. 


Best Regards, 

Zhenhua

> -----Original Message-----
> From: meta-freescale-bounces@yoctoproject.org [mailto:meta-freescale-
> bounces@yoctoproject.org] On Behalf Of Otavio Salvador
> Sent: Friday, October 13, 2017 3:59 AM
> To: C.r. Guo <chunrong.guo@nxp.com>
> Cc: meta-freescale@yoctoproject.org
> Subject: Re: [meta-freescale] [PATCH 03/20] cst :update to 1afb40c
> 
> On Wed, Oct 11, 2017 at 11:57 PM, C.r. Guo <chunrong.guo@nxp.com> wrote:
> > Thanks for your comments.
> >
> > Currently the github is for publishing the source code of LSDK after fully testing.
> I will submit the patch in the internal tree firstly, when testing is done, the github
> tree will be synced and related recipe will be updated accordingly.
> >
> > We plan to support LSDK 17.09 in NXP BSP of Yocto 2.4,  can we apply the
> individual patch in Yocto layer firstly? We can begin the testing for new  NXP BSP
> as early as  possible.
> 
> If the patch is good enough for you to send for us to include on OE layer, it must
> be good enough to be merged on github. Also it makes no sense to get the
> github setup if nobody can send patches and QorIQ team does not adopt a more
> collaborative approach ...
> 
> --
> Otavio Salvador                             O.S. Systems
> http://www.ossystems.com.br        http://code.ossystems.com.br
> Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750
> --
> _______________________________________________
> meta-freescale mailing list
> meta-freescale@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-freescale


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

* Re: [PATCH 03/20] cst :update to 1afb40c
  2017-10-13  3:34         ` Zhenhua Luo
@ 2017-10-13 17:21           ` Otavio Salvador
  2017-10-15 12:50             ` Zhenhua Luo
  0 siblings, 1 reply; 35+ messages in thread
From: Otavio Salvador @ 2017-10-13 17:21 UTC (permalink / raw)
  To: Zhenhua Luo; +Cc: meta-freescale, C.r. Guo

On Fri, Oct 13, 2017 at 12:34 AM, Zhenhua Luo <zhenhua.luo@nxp.com> wrote:
> Thanks for your review and suggestion.
>
> Currently the github is just for source code publish instead of a collaboration platform for LSDK, we may migrate to a new SCM tool in the near future. Regarding the individual patch, I agree with you to manage the general fix patch in git tree instead of in Yocto, actually we are working with the internal package maintainer on submitting and merging the patch, the testing effort is also needed in LSDK environment before sync the patch to github. To ensure our release schedule, can we keep it as individual patch firstly and add a Upstream-Status field in the patch to track the status, we will update Yocto recipe if the patch is merged and synced to github.

I thought the move to github will allow for a more collaborative work.
Sad it is not the case.

Please see the several no documented changes made and please work on a
new patchset.

-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


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

* Re: [PATCH 03/20] cst :update to 1afb40c
  2017-10-13 17:21           ` Otavio Salvador
@ 2017-10-15 12:50             ` Zhenhua Luo
  0 siblings, 0 replies; 35+ messages in thread
From: Zhenhua Luo @ 2017-10-15 12:50 UTC (permalink / raw)
  To: Otavio Salvador; +Cc: meta-freescale, C.r. Guo

Thanks, Otavio.

We will check patches of the undocumented changes and rework those patches. 


Best Regards, 

Zhenhua

> -----Original Message-----
> From: Otavio Salvador [mailto:otavio.salvador@ossystems.com.br]
> Sent: Saturday, October 14, 2017 1:21 AM
> To: Zhenhua Luo <zhenhua.luo@nxp.com>
> Cc: C.r. Guo <chunrong.guo@nxp.com>; meta-freescale@yoctoproject.org
> Subject: Re: [meta-freescale] [PATCH 03/20] cst :update to 1afb40c
> 
> On Fri, Oct 13, 2017 at 12:34 AM, Zhenhua Luo <zhenhua.luo@nxp.com> wrote:
> > Thanks for your review and suggestion.
> >
> > Currently the github is just for source code publish instead of a collaboration
> platform for LSDK, we may migrate to a new SCM tool in the near future.
> Regarding the individual patch, I agree with you to manage the general fix patch
> in git tree instead of in Yocto, actually we are working with the internal package
> maintainer on submitting and merging the patch, the testing effort is also
> needed in LSDK environment before sync the patch to github. To ensure our
> release schedule, can we keep it as individual patch firstly and add a Upstream-
> Status field in the patch to track the status, we will update Yocto recipe if the
> patch is merged and synced to github.
> 
> I thought the move to github will allow for a more collaborative work.
> Sad it is not the case.
> 
> Please see the several no documented changes made and please work on a new
> patchset.
> 
> --
> Otavio Salvador                             O.S. Systems
> http://www.ossystems.com.br        http://code.ossystems.com.br
> Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750

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

end of thread, other threads:[~2017-10-15 12:50 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-10  9:42 [PATCH 01/20] qe-ucode: update SRC_URL Chunrong Guo
2017-10-10  9:42 ` [PATCH 02/20] uboot: update to upgrade to 2017.09 Chunrong Guo
2017-10-11 12:59   ` Otavio Salvador
2017-10-11 13:28     ` Zhenhua Luo
2017-10-10  9:42 ` [PATCH 03/20] cst :update to 1afb40c Chunrong Guo
2017-10-11 13:00   ` Otavio Salvador
2017-10-12  2:57     ` C.r. Guo
2017-10-12 19:59       ` Otavio Salvador
2017-10-13  3:34         ` Zhenhua Luo
2017-10-13 17:21           ` Otavio Salvador
2017-10-15 12:50             ` Zhenhua Luo
2017-10-10  9:42 ` [PATCH 04/20] eth-config: update SRC_URL Chunrong Guo
2017-10-10  9:42 ` [PATCH 05/20] flib: update to 14489ee Chunrong Guo
2017-10-10  9:42 ` [PATCH 06/20] fmlib: update SRC_URL Chunrong Guo
2017-10-11 13:00   ` Otavio Salvador
2017-10-10  9:42 ` [PATCH 07/20] aiopsl: update to 2b7284f Chunrong Guo
2017-10-10  9:42 ` [PATCH 08/20] gpp-aioptool: update to 43b842b Chunrong Guo
2017-10-10  9:42 ` [PATCH 09/20] restool: update to 87c3abe Chunrong Guo
2017-10-10  9:42 ` [PATCH 10/20] restool:add ls1043ardb and ls1046ardb support Chunrong Guo
2017-10-10  9:42 ` [PATCH 11/20] cantest: update SRC_URL Chunrong Guo
2017-10-11 13:01   ` Otavio Salvador
2017-10-10  9:42 ` [PATCH 12/20] dpdk: update to 64578fa Chunrong Guo
2017-10-11 13:05   ` Otavio Salvador
2017-10-10  9:42 ` [PATCH 13/20] odp: update to bef6398 Chunrong Guo
2017-10-11 13:02   ` Otavio Salvador
2017-10-10  9:42 ` [PATCH 14/20] ovs-dpdk: update SRC_URL Chunrong Guo
2017-10-11 13:04   ` Otavio Salvador
2017-10-10  9:42 ` [PATCH 15/20] qoriq-base: add UBINIZE_ARGS and MKUBIFS_ARGS Chunrong Guo
2017-10-11 13:02   ` Otavio Salvador
2017-10-10  9:42 ` [PATCH 16/20] ppa :update to d455113 Chunrong Guo
2017-10-11 13:06   ` Otavio Salvador
2017-10-10  9:42 ` [PATCH 17/20] uefi :update to bd59c46 Chunrong Guo
2017-10-10  9:42 ` [PATCH 18/20] dpl-examples: update to a6c8375 Chunrong Guo
2017-10-10  9:42 ` [PATCH 19/20] mc:update to 10.3.2 Chunrong Guo
2017-10-10  9:42 ` [PATCH 20/20] linux :update to 9c3f355 Chunrong 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.