Re: [U-Boot] [PATCH] spl: descend into lib/ for all the SPL boards

2015-04-24 Thread Tom Rini
On Fri, Apr 24, 2015 at 01:34:49PM -0500, Scott Wood wrote: > On Thu, 2015-04-23 at 11:37 -0600, Simon Glass wrote: > > Hi Tom, > > > > On 22 April 2015 at 08:14, Tom Rini wrote: > > > On Tue, Apr 21, 2015 at 12:37:18PM +0900, Masahiro Yamada wrote: > > >> Currently, CONFIG_SPL_LIBGENERIC_SUPPORT

Re: [U-Boot] [PATCH] spl: descend into lib/ for all the SPL boards

2015-04-24 Thread Scott Wood
On Thu, 2015-04-23 at 11:37 -0600, Simon Glass wrote: > Hi Tom, > > On 22 April 2015 at 08:14, Tom Rini wrote: > > On Tue, Apr 21, 2015 at 12:37:18PM +0900, Masahiro Yamada wrote: > >> Currently, CONFIG_SPL_LIBGENERIC_SUPPORT must be defined > >> to build under lib/ directory for SPL. > >> > >> T

Re: [U-Boot] [PATCH] spl: descend into lib/ for all the SPL boards

2015-04-23 Thread Simon Glass
On 21 April 2015 at 10:53, York Sun wrote: > > > On 04/20/2015 08:37 PM, Masahiro Yamada wrote: >> Currently, CONFIG_SPL_LIBGENERIC_SUPPORT must be defined >> to build under lib/ directory for SPL. >> >> This directory contains very basic functions such as memcpy, memset >> in lib/string.c, so it

Re: [U-Boot] [PATCH] spl: descend into lib/ for all the SPL boards

2015-04-23 Thread Simon Glass
Hi Tom, On 22 April 2015 at 08:14, Tom Rini wrote: > On Tue, Apr 21, 2015 at 12:37:18PM +0900, Masahiro Yamada wrote: >> Currently, CONFIG_SPL_LIBGENERIC_SUPPORT must be defined >> to build under lib/ directory for SPL. >> >> This directory contains very basic functions such as memcpy, memset >>

Re: [U-Boot] [PATCH] spl: descend into lib/ for all the SPL boards

2015-04-22 Thread Tom Rini
On Tue, Apr 21, 2015 at 12:37:18PM +0900, Masahiro Yamada wrote: > Currently, CONFIG_SPL_LIBGENERIC_SUPPORT must be defined > to build under lib/ directory for SPL. > > This directory contains very basic functions such as memcpy, memset > in lib/string.c, so it should be very useful for all the bo

Re: [U-Boot] [PATCH] spl: descend into lib/ for all the SPL boards

2015-04-21 Thread York Sun
On 04/20/2015 08:37 PM, Masahiro Yamada wrote: > Currently, CONFIG_SPL_LIBGENERIC_SUPPORT must be defined > to build under lib/ directory for SPL. > > This directory contains very basic functions such as memcpy, memset > in lib/string.c, so it should be very useful for all the boards. > > Becau

[U-Boot] [PATCH] spl: descend into lib/ for all the SPL boards

2015-04-20 Thread Masahiro Yamada
Currently, CONFIG_SPL_LIBGENERIC_SUPPORT must be defined to build under lib/ directory for SPL. This directory contains very basic functions such as memcpy, memset in lib/string.c, so it should be very useful for all the boards. Because SPL always enables compiler's garbage collection, this chang