qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] PPC: e500: reconditionalize on CONFIG_FDT
@ 2012-07-09 14:04 Scott Wood
  2012-07-09 14:07 ` Andreas Färber
  2012-07-09 16:39 ` Alexander Graf
  0 siblings, 2 replies; 5+ messages in thread
From: Scott Wood @ 2012-07-09 14:04 UTC (permalink / raw)
  To: agraf; +Cc: qemu-ppc, qemu-devel

Recent patches "PPC: e500: rename mpc8544ds into generic file", "PPC:
e500: split mpc8544ds machine from generic e500 code", and "PPC: e500:
add generic e500 platform" moved certain e500-related files to the bottom
of the makefile because they're now in ppc/, but the dependency on
CONFIG_FDT was accidentally dropped.  This broke the build when FDT
support is not enabled.

Signed-off-by: Scott Wood <scottwood@freescale.com>
---
 hw/ppc/Makefile.objs |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/hw/ppc/Makefile.objs b/hw/ppc/Makefile.objs
index 81bcc72..951e407 100644
--- a/hw/ppc/Makefile.objs
+++ b/hw/ppc/Makefile.objs
@@ -27,4 +27,4 @@ obj-y += xilinx_ethlite.o
 
 obj-y := $(addprefix ../,$(obj-y))
 
-obj-y += e500.o mpc8544ds.o e500plat.o
+obj-$(CONFIG_FDT) += e500.o mpc8544ds.o e500plat.o
-- 
1.7.5.4

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

* Re: [Qemu-devel] [PATCH] PPC: e500: reconditionalize on CONFIG_FDT
  2012-07-09 14:04 [Qemu-devel] [PATCH] PPC: e500: reconditionalize on CONFIG_FDT Scott Wood
@ 2012-07-09 14:07 ` Andreas Färber
  2012-07-09 14:36   ` Scott Wood
  2012-07-09 16:39 ` Alexander Graf
  1 sibling, 1 reply; 5+ messages in thread
From: Andreas Färber @ 2012-07-09 14:07 UTC (permalink / raw)
  To: Alexander Graf; +Cc: Scott Wood, qemu-ppc, qemu-devel

Am 09.07.2012 16:04, schrieb Scott Wood:
> Recent patches "PPC: e500: rename mpc8544ds into generic file", "PPC:
> e500: split mpc8544ds machine from generic e500 code", and "PPC: e500:
> add generic e500 platform" moved certain e500-related files to the bottom
> of the makefile because they're now in ppc/, but the dependency on
> CONFIG_FDT was accidentally dropped.  This broke the build when FDT
> support is not enabled.
> 
> Signed-off-by: Scott Wood <scottwood@freescale.com>

Reviewed-by: Andreas Färber <afaerber@suse.de>

But this can probably still be squashed into the original patches for
bisectability I hope?

Andreas

> ---
>  hw/ppc/Makefile.objs |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/hw/ppc/Makefile.objs b/hw/ppc/Makefile.objs
> index 81bcc72..951e407 100644
> --- a/hw/ppc/Makefile.objs
> +++ b/hw/ppc/Makefile.objs
> @@ -27,4 +27,4 @@ obj-y += xilinx_ethlite.o
>  
>  obj-y := $(addprefix ../,$(obj-y))
>  
> -obj-y += e500.o mpc8544ds.o e500plat.o
> +obj-$(CONFIG_FDT) += e500.o mpc8544ds.o e500plat.o
> 


-- 
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg, Germany
GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer; HRB 16746 AG Nürnberg

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

* Re: [Qemu-devel] [PATCH] PPC: e500: reconditionalize on CONFIG_FDT
  2012-07-09 14:07 ` Andreas Färber
@ 2012-07-09 14:36   ` Scott Wood
  2012-07-09 14:37     ` Alexander Graf
  0 siblings, 1 reply; 5+ messages in thread
From: Scott Wood @ 2012-07-09 14:36 UTC (permalink / raw)
  To: Andreas Färber; +Cc: qemu-ppc, Alexander Graf, qemu-devel

