* [PATCH 0/1] linux-yocto/3.10: fix qemuarm boot and spurious mips build warning
@ 2013-11-05 18:47 Bruce Ashfield
2013-11-05 18:47 ` [PATCH 1/1] " Bruce Ashfield
2013-11-05 20:56 ` [PATCH 0/1] " Phil Blundell
0 siblings, 2 replies; 5+ messages in thread
From: Bruce Ashfield @ 2013-11-05 18:47 UTC (permalink / raw)
To: richard.purdie; +Cc: openembedded-core
Richard/Saul,
I don't have anything extra to add outside of what I put in the
patch commit log .. so here it is:
-------------------------------------------
This update fixes two issues:
a) qemuarm boot failure
v3.10.13 picked up a patch for arm versatile interrupt mappings that fixes
the emulator boot out of the box. But it interacts badly with our previous
fix for the issue. Reverting the existing patch and going with the mainline
solution fixes the boot.
b) qemumips build warning and failure
Depending on the build host and compiler, the build of menuconfig throws
an potentially uninitialized variable warning. That warning causes an
error on archs with -Werror. We can do a trivial change to avoid the
warning all together (initilize it to null), and keep everyone happy.
[YOCTO #5460]
-------------------------------------------
Cheers,
Bruce
The following changes since commit 57498cede4696526c121e0112b5dea3e6e8365ac:
bitbake: toaster: fix target package information (2013-11-05 12:50:44 +0000)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib zedd/kernel
http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=zedd/kernel
Bruce Ashfield (1):
linux-yocto/3.10: fix qemuarm boot and spurious mips build warning
meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb | 4 ++--
meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb | 2 +-
meta/recipes-kernel/linux/linux-yocto_3.10.bb | 14 +++++++-------
3 files changed, 10 insertions(+), 10 deletions(-)
--
1.8.1.2
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/1] linux-yocto/3.10: fix qemuarm boot and spurious mips build warning
2013-11-05 18:47 [PATCH 0/1] linux-yocto/3.10: fix qemuarm boot and spurious mips build warning Bruce Ashfield
@ 2013-11-05 18:47 ` Bruce Ashfield
2013-11-05 20:56 ` [PATCH 0/1] " Phil Blundell
1 sibling, 0 replies; 5+ messages in thread
From: Bruce Ashfield @ 2013-11-05 18:47 UTC (permalink / raw)
To: richard.purdie; +Cc: openembedded-core
This update fixes two issues:
a) qemuarm boot failure
v3.10.13 picked up a patch for arm versatile interrupt mappings that fixes
the emulator boot out of the box. But it interacts badly with our previous
fix for the issue. Reverting the existing patch and going with the mainline
solution fixes the boot.
b) qemumips build warning and failure
Depending on the build host and compiler, the build of menuconfig throws
an potentially uninitialized variable warning. That warning causes an
error on archs with -Werror. We can do a trivial change to avoid the
warning all together (initilize it to null), and keep everyone happy.
[YOCTO #5460]
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
---
meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb | 4 ++--
meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb | 2 +-
meta/recipes-kernel/linux/linux-yocto_3.10.bb | 14 +++++++-------
3 files changed, 10 insertions(+), 10 deletions(-)
diff --git a/meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb b/meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb
index 53d546c..ab95ad1 100644
--- a/meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-rt_3.10.bb
@@ -3,8 +3,8 @@ require recipes-kernel/linux/linux-yocto.inc
KBRANCH = "standard/preempt-rt/base"
KBRANCH_qemuppc = "standard/preempt-rt/qemuppc"
-SRCREV_machine ?= "919b378578a8f931ee87092f1ce2608a6c2815db"
-SRCREV_machine_qemuppc ?= "be60fd54789f04941b51665970ef121089f9b93e"
+SRCREV_machine ?= "97499dfaea61934719b91f1347f468c6f0125b2c"
+SRCREV_machine_qemuppc ?= "54cb4efa033af86301934d58d890a5324cc95a75"
SRCREV_meta ?= "f1c9080cd27f99700fa59b5375d1ddd0afe625ad"
SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.10.git;bareclone=1;branch=${KBRANCH},meta;name=machine,meta"
diff --git a/meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb b/meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb
index c769517..c15c311 100644
--- a/meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb
+++ b/meta/recipes-kernel/linux/linux-yocto-tiny_3.10.bb
@@ -9,7 +9,7 @@ LINUX_VERSION ?= "3.10.17"
KMETA = "meta"
-SRCREV_machine ?= "375aee37c2508899b6a8c0bdff7d4d67cb75fb36"
+SRCREV_machine ?= "c03195ed6e3066494e3fb4be69154a57066e845b"
SRCREV_meta ?= "f1c9080cd27f99700fa59b5375d1ddd0afe625ad"
diff --git a/meta/recipes-kernel/linux/linux-yocto_3.10.bb b/meta/recipes-kernel/linux/linux-yocto_3.10.bb
index af50b5c..eff245d 100644
--- a/meta/recipes-kernel/linux/linux-yocto_3.10.bb
+++ b/meta/recipes-kernel/linux/linux-yocto_3.10.bb
@@ -3,13 +3,13 @@ require recipes-kernel/linux/linux-yocto.inc
KBRANCH_DEFAULT = "standard/base"
KBRANCH = "${KBRANCH_DEFAULT}"
-SRCREV_machine_qemuarm ?= "47ba9c54bfa38b70e2c7500a7e30a738c667cb95"
-SRCREV_machine_qemumips ?= "b9d36bdb86b595d9823392402b31bdb76439054c"
-SRCREV_machine_qemuppc ?= "e13586324a05aba0f0cf2523ad9eecda2edd3b94"
-SRCREV_machine_qemux86 ?= "375aee37c2508899b6a8c0bdff7d4d67cb75fb36"
-SRCREV_machine_qemux86-64 ?= "375aee37c2508899b6a8c0bdff7d4d67cb75fb36"
-SRCREV_machine_qemumips64 ?= "44eaa7b02aa1e4b8e539c2227702f74f9fcbcfea"
-SRCREV_machine ?= "375aee37c2508899b6a8c0bdff7d4d67cb75fb36"
+SRCREV_machine_qemuarm ?= "5714b747cf0087bb964cbb962db8d3d2041f3177"
+SRCREV_machine_qemumips ?= "e87d2cb44bc5d10f3619871541849064bf0d79b1"
+SRCREV_machine_qemuppc ?= "3e99f981fea427696f63af7fd8e99bf05039efee"
+SRCREV_machine_qemux86 ?= "c03195ed6e3066494e3fb4be69154a57066e845b"
+SRCREV_machine_qemux86-64 ?= "c03195ed6e3066494e3fb4be69154a57066e845b"
+SRCREV_machine_qemumips64 ?= "8d21f71847640fc052bda1bf1f3792634cae5bb1"
+SRCREV_machine ?= "c03195ed6e3066494e3fb4be69154a57066e845b"
SRCREV_meta ?= "f1c9080cd27f99700fa59b5375d1ddd0afe625ad"
SRC_URI = "git://git.yoctoproject.org/linux-yocto-3.10.git;bareclone=1;branch=${KBRANCH},${KMETA};name=machine,meta"
--
1.8.1.2
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH 0/1] linux-yocto/3.10: fix qemuarm boot and spurious mips build warning
2013-11-05 18:47 [PATCH 0/1] linux-yocto/3.10: fix qemuarm boot and spurious mips build warning Bruce Ashfield
2013-11-05 18:47 ` [PATCH 1/1] " Bruce Ashfield
@ 2013-11-05 20:56 ` Phil Blundell
2013-11-06 3:21 ` Bruce Ashfield
1 sibling, 1 reply; 5+ messages in thread
From: Phil Blundell @ 2013-11-05 20:56 UTC (permalink / raw)
To: oe-core
On Tue, 2013-11-05 at 13:47 -0500, Bruce Ashfield wrote:
> I don't have anything extra to add outside of what I put in the
> patch commit log ..
That's certainly a good thing and to be applauded, but in this situation
maybe you could consider just sending the patch without a cover letter.
p.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 0/1] linux-yocto/3.10: fix qemuarm boot and spurious mips build warning
2013-11-05 20:56 ` [PATCH 0/1] " Phil Blundell
@ 2013-11-06 3:21 ` Bruce Ashfield
2013-11-07 18:39 ` Darren Hart
0 siblings, 1 reply; 5+ messages in thread
From: Bruce Ashfield @ 2013-11-06 3:21 UTC (permalink / raw)
To: Phil Blundell; +Cc: oe-core
On Tue, Nov 5, 2013 at 3:56 PM, Phil Blundell <pb@pbcl.net> wrote:
> On Tue, 2013-11-05 at 13:47 -0500, Bruce Ashfield wrote:
>> I don't have anything extra to add outside of what I put in the
>> patch commit log ..
>
> That's certainly a good thing and to be applauded, but in this situation
> maybe you could consider just sending the patch without a cover letter.
>
I honestly dislike lone patches in nearly every situation. So let's
just say that
opinions differ and leave it at that.
Cheers,
Bruce
> p.
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
--
"Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end"
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 0/1] linux-yocto/3.10: fix qemuarm boot and spurious mips build warning
2013-11-06 3:21 ` Bruce Ashfield
@ 2013-11-07 18:39 ` Darren Hart
0 siblings, 0 replies; 5+ messages in thread
From: Darren Hart @ 2013-11-07 18:39 UTC (permalink / raw)
To: Bruce Ashfield; +Cc: oe-core
On Tue, 2013-11-05 at 22:21 -0500, Bruce Ashfield wrote:
> On Tue, Nov 5, 2013 at 3:56 PM, Phil Blundell <pb@pbcl.net> wrote:
> > On Tue, 2013-11-05 at 13:47 -0500, Bruce Ashfield wrote:
> >> I don't have anything extra to add outside of what I put in the
> >> patch commit log ..
> >
> > That's certainly a good thing and to be applauded, but in this situation
> > maybe you could consider just sending the patch without a cover letter.
> >
>
> I honestly dislike lone patches in nearly every situation. So let's
> just say that
> opinions differ and leave it at that.
For anything other than single patches (which I understand this is)
there is a preference for using the create-pull-request and
send-pull-request tools which ensure the patches are available via a git
pull from a public repository and also apply a cover letter. Often times
I leave the cover letter blank for the same reason Bruce has stated
here, and I think that's a reasonable approach, especially for a short
or an eclectic set of changes.
--
Darren Hart
Intel Open Source Technology Center
Yocto Project - Linux Kernel
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2013-11-07 18:39 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-05 18:47 [PATCH 0/1] linux-yocto/3.10: fix qemuarm boot and spurious mips build warning Bruce Ashfield
2013-11-05 18:47 ` [PATCH 1/1] " Bruce Ashfield
2013-11-05 20:56 ` [PATCH 0/1] " Phil Blundell
2013-11-06 3:21 ` Bruce Ashfield
2013-11-07 18:39 ` Darren Hart
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.