Re: [meta-freescale] [PATCH 01/32] qe-ucode: update SRC_URL

2017-10-13 Thread Otavio Salvador
On Thu, Oct 12, 2017 at 6:24 AM, Chunrong Guo  wrote:
> From: Chunrong Guo 
>
> Signed-off-by: Chunrong Guo 
> ---
>  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)"

No documented change.

>  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.brhttp://code.ossystems.com.br
Mobile: +55 (53) 9981-7854Mobile: +1 (347) 903-9750
-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


Re: [meta-freescale] [PATCH 12/32] dpdk: update to 3d7a6ae

2017-10-13 Thread Otavio Salvador
On Thu, Oct 12, 2017 at 6:24 AM, Chunrong Guo  wrote:
> From: Chunrong Guo 
>
> *include the following changes
> 3d7a6ae - license: fix legal review request comments
> 148e3dc - Revert "crypto/openssl: fix compilation break with openssl 1.1"
> 9845264 - crypto/openssl: fix compilation break with openssl 1.1
> 95e380c - net/dpaa2: set queues if reconfiguration is done
> 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
>
> Signed-off-by: Chunrong Guo 
> ---
>  .../dpdk/dpdk/0001-fix-build-with-gcc-7.1.patch| 119 
> -
>  recipes-extended/dpdk/dpdk_16.07.bb|   8 +-
>  2 files changed, 2 insertions(+), 125 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..000
> --- 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 
> -Date: Wed, 12 Jul 2017 12:03:38 +0800
> -Subject: [PATCH] fix build with gcc 7.1
> -
> -Signed-off-by: Chunrong Guo 
> 
> - 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', , 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', , 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 */  \
> -  

Re: [meta-freescale] [PATCH 03/20] cst :update to 1afb40c

2017-10-13 Thread Otavio Salvador
On Fri, Oct 13, 2017 at 12:34 AM, Zhenhua Luo  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.brhttp://code.ossystems.com.br
Mobile: +55 (53) 9981-7854Mobile: +1 (347) 903-9750
-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


Re: [meta-freescale] [PATCH 06/32] fmlib: update SRC_URL

2017-10-13 Thread Otavio Salvador
On Thu, Oct 12, 2017 at 6:24 AM, Chunrong Guo  wrote:
> From: Chunrong Guo 
>
> *include the following changes
> 9f20cab - fmlib libraries (LS1043/46 and 32/64bit)  unification under 
> libfm-arm.a
> 553b87d - Makefile: fix build issue for flexbuild
>
> Signed-off-by: Chunrong Guo >
> ---
>  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"

No documented change.

>  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"

No documented change.

>  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.brhttp://code.ossystems.com.br
Mobile: +55 (53) 9981-7854Mobile: +1 (347) 903-9750
-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


Re: [meta-freescale] [PATCH 03/32] cst :update to 1afb40c

2017-10-13 Thread Otavio Salvador
On Thu, Oct 12, 2017 at 6:24 AM, Chunrong Guo  wrote:
> From: Chunrong Guo 
>
> 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 
> ---
>  ...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 000..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 
> +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 
> +---
> + 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 \
> +"

No documented change.

> +SRCREV = "1afb40c13097fc9e8a641aa5d0420498fea01c65"
>
>  S = "${WORKDIR}/git"
>
> --
> 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.brhttp://code.ossystems.com.br
Mobile: +55 (53) 9981-7854Mobile: +1 (347) 903-9750
-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


Re: [meta-freescale] [PATCH 04/32] eth-config: update SRC_URL

2017-10-13 Thread Otavio Salvador
On Thu, Oct 12, 2017 at 6:24 AM, Chunrong Guo  wrote:
> From: Chunrong Guo 
>
> Signed-off-by: Chunrong Guo >
> ---
>  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"

No documented change.

>  S = "${WORKDIR}/git"
>
> --
> 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.brhttp://code.ossystems.com.br
Mobile: +55 (53) 9981-7854Mobile: +1 (347) 903-9750
-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


Re: [meta-freescale] [PATCH 11/32] cantest: update SRC_URL

2017-10-13 Thread Otavio Salvador
On Thu, Oct 12, 2017 at 6:24 AM, Chunrong Guo  wrote:
> From: Chunrong Guo 
>
> *include the following changes
> 9a97358 - cantest: add build support in flexbuild
>
> Signed-off-by: Chunrong Guo 
> ---
>  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}"'

