Re: [Xen-devel] [PATCH 2/2] xen: arm: more flexible scheme for specifying early printk device

2015-03-20 Thread Ian Campbell
On Wed, 2015-03-11 at 14:47 +, Julien Grall wrote: > Hi Ian, > > On 11/03/2015 14:11, Ian Campbell wrote: > > This allows for early-printk to be specified (for existing UARTS at > > least) without the need to edit Rules.mk. > > > > The existing shortcuts are retained, but in a much more compac

Re: [Xen-devel] [PATCH 2/2] xen: arm: more flexible scheme for specifying early printk device

2015-03-12 Thread Tim Deegan
At 16:51 + on 12 Mar (1426175517), Ian Campbell wrote: > On Thu, 2015-03-12 at 12:03 +0100, Tim Deegan wrote: > > CONFIG_EARLY_PRINTK := $(or $(EARLY_PRINTK_$(CONFIG_EARLY_PRINTK)), > > $(CONFIG_EARLY_PRINTK) > > EARLY_PRINTK_CFG := $(subst $(COMMA), ,$(CONFIG_EARLY_PRINTK)) > > I didn't know

Re: [Xen-devel] [PATCH 2/2] xen: arm: more flexible scheme for specifying early printk device

2015-03-12 Thread Ian Campbell
On Thu, 2015-03-12 at 12:03 +0100, Tim Deegan wrote: > At 14:11 + on 11 Mar (1426079515), Ian Campbell wrote: > > +EARLY_PRINTK_brcm := 8250,0xF040AB00,2 > > +EARLY_PRINTK_dra7 := 8250,0x4806A000,2 > > +EARLY_PRINTK_fastmodel := pl011,0x1c09,115200 > > +EARLY_PRINTK

Re: [Xen-devel] [PATCH 2/2] xen: arm: more flexible scheme for specifying early printk device

2015-03-12 Thread Tim Deegan
At 14:11 + on 11 Mar (1426079515), Ian Campbell wrote: > +EARLY_PRINTK_brcm := 8250,0xF040AB00,2 > +EARLY_PRINTK_dra7 := 8250,0x4806A000,2 > +EARLY_PRINTK_fastmodel := pl011,0x1c09,115200 > +EARLY_PRINTK_exynos5250 := exynos4210,0x12c2 > +EARLY_PRINTK_hip04-

Re: [Xen-devel] [PATCH 2/2] xen: arm: more flexible scheme for specifying early printk device

2015-03-12 Thread Julien Grall
Hi Ian, On 11/03/2015 14:11, Ian Campbell wrote: This allows for early-printk to be specified (for existing UARTS at least) without the need to edit Rules.mk. The existing shortcuts are retained, but in a much more compact fashion. An unused EARLY_PRINTK_BAUD was removed from the zynqmq settin

Re: [Xen-devel] [PATCH 2/2] xen: arm: more flexible scheme for specifying early printk device

2015-03-11 Thread Ian Campbell
On Wed, 2015-03-11 at 14:47 +, Julien Grall wrote: > Hi Ian, > > On 11/03/2015 14:11, Ian Campbell wrote: > > This allows for early-printk to be specified (for existing UARTS at > > least) without the need to edit Rules.mk. > > > > The existing shortcuts are retained, but in a much more compac

Re: [Xen-devel] [PATCH 2/2] xen: arm: more flexible scheme for specifying early printk device

2015-03-11 Thread Ian Campbell
On Wed, 2015-03-11 at 14:19 +, Andrew Cooper wrote: > On 11/03/15 14:11, Ian Campbell wrote: > > + > > +COMMA := , > > COMMA is available from the root Config.mk as 'comma' I had missed the -i off my grep, thanks! Ian. ___ Xen-devel mailing list

Re: [Xen-devel] [PATCH 2/2] xen: arm: more flexible scheme for specifying early printk device

2015-03-11 Thread Andrew Cooper
On 11/03/15 14:11, Ian Campbell wrote: > + > +COMMA := , COMMA is available from the root Config.mk as 'comma' ~Andrew ___ Xen-devel mailing list Xen-devel@lists.xen.org http://lists.xen.org/xen-devel

Re: [Xen-devel] [PATCH 2/2] xen: arm: more flexible scheme for specifying early printk device

2015-03-11 Thread Ian Campbell
On Wed, 2015-03-11 at 14:11 +, Ian Campbell wrote: Sorry, I was too lazy to write a cover letter for these changes and forgot that would mean that git send-email wouldn't thread them. > This allows for early-printk to be specified (for existing UARTS at > least) without the need to edit Rules

[Xen-devel] [PATCH 2/2] xen: arm: more flexible scheme for specifying early printk device

2015-03-11 Thread Ian Campbell
This allows for early-printk to be specified (for existing UARTS at least) without the need to edit Rules.mk. The existing shortcuts are retained, but in a much more compact fashion. An unused EARLY_PRINTK_BAUD was removed from the zynqmq settings. Signed-off-by: Ian Campbell --- docs/misc/arm