Re: [U-Boot] [V4] arm: Fix to mistake clean the memory space

2012-07-12 Thread Albert ARIBAUD
Hi Zhong Hongbo, On Sat, 7 Jul 2012 21:24:33 +0800, Zhong Hongbo wrote: > From: Zhong Hongbo > > In currently, when __bss_start is equal to __bss_end__, > The bss loop will clear all the things in memory space. > > But just only when __bss_end__ greater than __bss_start__, > we do the clear b

Re: [U-Boot] [V4] arm: Fix to mistake clean the memory space

2012-07-09 Thread Andreas Bießmann
On 07.07.2012 15:24, Zhong Hongbo wrote: > From: Zhong Hongbo > > In currently, when __bss_start is equal to __bss_end__, > The bss loop will clear all the things in memory space. > > But just only when __bss_end__ greater than __bss_start__, > we do the clear bss section operation. > > Signed-

[U-Boot] [V4] arm: Fix to mistake clean the memory space

2012-07-07 Thread Zhong Hongbo
From: Zhong Hongbo In currently, when __bss_start is equal to __bss_end__, The bss loop will clear all the things in memory space. But just only when __bss_end__ greater than __bss_start__, we do the clear bss section operation. Signed-off-by: Zhong Hongbo --- Change for V1 - Fixed bss