No documented change.

> +PARALLEL_MAKE = ""

No documented change.

>  do_install() {
>  install -d ${D}${bindir}
>  install -m 755 cantest ${D}${bindir}
>  }
>
> -COMPATIBLE_MACHINE = "(e500v2)"

No documented change.

>  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.brhttp://code.ossystems.com.br
Mobile: +55 (53) 9981-7854Mobile: +1 (347) 903-9750
-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


Re: [meta-freescale] [PATCH 10/32] restool:add ls1043ardb and ls1046ardb support

2017-10-13 Thread Otavio Salvador
On Thu, Oct 12, 2017 at 6:24 AM, Chunrong Guo  wrote:
> From: Chunrong Guo 
>
> Signed-off-by: Chunrong Guo 
> ---
>  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)"

No documented change.

>  PACKAGE_ARCH = "${MACHINE_ARCH}"
>
> --
> 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.brhttp://code.ossystems.com.br
Mobile: +55 (53) 9981-7854Mobile: +1 (347) 903-9750
-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


Re: [meta-freescale] [PATCH 22/32] ls2088ardb: update uboot config

2017-10-13 Thread Otavio Salvador
On Thu, Oct 12, 2017 at 6:24 AM, Chunrong Guo  wrote:
> From: Chunrong Guo 
>
> Signed-off-by: Chunrong Guo 
> ---
>  conf/machine/ls2088ardb.conf | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/conf/machine/ls2088ardb.conf b/conf/machine/ls2088ardb.conf
> index 170d6a4..0fcb6fa 100644
> --- a/conf/machine/ls2088ardb.conf
> +++ b/conf/machine/ls2088ardb.conf
> @@ -14,7 +14,9 @@ KERNEL_IMAGETYPES = "itbImage"
>
>  UBOOT_ENTRYPOINT = "0x8008"
>
> -UBOOT_CONFIG ??= "qspi-secure-boot qspi"
> +UBOOT_CONFIG ??= "qspi-secure-boot qspi nand nor"

No documented change

> +UBOOT_CONFIG[nor] = "ls2080ardb_defconfig,,u-boot-dtb.bin"
> +UBOOT_CONFIG[nand] = "ls2080ardb_nand_defconfig,,u-boot-dtb.bin"

No documented change

>  UBOOT_CONFIG[qspi] = "ls2088ardb_qspi_defconfig,,u-boot-dtb.bin"
>  UBOOT_CONFIG[qspi-secure-boot] = 
> "ls2088ardb_qspi_SECURE_BOOT_defconfig,,u-boot-dtb.bin"
>
> --
> 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.brhttp://code.ossystems.com.br
Mobile: +55 (53) 9981-7854Mobile: +1 (347) 903-9750
-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


Re: [meta-freescale] [PATCH 20/32] fmc: update SRC_URL

2017-10-13 Thread Otavio Salvador
On Thu, Oct 12, 2017 at 6:24 AM, Chunrong Guo  wrote:
> From: Chunrong Guo 
>
> *This includes the following changes:
> 4377bfc - Set LS1043 as default platform (for DASH integration)
> 81e4796 - Revert default platform flag to P4080
> 4729b49 - Enable support for LS1046 (based on LS1043 integration)
> a079d2c - update variable names to match fmlib changes
> 44b1f42 - Revert "Aging support added for classification"
> 9732cd8 - Aging support added for classification
> 03505c3 - [QSDK-2331] fmc: PIR/PBS are considered synonyms for CIR/CBS in 
> policer tags
> 757754b - ENGR00341753: Schemes sharing between ports is not working
> eca7122 - Added makefile support for LS1043
> b9e52be - ENGR00354640: fmc regression: Bad FMan port handle used in 
> FM_PORT_VSPAlloc causes FMD call trace
> 435d76d - ENGR354592: FMC SoftParser 'otherl3' protocol definition generates 
> error
> 92494f0 - Changed makefile to use flags: FMAN_V3H / FMAN_V3L (ENGR353626)
> 1695da4 - ENGR00352834: FMC: Add support for 
> FM_PCD_KgSetAdditionalDataAfterParsing API
> 450d314 - ENGR351010: FMC: Share schemes used for IPR across multiple ports
> b2b6226 - ENGR00349008: ALU PCD generates Segmentation fault for direct 
> schemes usage
> 6b14996 - ENGR00348810: ALU PCD generates: FmPcdCcGetGrpParams: Invalid Handle
> 955706a - ENGR348539: ALU PCD generates: grpId you asked > numOfGroup of 
> relevant tree
> 06548b6 - ENGR00347977: ALU PCD using direct schemes generates Error: 
> Unresolved cycled dependencies
> e843d51 - ENGR00315208: [FMC] failed to configure ALU PCD
> 4f4a3eb - ENGR00342608: Major error on ALU PCD: IC_HASH_INDEXED numOfKeys has 
> to be powerOfTwo
> a3e40ab - ENGR00342299: ALU PCD (fmc_pcd_ed44_skeleton_TSOC.xml) generates 
> Segmentation fault
> 71deab3 - ENGR00342299: ALU PCD (fmc_pcd_ed44_skeleton_TSOC.xml) generates 
> Segmentation fault
> aa34fa3 - ENGR00341753: Schemes sharing between ports is not working
> e6fee7f - ENGR00341091: False error reported by FMC in ALU PCD: 'ERR: 
> Unresolved cycled dependencies are found'
> 2fb5b1c - ENGR00340476: ALU Issue with pbit marking with a given DSCP (B0198)
> 284a506 - ENGR329197: 32 Schema limit exhausted when FMC duplicates the 
> schemas even if same policy is attached to all the ports
> 0434629 - ENGR00338449: Enable Test automation framework for FMC on Linux 
> host OS
> d09735b - ENGR00338121: fmc: Support new convention for port type in xml 
> config file
> f46f085 - Improvement to: ENGR330486: ALU B0187: FMC/libxml2 SDK1.5 FB3 : 
> Memory leaked during PCD xml application
> c2330c3 - ENGR00330486: ALU B0187 : FMC/ libxml2  SDK1.5 FB3 : Memory leaked 
> during PCD xml application
> 2bff057 - ENGR00325623: PCD : replicator issue
> 4157f75 - ENGR00316689: fmc: Ccnode mask support option fails to propagate 
> into the PCD
> 35b9363 - ENGR00320235: reassembly management with PCD xml (FMC) - 
> FM_PCD_MAX_NUM_OF_CC_GROUPS
> 021f720 - ENGR00308464 - FMD PCD: seg fault error while creating ccnode 
> without mask
> 8c37700 - Enabled ENGR00305912 : individual keygen extraction (IPV6 VER+TC) 
> and (IPv6 FL)
> 400d483 - Disabled ENGR00305912 until is available in FMD
> c21c326 - Enabled ipv6.flabel as supported full field extraction
>
> Signed-off-by: Chunrong Guo 
> ---
>  dynamic-layers/openembedded-layer/recipes-dpaa/fmc/fmc_git.bb | 8 ++--
>  1 file changed, 2 insertions(+), 6 deletions(-)
>
> diff --git a/dynamic-layers/openembedded-layer/recipes-dpaa/fmc/fmc_git.bb 
> b/dynamic-layers/openembedded-layer/recipes-dpaa/fmc/fmc_git.bb
> index aff5130..8bfde71 100644
> --- a/dynamic-layers/openembedded-layer/recipes-dpaa/fmc/fmc_git.bb
> +++ b/dynamic-layers/openembedded-layer/recipes-dpaa/fmc/fmc_git.bb
> @@ -6,8 +6,8 @@ PR = "r2"
>
>  DEPENDS = "libxml2 fmlib tclap"
>
> -SRC_URI = "git://git.freescale.com/ppc/sdk/fmc.git;branch=sdk-v2.0.x"
> -SRCREV = "81e4796fd22e32fe7ab77f075c1879d7bb75c02e"
> +SRC_URI = "git://github.com/qoriq-open-source/fmc.git;nobranch=1"
> +SRCREV = "4377bfc24626a0db3bedb6e1cbb201f6f6df964c"
>
>  S = "${WORKDIR}/git"
>
> @@ -19,10 +19,6 @@ EXTRA_OEMAKE_virtclass-native = 'FMCHOSTMODE=1 
> FMD_USPACE_HEADER_PATH="${STAGING
>  TCLAP_HEADER_PATH="${STAGING_INCDIR}" '
>
>  EXTRA_OEMAKE_PLATFORM ?= ""
> -EXTRA_OEMAKE_PLATFORM_b4 = "b4860qds"
> -EXTRA_OEMAKE_PLATFORM_t2 = "b4860qds"
> -EXTRA_OEMAKE_PLATFORM_t4 = "b4860qds"
> -EXTRA_OEMAKE_PLATFORM_t1 = "t1040qds"

