Re: [U-Boot] [PATCH] cmd_sf: add handler for +len arg for all commands

2014-10-10 Thread Maxime Hadjinlian
Hi all, On Wed, Oct 8, 2014 at 10:35 AM, Chin Liang See wrote: > On Sun, 2014-10-05 at 22:55 +0200, ma...@denx.de wrote: >> On Sunday, October 05, 2014 at 10:35:06 PM, Maxime Hadjinlian wrote: >> > On Sun, Oct 5, 2014 at 10:28 PM, Marek Vasut wrote: >> > > On Sun

Re: [U-Boot] [PATCH] cmd_sf: add handler for +len arg for all commands

2014-10-05 Thread Maxime Hadjinlian
On Sun, Oct 5, 2014 at 10:28 PM, Marek Vasut wrote: > On Sunday, October 05, 2014 at 09:51:27 PM, Maxime Hadjinlian wrote: >> On Sun, Oct 5, 2014 at 9:45 PM, Marek Vasut wrote: >> > On Sunday, October 05, 2014 at 09:27:00 PM, Maxime Hadjinlian wrote: >> >> On Sun, O

Re: [U-Boot] [PATCH] cmd_sf: add handler for +len arg for all commands

2014-10-05 Thread Maxime Hadjinlian
On Sun, Oct 5, 2014 at 9:45 PM, Marek Vasut wrote: > On Sunday, October 05, 2014 at 09:27:00 PM, Maxime Hadjinlian wrote: >> On Sun, Oct 5, 2014 at 9:19 PM, wrote: >> >> On Sunday, October 05, 2014 at 08:40:26 PM, Maxime Hadjinlian wrote: >> >> > Hi Thomas

Re: [U-Boot] [PATCH] cmd_sf: add handler for +len arg for all commands

2014-10-05 Thread Maxime Hadjinlian
On Sun, Oct 5, 2014 at 9:19 PM, wrote: >> On Sunday, October 05, 2014 at 08:40:26 PM, Maxime Hadjinlian wrote: >> > Hi Thomas, all, >> > >> > On Sun, Oct 5, 2014 at 7:43 PM, wrote: >> > > Hello Maxime, >> > > >> > > can yo

Re: [U-Boot] [PATCH] cmd_sf: add handler for +len arg for all commands

2014-10-05 Thread Maxime Hadjinlian
le to round it again. > > Best regards, > Thomas > > --- > Sent from my phone. > > Maxime Hadjinlian hat geschrieben: > > > This patch adds [+]len handler for the all the commands that will > automatically round up the requested erase length to the flash's

[U-Boot] [PATCH] tftp: Displace check for server ip

2014-10-05 Thread Maxime Hadjinlian
If for some reason, 'serverip' is not set, and you are passing the remote IP on the command line, the tftp command will fail, stating that the 'serverip' is not set. By displacing this check, it fixes the issues. Signed-off-by: Maxime Hadjinlian --- net/net.c | 6 --

[U-Boot] [PATCH] cmd_sf: add handler for +len arg for all commands

2014-10-05 Thread Maxime Hadjinlian
This patch adds [+]len handler for the all the commands that will automatically round up the requested erase length to the flash's sector_size. It was previously only available for the erase command. Signed-off-by: Maxime Hadjinlian --- common/cmd_sf.c | 12 ++-- 1 file chang