Re: [U-Boot] [PATCH 01/11] cmd: crc32: Disable by default on sunXi

2018-01-12 Thread Jagan Teki
On Fri, Jan 12, 2018 at 2:26 PM, Maxime Ripard wrote: > Hi, > > On Thu, Jan 11, 2018 at 11:24:28PM +0530, Jagan Teki wrote: >> On Thu, Dec 21, 2017 at 6:10 PM, Maxime Ripard >> wrote: >> > The sunXi arm64 build has overflown, leading to the main U-boot binary >> > overwriting the environment when

Re: [U-Boot] [PATCH 01/11] cmd: crc32: Disable by default on sunXi

2018-01-12 Thread Maxime Ripard
On Thu, Jan 11, 2018 at 01:41:41PM -0500, Tom Rini wrote: > On Thu, Jan 11, 2018 at 11:24:28PM +0530, Jagan Teki wrote: > > On Thu, Dec 21, 2017 at 6:10 PM, Maxime Ripard > > wrote: > > > The sunXi arm64 build has overflown, leading to the main U-boot binary > > > overwriting the environment when

Re: [U-Boot] [PATCH 01/11] cmd: crc32: Disable by default on sunXi

2018-01-12 Thread Maxime Ripard
Hi, On Thu, Jan 11, 2018 at 11:24:28PM +0530, Jagan Teki wrote: > On Thu, Dec 21, 2017 at 6:10 PM, Maxime Ripard > wrote: > > The sunXi arm64 build has overflown, leading to the main U-boot binary > > overwriting the environment when flashing the new image, or even worse, > > overwriting itself w

Re: [U-Boot] [PATCH 01/11] cmd: crc32: Disable by default on sunXi

2018-01-11 Thread Tom Rini
On Thu, Jan 11, 2018 at 11:24:28PM +0530, Jagan Teki wrote: > On Thu, Dec 21, 2017 at 6:10 PM, Maxime Ripard > wrote: > > The sunXi arm64 build has overflown, leading to the main U-boot binary > > overwriting the environment when flashing the new image, or even worse, > > overwriting itself when w

Re: [U-Boot] [PATCH 01/11] cmd: crc32: Disable by default on sunXi

2018-01-11 Thread Jagan Teki
On Thu, Dec 21, 2017 at 6:10 PM, Maxime Ripard wrote: > The sunXi arm64 build has overflown, leading to the main U-boot binary > overwriting the environment when flashing the new image, or even worse, > overwriting itself when we're calling saveenv. > > Disable this command that is not critical un

Re: [U-Boot] [PATCH 01/11] cmd: crc32: Disable by default on sunXi

2018-01-09 Thread Jagan Teki
On Thu, Dec 21, 2017 at 6:10 PM, Maxime Ripard wrote: > The sunXi arm64 build has overflown, leading to the main U-boot binary > overwriting the environment when flashing the new image, or even worse, > overwriting itself when we're calling saveenv. > > Disable this command that is not critical un

Re: [U-Boot] [PATCH 01/11] cmd: crc32: Disable by default on sunXi

2018-01-05 Thread Maxime Ripard
Hi Andre, On Thu, Dec 21, 2017 at 02:50:29PM +, Andre Przywara wrote: > Hi, > > On 21/12/17 12:40, Maxime Ripard wrote: > > The sunXi arm64 build has overflown, leading to the main U-boot binary > > overwriting the environment when flashing the new image, or even worse, > > overwriting itself

Re: [U-Boot] [PATCH 01/11] cmd: crc32: Disable by default on sunXi

2017-12-22 Thread Jagan Teki
On Thu, Dec 21, 2017 at 8:20 PM, Andre Przywara wrote: > Hi, > > On 21/12/17 12:40, Maxime Ripard wrote: >> The sunXi arm64 build has overflown, leading to the main U-boot binary >> overwriting the environment when flashing the new image, or even worse, >> overwriting itself when we're calling sav

Re: [U-Boot] [PATCH 01/11] cmd: crc32: Disable by default on sunXi

2017-12-21 Thread Andre Przywara
Hi, On 21/12/17 12:40, Maxime Ripard wrote: > The sunXi arm64 build has overflown, leading to the main U-boot binary > overwriting the environment when flashing the new image, or even worse, > overwriting itself when we're calling saveenv. > > Disable this command that is not critical until we ca

[U-Boot] [PATCH 01/11] cmd: crc32: Disable by default on sunXi

2017-12-21 Thread Maxime Ripard
The sunXi arm64 build has overflown, leading to the main U-boot binary overwriting the environment when flashing the new image, or even worse, overwriting itself when we're calling saveenv. Disable this command that is not critical until we can adress the issue properly. Signed-off-by: Maxime Rip