Re: [U-Boot] [PATCH 4/7] lib: Split panic functions out of vsprintf.c

2015-12-13 Thread Sjoerd Simons
On Sun, 2015-12-13 at 20:45 -0700, Simon Glass wrote: > On 8 December 2015 at 12:38, Simon Glass wrote: > > Hi Scott, > > > > On 8 December 2015 at 12:36, Scott Wood > > wrote: > > > On Tue, 2015-12-08 at 12:34 -0700, Simon Glass wrote: > > > > Hi Sjoerd, > > > >  > > OK, so how about this: > >

Re: [U-Boot] [PATCH 4/7] lib: Split panic functions out of vsprintf.c

2015-12-13 Thread Simon Glass
On 8 December 2015 at 12:38, Simon Glass wrote: > Hi Scott, > > On 8 December 2015 at 12:36, Scott Wood wrote: >> On Tue, 2015-12-08 at 12:34 -0700, Simon Glass wrote: >>> Hi Sjoerd, >>> >>> On 8 December 2015 at 00:27, Sjoerd Simons >>> wrote: >>> > >>> > On Mon, 2015-12-07 at 17:39 -0700, Simo

Re: [U-Boot] [PATCH 4/7] lib: Split panic functions out of vsprintf.c

2015-12-08 Thread Simon Glass
Hi Scott, On 8 December 2015 at 12:36, Scott Wood wrote: > On Tue, 2015-12-08 at 12:34 -0700, Simon Glass wrote: >> Hi Sjoerd, >> >> On 8 December 2015 at 00:27, Sjoerd Simons >> wrote: >> > >> > On Mon, 2015-12-07 at 17:39 -0700, Simon Glass wrote: >> > > > diff --git a/lib/Makefile b/lib/Makef

Re: [U-Boot] [PATCH 4/7] lib: Split panic functions out of vsprintf.c

2015-12-08 Thread Scott Wood
On Tue, 2015-12-08 at 12:34 -0700, Simon Glass wrote: > Hi Sjoerd, > > On 8 December 2015 at 00:27, Sjoerd Simons > wrote: > > > > On Mon, 2015-12-07 at 17:39 -0700, Simon Glass wrote: > > > > diff --git a/lib/Makefile b/lib/Makefile > > > > index 1f1ff6f..ae84833 100644 > > > > --- a/lib/Makefi

Re: [U-Boot] [PATCH 4/7] lib: Split panic functions out of vsprintf.c

2015-12-08 Thread Simon Glass
Hi Sjoerd, On 8 December 2015 at 00:27, Sjoerd Simons wrote: > > On Mon, 2015-12-07 at 17:39 -0700, Simon Glass wrote: > > > diff --git a/lib/Makefile b/lib/Makefile > > > index 1f1ff6f..ae84833 100644 > > > --- a/lib/Makefile > > > +++ b/lib/Makefile > > > @@ -85,13 +85,13 @@ obj-$(CONFIG_LIB_RA

Re: [U-Boot] [PATCH 4/7] lib: Split panic functions out of vsprintf.c

2015-12-07 Thread Sjoerd Simons
On Mon, 2015-12-07 at 17:39 -0700, Simon Glass wrote: > > diff --git a/lib/Makefile b/lib/Makefile > > index 1f1ff6f..ae84833 100644 > > --- a/lib/Makefile > > +++ b/lib/Makefile > > @@ -85,13 +85,13 @@ obj-$(CONFIG_LIB_RAND) += rand.o > >  ifdef CONFIG_SPL_BUILD > >  # SPL U-Boot may use full-prin

Re: [U-Boot] [PATCH 4/7] lib: Split panic functions out of vsprintf.c

2015-12-07 Thread Simon Glass
Hi Sjoerd, On 4 December 2015 at 15:27, Sjoerd Simons wrote: > To allow panic and panic_str to still be used when using tiny-printf, > split them out into their own file which gets build regardless of what > printf implementation is used. > > Signed-off-by: Sjoerd Simons > --- > > lib/Makefile

[U-Boot] [PATCH 4/7] lib: Split panic functions out of vsprintf.c

2015-12-04 Thread Sjoerd Simons
To allow panic and panic_str to still be used when using tiny-printf, split them out into their own file which gets build regardless of what printf implementation is used. Signed-off-by: Sjoerd Simons --- lib/Makefile | 6 +++--- lib/panic.c| 45 ++