On 07/09/2012 09:07 AM, Andreas Färber wrote:
> Am 09.07.2012 16:04, schrieb Scott Wood:
>> Recent patches "PPC: e500: rename mpc8544ds into generic file", "PPC:
>> e500: split mpc8544ds machine from generic e500 code", and "PPC: e500:
>> add generic e500 platform" moved certain e500-related files to the bottom
>> of the makefile because they're now in ppc/, but the dependency on
>> CONFIG_FDT was accidentally dropped.  This broke the build when FDT
>> support is not enabled.
>>
>> Signed-off-by: Scott Wood <scottwood@freescale.com>
> 
> Reviewed-by: Andreas Färber <afaerber@suse.de>
> 
> But this can probably still be squashed into the original patches for
> bisectability I hope?

OK, wasn't sure what the rebase policy was once the patch is in a
maintainer tree.  Alex, do you want me to resend the original patchset
with the fix squashed?

-Scott

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

* Re: [Qemu-devel] [PATCH] PPC: e500: reconditionalize on CONFIG_FDT
  2012-07-09 14:36   ` Scott Wood
@ 2012-07-09 14:37     ` Alexander Graf
  0 siblings, 0 replies; 5+ messages in thread
From: Alexander Graf @ 2012-07-09 14:37 UTC (permalink / raw)
  To: Scott Wood; +Cc: qemu-ppc, Andreas Färber, qemu-devel


On 09.07.2012, at 16:36, Scott Wood wrote:

> On 07/09/2012 09:07 AM, Andreas Färber wrote:
>> Am 09.07.2012 16:04, schrieb Scott Wood:
>>> Recent patches "PPC: e500: rename mpc8544ds into generic file", "PPC:
>>> e500: split mpc8544ds machine from generic e500 code", and "PPC: e500:
>>> add generic e500 platform" moved certain e500-related files to the bottom
>>> of the makefile because they're now in ppc/, but the dependency on
>>> CONFIG_FDT was accidentally dropped.  This broke the build when FDT
>>> support is not enabled.
>>> 
>>> Signed-off-by: Scott Wood <scottwood@freescale.com>
>> 
>> Reviewed-by: Andreas Färber <afaerber@suse.de>
>> 
>> But this can probably still be squashed into the original patches for
>> bisectability I hope?
> 
> OK, wasn't sure what the rebase policy was once the patch is in a
> maintainer tree.  Alex, do you want me to resend the original patchset
> with the fix squashed?

No worries, I'll just squash it in myself. I keep my trees rebaseable. That heavily improves bisectability and as long as nobody complains, I'd like to keep it that way :).


Alex

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

* Re: [Qemu-devel] [PATCH] PPC: e500: reconditionalize on CONFIG_FDT
  2012-07-09 14:04 [Qemu-devel] [PATCH] PPC: e500: reconditionalize on CONFIG_FDT Scott Wood
  2012-07-09 14:07 ` Andreas Färber
@ 2012-07-09 16:39 ` Alexander Graf
  1 sibling, 0 replies; 5+ messages in thread
From: Alexander Graf @ 2012-07-09 16:39 UTC (permalink / raw)
  To: Scott Wood; +Cc: qemu-ppc, qemu-devel


On 09.07.2012, at 16:04, Scott Wood wrote:

> Recent patches "PPC: e500: rename mpc8544ds into generic file", "PPC:
> e500: split mpc8544ds machine from generic e500 code", and "PPC: e500:
> add generic e500 platform" moved certain e500-related files to the bottom
> of the makefile because they're now in ppc/, but the dependency on
> CONFIG_FDT was accidentally dropped.  This broke the build when FDT
> support is not enabled.
> 
> Signed-off-by: Scott Wood <scottwood@freescale.com>

Thanks, merged into the respective other patches.


Alex

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

end of thread, other threads:[~2012-07-09 16:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-09 14:04 [Qemu-devel] [PATCH] PPC: e500: reconditionalize on CONFIG_FDT Scott Wood
2012-07-09 14:07 ` Andreas Färber
2012-07-09 14:36   ` Scott Wood
2012-07-09 14:37     ` Alexander Graf
2012-07-09 16:39 ` Alexander Graf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).