[meta-freescale] [[PATCH v2 17/34] ppa :update to 92b208b

Otavio Salvador otavio.salvador at ossystems.com.br
Mon Oct 16 09:36:12 PDT 2017


On Mon, Oct 16, 2017 at 4:33 AM, Chunrong Guo <B40290 at freescale.com> wrote:
> From: Chunrong Guo <chunrong.guo at nxp.com>
>
> *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 <chunrong.guo at nxp.com>
> ---
>  recipes-bsp/ppa/ppa/0001-fix-path-error.patch | 79 +++++++++++++++++++++++++++
>  recipes-bsp/ppa/ppa_git.bb                    |  6 +-
>  2 files changed, 83 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..891a6e7
> --- /dev/null
> +++ b/recipes-bsp/ppa/ppa/0001-fix-path-error.patch
> @@ -0,0 +1,79 @@
> +From aa3b419876af9c2a9265fba7c7264130e1bc4926 Mon Sep 17 00:00:00 2001
> +From: Chunrong Guo <chunrong.guo at 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
> +
> +Upstream-Status: Submitted
> +
> +Signed-off-by: Chunrong Guo <chunrong.guo at 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..c4f81bc 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 \

Undocumented change.

> +"
> +SRCREV = "92b208b0dbb5a47b06627ec62824cb5790b3f482"
>
>  S = "${WORKDIR}/git"
>
> --
> 1.9.0
>
> --
> _______________________________________________
> meta-freescale mailing list
> meta-freescale at 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


More information about the meta-freescale mailing list