Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/qemu: fixup enable host QEMU for powerpc64/powerpc64le
@ 2016-11-24  5:56 Sam Bobroff
  2016-11-24 11:20 ` Baruch Siach
  2016-11-25 21:14 ` Thomas Petazzoni
  0 siblings, 2 replies; 5+ messages in thread
From: Sam Bobroff @ 2016-11-24  5:56 UTC (permalink / raw)
  To: buildroot

Fixes next commit d634d9dda7f3c328d63469cb628c79da49a09e89.

Signed-off-by: Sam Bobroff <sam.bobroff@au1.ibm.com>
---
Baruch,

I've rebased the patch onto next, I'm not sure what other changes to
make. Does it look OK now? (Will it get squashed in next?)

Cheers,
Sam.

 package/qemu/qemu.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/qemu/qemu.mk b/package/qemu/qemu.mk
index ae4e0ad..45fc0fa 100644
--- a/package/qemu/qemu.mk
+++ b/package/qemu/qemu.mk
@@ -35,7 +35,7 @@ HOST_QEMU_DEPENDENCIES = host-pkgconf host-python host-zlib host-libglib2 host-p
 #       mips64el        mips64el
 #       powerpc         ppc
 #       powerpc64       ppc64
-#       powerpc64le     ppc64 (ppc64 supports little-endian)
+#       powerpc64le     ppc64le
 #       sh2a            not supported
 #       sh4             sh4
 #       sh4eb           sh4eb
@@ -61,7 +61,7 @@ ifeq ($(HOST_QEMU_ARCH),powerpc64)
 HOST_QEMU_ARCH = ppc64
 endif
 ifeq ($(HOST_QEMU_ARCH),powerpc64le)
-HOST_QEMU_ARCH = ppc64
+HOST_QEMU_ARCH = ppc64le
 endif
 ifeq ($(HOST_QEMU_ARCH),sh4a)
 HOST_QEMU_ARCH = sh4
-- 
2.10.0.297.gf6727b0

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH 1/1] package/qemu: fixup enable host QEMU for powerpc64/powerpc64le
  2016-11-24  5:56 [Buildroot] [PATCH 1/1] package/qemu: fixup enable host QEMU for powerpc64/powerpc64le Sam Bobroff
@ 2016-11-24 11:20 ` Baruch Siach
  2016-11-24 12:28   ` Thomas Petazzoni
  2016-11-25 21:14 ` Thomas Petazzoni
  1 sibling, 1 reply; 5+ messages in thread
From: Baruch Siach @ 2016-11-24 11:20 UTC (permalink / raw)
  To: buildroot

Hi Sam,

On Thu, Nov 24, 2016 at 04:56:42PM +1100, Sam Bobroff wrote:
> Fixes next commit d634d9dda7f3c328d63469cb628c79da49a09e89.
> 
> Signed-off-by: Sam Bobroff <sam.bobroff@au1.ibm.com>
> ---
> Baruch,
> 
> I've rebased the patch onto next, I'm not sure what other changes to
> make. Does it look OK now? (Will it get squashed in next?)

The Buildroot maintainers do not rebase/amend next. When there is an issue 
with an applied commit, either in next or master, post a but fix patch. Hence 
the commit log should be more detailed. Also, you may mention the commit the 
introduced the bug as you did, but not 'next'. The next branch will soon merge 
into master, but the commit log will not change.

baruch

>  package/qemu/qemu.mk | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/package/qemu/qemu.mk b/package/qemu/qemu.mk
> index ae4e0ad..45fc0fa 100644
> --- a/package/qemu/qemu.mk
> +++ b/package/qemu/qemu.mk
> @@ -35,7 +35,7 @@ HOST_QEMU_DEPENDENCIES = host-pkgconf host-python host-zlib host-libglib2 host-p
>  #       mips64el        mips64el
>  #       powerpc         ppc
>  #       powerpc64       ppc64
> -#       powerpc64le     ppc64 (ppc64 supports little-endian)
> +#       powerpc64le     ppc64le
>  #       sh2a            not supported
>  #       sh4             sh4
>  #       sh4eb           sh4eb
> @@ -61,7 +61,7 @@ ifeq ($(HOST_QEMU_ARCH),powerpc64)
>  HOST_QEMU_ARCH = ppc64
>  endif
>  ifeq ($(HOST_QEMU_ARCH),powerpc64le)
> -HOST_QEMU_ARCH = ppc64
> +HOST_QEMU_ARCH = ppc64le
>  endif
>  ifeq ($(HOST_QEMU_ARCH),sh4a)
>  HOST_QEMU_ARCH = sh4

-- 
     http://baruch.siach.name/blog/                  ~. .~   Tk Open Systems
=}------------------------------------------------ooO--U--Ooo------------{=
   - baruch at tkos.co.il - tel: +972.52.368.4656, http://www.tkos.co.il -

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH 1/1] package/qemu: fixup enable host QEMU for powerpc64/powerpc64le
  2016-11-24 11:20 ` Baruch Siach
@ 2016-11-24 12:28   ` Thomas Petazzoni
  2016-11-25  0:28     ` Sam Bobroff
  0 siblings, 1 reply; 5+ messages in thread
From: Thomas Petazzoni @ 2016-11-24 12:28 UTC (permalink / raw)
  To: buildroot

Hello,

On Thu, 24 Nov 2016 13:20:13 +0200, Baruch Siach wrote:

> On Thu, Nov 24, 2016 at 04:56:42PM +1100, Sam Bobroff wrote:
> > Fixes next commit d634d9dda7f3c328d63469cb628c79da49a09e89.
> > 
> > Signed-off-by: Sam Bobroff <sam.bobroff@au1.ibm.com>
> > ---
> > Baruch,
> > 
> > I've rebased the patch onto next, I'm not sure what other changes to
> > make. Does it look OK now? (Will it get squashed in next?)  
> 
> The Buildroot maintainers do not rebase/amend next. When there is an issue 
> with an applied commit, either in next or master, post a but fix patch. Hence 
> the commit log should be more detailed. Also, you may mention the commit the 
> introduced the bug as you did, but not 'next'. The next branch will soon merge 
> into master, but the commit log will not change.

Sam: I thought your initial patch was not a bug fix, but a feature
addition, which is why I applied it to the "next" branch. However, I
see in the autobuilders failures of the host-qemu package for
powerpc64, and I believe those would be fixed by your patch. Could you
confirm it's the case? If it is, then I'll cherry-pick the original
patch (+ this additional fix) into the master branch.

Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH 1/1] package/qemu: fixup enable host QEMU for powerpc64/powerpc64le
  2016-11-24 12:28   ` Thomas Petazzoni
@ 2016-11-25  0:28     ` Sam Bobroff
  0 siblings, 0 replies; 5+ messages in thread
From: Sam Bobroff @ 2016-11-25  0:28 UTC (permalink / raw)
  To: buildroot

On Thu, Nov 24, 2016 at 01:28:59PM +0100, Thomas Petazzoni wrote:
> Hello,
> 
> On Thu, 24 Nov 2016 13:20:13 +0200, Baruch Siach wrote:
> 
> > On Thu, Nov 24, 2016 at 04:56:42PM +1100, Sam Bobroff wrote:
> > > Fixes next commit d634d9dda7f3c328d63469cb628c79da49a09e89.
> > > 
> > > Signed-off-by: Sam Bobroff <sam.bobroff@au1.ibm.com>
> > > ---
> > > Baruch,
> > > 
> > > I've rebased the patch onto next, I'm not sure what other changes to
> > > make. Does it look OK now? (Will it get squashed in next?)  
> > 
> > The Buildroot maintainers do not rebase/amend next. When there is an issue 
> > with an applied commit, either in next or master, post a but fix patch. Hence 
> > the commit log should be more detailed. Also, you may mention the commit the 
> > introduced the bug as you did, but not 'next'. The next branch will soon merge 
> > into master, but the commit log will not change.
> 
> Sam: I thought your initial patch was not a bug fix, but a feature
> addition, which is why I applied it to the "next" branch. However, I
> see in the autobuilders failures of the host-qemu package for
> powerpc64, and I believe those would be fixed by your patch. Could you
> confirm it's the case? If it is, then I'll cherry-pick the original
> patch (+ this additional fix) into the master branch.

Yes, that's the case.

My fixup patch isn't in next yet and I'm going to post a v2 with the
right sort of changelog shortly; that should be the one you want (unless
it needs a v3!).

Cheers,
Sam.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Buildroot] [PATCH 1/1] package/qemu: fixup enable host QEMU for powerpc64/powerpc64le
  2016-11-24  5:56 [Buildroot] [PATCH 1/1] package/qemu: fixup enable host QEMU for powerpc64/powerpc64le Sam Bobroff
  2016-11-24 11:20 ` Baruch Siach
@ 2016-11-25 21:14 ` Thomas Petazzoni
  1 sibling, 0 replies; 5+ messages in thread
From: Thomas Petazzoni @ 2016-11-25 21:14 UTC (permalink / raw)
  To: buildroot

Hello,

On Thu, 24 Nov 2016 16:56:42 +1100, Sam Bobroff wrote:
> Fixes next commit d634d9dda7f3c328d63469cb628c79da49a09e89.
> 
> Signed-off-by: Sam Bobroff <sam.bobroff@au1.ibm.com>
> ---
> Baruch,

Applied to next.

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-11-25 21:14 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-11-24  5:56 [Buildroot] [PATCH 1/1] package/qemu: fixup enable host QEMU for powerpc64/powerpc64le Sam Bobroff
2016-11-24 11:20 ` Baruch Siach
2016-11-24 12:28   ` Thomas Petazzoni
2016-11-25  0:28     ` Sam Bobroff
2016-11-25 21:14 ` Thomas Petazzoni

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox