From: Chunrong Guo <chunrong....@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....@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....@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....@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 -- _______________________________________________ meta-freescale mailing list meta-freescale@yoctoproject.org https://lists.yoctoproject.org/listinfo/meta-freescale