[U-Boot] [PATCH v2 3/4] smdk5250, snow: fix CONFIG_SPL_MAX_SIZE semantics

2013-04-09 Thread Albert ARIBAUD
CONFIG_SPL_MAX_SIZE wrongly included BSS size. Split 14K max size between 10K image (text,rodata,data) and 4K BSS based on sizes reported for current build: textdata bss 4136 904 0 Signed-off-by: Albert ARIBAUD --- Changes in v2: - fixed spacing in commit summary board/

Re: [U-Boot] [PATCH v2 3/4] smdk5250, snow: fix CONFIG_SPL_MAX_SIZE semantics

2013-04-09 Thread Minkyu Kang
On 10/04/13 08:14, Albert ARIBAUD wrote: > CONFIG_SPL_MAX_SIZE wrongly included BSS size. > Split 14K max size between 10K image (text,rodata,data) > and 4K BSS based on sizes reported for current build: > >text data bss >4136 904 0 > > Signed-off-by: Albert A