No documented change

>  EXTRA_OEMAKE_PLATFORM_ls1043a = "ls1043"
>  EXTRA_OEMAKE_PLATFORM_ls1046a = "ls1046"
>
> --
> 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.brhttp://code.ossystems.com.br
Mobile: +55 (53) 9981-7854Mobile: +1 (347) 903-9750
-- 

Re: [meta-freescale] [PATCH 21/32] ls2-phy: update SRC_URL

2017-10-13 Thread Otavio Salvador
On Thu, Oct 12, 2017 at 6:24 AM, Chunrong Guo  wrote:
> From: Chunrong Guo 
>
> This includes the following changes:
> 6036a20 - Add ucode and readme for Cortina 10G PHY
>
> Signed-off-by: Chunrong Guo 
> ---
>  recipes-bsp/ls2-phy/ls2-phy_git.bb | 14 ++
>  1 file changed, 6 insertions(+), 8 deletions(-)
>
> diff --git a/recipes-bsp/ls2-phy/ls2-phy_git.bb 
> b/recipes-bsp/ls2-phy/ls2-phy_git.bb
> index d21147f..9f2d79f 100644
> --- a/recipes-bsp/ls2-phy/ls2-phy_git.bb
> +++ b/recipes-bsp/ls2-phy/ls2-phy_git.bb
> @@ -1,24 +1,22 @@
>  SUMMARY = "Firmwares and Standalone Applications"
> -LICENSE = "Freescale-EULA"
> -LIC_FILES_CHKSUM = "file://EULA;md5=c9ae442cf1f9dd6c13dfad64b0ffe73f"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = 
> "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"

No documented change

>  inherit deploy
>
> -SRC_URI = "git://git.freescale.com/ppc/sdk/ls2-phy.git;branch=sdk-v2.0.x"
> -SRCREV = "554f2648c6a4c6f974827ab326e8c1908dead6f1"
> +SRC_URI = 
> "git://github.com/qoriq-open-source/firmware-cortina.git;nobranch=1"
> +SRCREV = "6036a20ddbf796ac494da172f2588e5de4d833fc"
>
>  S = "${WORKDIR}/git"
>
>  do_install () {
>  install -d ${D}/boot
> -cp -fr ${S}/AQR405 ${D}/boot
> -cp -fr ${S}/CS4340 ${D}/boot
> +cp -fr ${S}/* ${D}/boot

No documented change

>  }
>
>  do_deploy () {
>  install -d ${DEPLOYDIR}/ls2-phy
> -cp -fr ${S}/AQR405 ${DEPLOYDIR}/ls2-phy
> -cp -fr ${S}/CS4340 ${DEPLOYDIR}/ls2-phy
> +cp -fr ${S}/* ${DEPLOYDIR}/ls2-phy

No documented change

>  }
>  addtask deploy before do_build after do_install
>
> --
> 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.brhttp://code.ossystems.com.br
Mobile: +55 (53) 9981-7854Mobile: +1 (347) 903-9750
-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


Re: [meta-freescale] Issue with freescale git server at git.freescale.com

2017-10-13 Thread Otavio Salvador
Hello,

I added Jun and Lauren on Cc so they can look at the issue.

On Thu, Oct 12, 2017 at 5:52 AM, georg  wrote:
> Hello,
>
> I'm new to meta-freescale and trying to build a system for imx6 from
> https://github.com/Freescale/fsl-community-bsp-platform. But the
> do_fetch step on the imx kernel fails always with a 'Connection reset by
> peer'. It seems that the freescale server is somehow broken. I have
> tried a simple git clone on git://git.freescale.com/imx/linux-imx.git
> with a similar issue. Most of the time it fails with 'Connection reset
> by peer'. Sometime it starts with 'Counting objects' for a very long
> time before it gets disconnected.
>
> Has anybody experienced the same issue (I have started trying 3 days
> ago)? Is there any mirror which I can use instead?
>
> Thanks in advance,
> Georg
> --
> ___
> meta-freescale mailing list
> meta-freescale@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-freescale



-- 
Otavio Salvador O.S. Systems
http://www.ossystems.com.brhttp://code.ossystems.com.br
Mobile: +55 (53) 9981-7854Mobile: +1 (347) 903-9750
-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


Re: [meta-freescale] [PATCH 13/32] odp: update to bef6398

2017-10-13 Thread Otavio Salvador
On Thu, Oct 12, 2017 at 6:24 AM, Chunrong Guo  wrote:
> From: Chunrong Guo 
>
> *odp 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
>
> *flib include the following changes
> bbab28b - fix PDCP warnings for User Plane descriptor
> fcad69f - fix PDCP SNOW f8 + AES CMAC decapsulation
>
> Signed-off-by: Chunrong Guo 
> ---
>  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"

No documented change

>  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"

No documented change

>  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} \

No documented change

>  --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"
> +

No documented change

>  PACKAGECONFIG[perf] = "--enable-test-perf,,,"
>
>  do_configure_prepend () {
> --
> 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.brhttp://code.ossystems.com.br
Mobile: +55 (53) 9981-7854Mobile: +1 (347) 903-9750
-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


Re: [meta-freescale] [PATCH 15/32] ppa :update to 92b208b

2017-10-13 Thread Otavio Salvador
On Thu, Oct 12, 2017 at 6:24 AM, Chunrong Guo  wrote:
> From: Chunrong Guo 
>
> *This includes the following changes:
> 92b208b - Added usb and mmc as wakeup src for LS1088 system suspend; Fixed 
> stack alignment issue.
> 999e6be - Correcting stack reference issue in LS1088 _soc_sys_entr_pwrdn().
> 4d43c10 - Adding cpu_suspend.system support to LS1088.
> 8a2e7ee - Disambiguating uart driver from ddr driver and from dbg builds.
> 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 
> ---
>  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 000..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 
> +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
> +

Patch header.

> +Signed-off-by: Chunrong Guo 
> +---
> + 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 

Re: [meta-freescale] [PATCH 14/32] ovs-dpdk: update SRC_URL

2017-10-13 Thread Otavio Salvador
On Thu, Oct 12, 2017 at 6:24 AM, Chunrong Guo  wrote:
> From: Chunrong Guo 
>
> *include the following changes
> 626a260 - Merge pull request #8 in DQNS/ovs-dpdk from 
> ~B10814/ovs-dpdk:branch-2.7-qoriq to branch-2.7-qoriq
>
> Signed-off-by: Chunrong Guo 
> ---
>  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)"

No documented change

> --
> 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.brhttp://code.ossystems.com.br
Mobile: +55 (53) 9981-7854Mobile: +1 (347) 903-9750
-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


Re: [meta-freescale] [PATCH 25/32] rcw :update to 1a6236a

2017-10-13 Thread Otavio Salvador
On Thu, Oct 12, 2017 at 6:25 AM, Chunrong Guo  wrote:
> From: Chunrong Guo 
>
> *This includes the following changes:
> 1a6236a - LS1012ARDB: Change rcw for secure boot
> cdf4b72 - rcw: ls1088aqds: Add SCSI errata for detecttion of sata
> 16072f7 - armv8:LS1012A: RCW supporting 1GHz CPU frequency
> 90aef03 - LS1088ARDB:Reduce size in block copy command
> 53518dc - rcw: ls1088ardb: Add SCSI errata for detecttion of sata
> 0a869b3 - ls1021a: add workaround for pcie erratum A-007997 and A-007815
> e7f18e5 - ls2088ardb: Add RCW for with platform frequency 700MHz
> 6f324fc - Use BSD license for both rcw and binary files
> c69799f - Added copyright to byte_swap.tcl
> bfe8c5e - Renaming COPYING as BSD-LICENSE
>
> Signed-off-by: Chunrong Guo 
> ---
>  recipes-bsp/rcw/rcw_git.bb | 16 +++-
>  1 file changed, 11 insertions(+), 5 deletions(-)
>
> diff --git a/recipes-bsp/rcw/rcw_git.bb b/recipes-bsp/rcw/rcw_git.bb
> index 877822f..9c2b156 100644
> --- a/recipes-bsp/rcw/rcw_git.bb
> +++ b/recipes-bsp/rcw/rcw_git.bb
> @@ -1,23 +1,29 @@
>  SUMMARY = "Reset Configuration Word"
>  DESCRIPTION = "Reset Configuration Word - hardware boot-time parameters for 
> the QorIQ targets"
>  LICENSE = "BSD"
> -LIC_FILES_CHKSUM = "file://BSD-LICENSE;md5=627727dce58484c4bd5f9b19665d81b3"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=be7e0b2ce5a7a1f4f25a6d82cec1f47d"

No documented change

>  DEPENDS += "change-file-endianess-native tcl-native"
>
> -inherit deploy
> +inherit deploy siteinfo

No documented change

>  SRC_URI = "git://github.com/qoriq-open-source/rcw.git;nobranch=1"
> -SRCREV = "bfe8c5eb72cbae387af1c8662957caa801c2309f"
> +SRCREV = "1a6236a34166219de324a105971eb9de05cde76e"
>
>  S = "${WORKDIR}/git"
>
>  export PYTHON = "${USRBINPATH}/python2"
>
> -EXTRA_OEMAKE = "BOARDS=${@d.getVar('MACHINE', 
> True).replace('-64b','').replace('-32b','')} DESTDIR=${D}/boot/rcw/"
> +M="${@d.getVar('MACHINE', 
> True).replace('-64b','').replace('-32b','').replace('-${SITEINFO_ENDIANNESS}','')}"
>
>  do_install () {
> -oe_runmake install
> +if [ -f ${S}/${M}/Makefile ]; then
> +oe_runmake BOARDS=${M} DESTDIR=${D}/boot/rcw/ install
> +else
> +install -d ${D}/boot/rcw
> +cp -a ${S}/${M} ${D}/boot/rcw/
> +chown -R root:root ${D}
> +fi

No documented change

>  for f in `find ${D}/boot/rcw/ -name "*qspiboot*"`;do
>  if echo $f |grep -q "qspiboot_sben"; then
>  continue
> --
> 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.brhttp://code.ossystems.com.br
Mobile: +55 (53) 9981-7854Mobile: +1 (347) 903-9750
-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale


[meta-freescale] [PATCH] u-boot-fslc: Bump to 46800a79b6 revision

2017-10-13 Thread Otavio Salvador
This includes following changes:

46800a79b6 mx6slevk: Fix MMC breakage for the SPL target
3760ecfce4 imx: Fix regression with CONFIG_DM_MMC=y
59d4771838 ARM: imx6: Add DHCOM i.MX6 PDK board support
a77a794847 imx: mx7: spl: remove redundant SATA definitionas
fdb70bf620 mx6: sys_proto: Add prototypes for imx6_pcie_toggle() functions
308e7844f8 mx6: clock: Add a prototype for do_mx6_showclocks()
300a095165 i.mx6ul: xpress: update UART init for current board revision
2812798091 mx6slevk: Use PARTUUID to specify the rootfs location
acea9a74c8 drivers: pci: imx: fix imx_pcie_remove function

Signed-off-by: Otavio Salvador 
---

 recipes-bsp/u-boot/u-boot-fslc-common_2017.09.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-bsp/u-boot/u-boot-fslc-common_2017.09.inc 
b/recipes-bsp/u-boot/u-boot-fslc-common_2017.09.inc
index 7bfe3316..b54657a2 100644
--- a/recipes-bsp/u-boot/u-boot-fslc-common_2017.09.inc
+++ b/recipes-bsp/u-boot/u-boot-fslc-common_2017.09.inc
@@ -8,7 +8,7 @@ LIC_FILES_CHKSUM = 
"file://Licenses/README;md5=a2c678cfd4a4d97135585cad908541c6"
 
 SRC_URI = "git://github.com/Freescale/u-boot-fslc.git;branch=${SRCBRANCH}"
 
-SRCREV = "977c60b15354f9b88d49bf6e1ee38e24f55b1fe3"
+SRCREV = "46800a79b66479c8fe29da238a2ed95d67220e2b"
 SRCBRANCH = "2017.09+fslc"
 
 PV = "v2017.09+git${SRCPV}"
-- 
2.14.2

-- 
___
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale