* [PATCH 0/1] packagegroup-core-tools-testapps:disable kexec for for mips64 and mis64n32
@ 2015-12-03 6:32 kai.kang
2015-12-03 6:32 ` [PATCH 1/1] packagegroup-core-tools-testapps: disable kexec " kai.kang
0 siblings, 1 reply; 4+ messages in thread
From: kai.kang @ 2015-12-03 6:32 UTC (permalink / raw)
To: openembedded-core
From: Kai Kang <kai.kang@windriver.com>
The following changes since commit 698c74c373110ed081a7586e21d4a27b8b44c89b:
libsdl: remove redundant configure_tweak patch (2015-12-01 21:32:15 +0000)
are available in the git repository at:
git://git.yoctoproject.org/poky-contrib kangkai/pgroup-testapps
http://git.yoctoproject.org/cgit.cgi/poky-contrib/log/?h=kangkai/pgroup-testapps
Kai Kang (1):
packagegroup-core-tools-testapps: disable kexec for mips64 and
mis64n32
meta/recipes-core/packagegroups/packagegroup-core-tools-testapps.bb | 2 ++
1 file changed, 2 insertions(+)
--
2.6.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/1] packagegroup-core-tools-testapps: disable kexec for mips64 and mis64n32
2015-12-03 6:32 [PATCH 0/1] packagegroup-core-tools-testapps:disable kexec for for mips64 and mis64n32 kai.kang
@ 2015-12-03 6:32 ` kai.kang
2015-12-03 14:13 ` Burton, Ross
0 siblings, 1 reply; 4+ messages in thread
From: kai.kang @ 2015-12-03 6:32 UTC (permalink / raw)
To: openembedded-core
From: Kai Kang <kai.kang@windriver.com>
Signed-off-by: Kai Kang <kai.kang@windriver.com>
---
meta/recipes-core/packagegroups/packagegroup-core-tools-testapps.bb | 2 ++
1 file changed, 2 insertions(+)
diff --git a/meta/recipes-core/packagegroups/packagegroup-core-tools-testapps.bb b/meta/recipes-core/packagegroups/packagegroup-core-tools-testapps.bb
index 95b3988..750ba84 100644
--- a/meta/recipes-core/packagegroups/packagegroup-core-tools-testapps.bb
+++ b/meta/recipes-core/packagegroups/packagegroup-core-tools-testapps.bb
@@ -15,6 +15,8 @@ inherit packagegroup
KEXECTOOLS ?= "kexec"
KEXECTOOLS_mips ?= ""
KEXECTOOLS_mipsel ?= ""
+KEXECTOOLS_mips64 ?= ""
+KEXECTOOLS_mips64n32 ?= ""
KEXECTOOLS_powerpc ?= ""
KEXECTOOLS_e5500-64b ?= ""
KEXECTOOLS_aarch64 ?= ""
--
2.6.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/1] packagegroup-core-tools-testapps: disable kexec for mips64 and mis64n32
2015-12-03 6:32 ` [PATCH 1/1] packagegroup-core-tools-testapps: disable kexec " kai.kang
@ 2015-12-03 14:13 ` Burton, Ross
2015-12-04 2:17 ` Kang Kai
0 siblings, 1 reply; 4+ messages in thread
From: Burton, Ross @ 2015-12-03 14:13 UTC (permalink / raw)
To: Kang Kai; +Cc: OE-core
[-- Attachment #1: Type: text/plain, Size: 517 bytes --]
On 3 December 2015 at 06:32, <kai.kang@windriver.com> wrote:
> @@ -15,6 +15,8 @@ inherit packagegroup
> KEXECTOOLS ?= "kexec"
> KEXECTOOLS_mips ?= ""
> KEXECTOOLS_mipsel ?= ""
> +KEXECTOOLS_mips64 ?= ""
> +KEXECTOOLS_mips64n32 ?= ""
> KEXECTOOLS_powerpc ?= ""
> KEXECTOOLS_e5500-64b ?= ""
> KEXECTOOLS_aarch64 ?= ""
>
I've rebased this on top of Maxin's patch that removed many of these
exclusions (mips, mipsel, powerpc, aarch64), but could you confirm that is
the right thing to do?
Ross
[-- Attachment #2: Type: text/html, Size: 1055 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/1] packagegroup-core-tools-testapps: disable kexec for mips64 and mis64n32
2015-12-03 14:13 ` Burton, Ross
@ 2015-12-04 2:17 ` Kang Kai
0 siblings, 0 replies; 4+ messages in thread
From: Kang Kai @ 2015-12-04 2:17 UTC (permalink / raw)
To: Burton, Ross; +Cc: OE-core
[-- Attachment #1: Type: text/plain, Size: 911 bytes --]
On 2015年12月03日 22:13, Burton, Ross wrote:
>
> On 3 December 2015 at 06:32, <kai.kang@windriver.com
> <mailto:kai.kang@windriver.com>> wrote:
>
> @@ -15,6 +15,8 @@ inherit packagegroup
> KEXECTOOLS ?= "kexec"
> KEXECTOOLS_mips ?= ""
> KEXECTOOLS_mipsel ?= ""
> +KEXECTOOLS_mips64 ?= ""
> +KEXECTOOLS_mips64n32 ?= ""
> KEXECTOOLS_powerpc ?= ""
> KEXECTOOLS_e5500-64b ?= ""
> KEXECTOOLS_aarch64 ?= ""
>
>
> I've rebased this on top of Maxin's patch that removed many of these
> exclusions (mips, mipsel, powerpc, aarch64), but could you confirm
> that is the right thing to do?
Hi Ross,
I didn't find Maxin's patch on oe-core list. I double check with our bsp
guy that kexec supports mips now but may need extra drivers for each board.
So please ignore this patch.
Thanks,
Kai
>
> Ross
--
Regards,
Neil | Kai Kang
[-- Attachment #2: Type: text/html, Size: 2419 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-12-04 2:17 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-03 6:32 [PATCH 0/1] packagegroup-core-tools-testapps:disable kexec for for mips64 and mis64n32 kai.kang
2015-12-03 6:32 ` [PATCH 1/1] packagegroup-core-tools-testapps: disable kexec " kai.kang
2015-12-03 14:13 ` Burton, Ross
2015-12-04 2:17 ` Kang Kai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox