Re: [U-Boot] [PATCH] Added a tftp command

2009-03-31 Thread Ben Warren
Mike Frysinger wrote: > On Tuesday 31 March 2009 19:40:27 kevin.morf...@fearnside-systems.co.uk wrote: > >> Mike Frysinger wrote: >> >>> On Tuesday 31 March 2009 18:44:21 kevin.morfitt wrote: >>> Adds a "tftp" command that gets a specified file from a TFTP Server and stores

Re: [U-Boot] [PATCH] Added a tftp command

2009-03-31 Thread Mike Frysinger
On Tuesday 31 March 2009 19:40:27 kevin.morf...@fearnside-systems.co.uk wrote: > Mike Frysinger wrote: > > On Tuesday 31 March 2009 18:44:21 kevin.morfitt wrote: > >> Adds a "tftp" command that gets a specified file from a TFTP Server and > >> stores it in RAM at a specified RAM address. Most of th

Re: [U-Boot] [PATCH] Added a tftp command

2009-03-31 Thread kevin.morf...@fearnside-systems.co.uk
Kumar Gala wrote: > > On Mar 31, 2009, at 5:44 PM, kevin.morf...@fearnside-systems.co.uk wrote: > >> Adds a "tftp" command that gets a specified file from a TFTP Server and >> stores it in RAM at a specified RAM address. Most of the code already >> exists in board-specific form (eg in board/hymod)

Re: [U-Boot] [PATCH] Added a tftp command

2009-03-31 Thread kevin.morf...@fearnside-systems.co.uk
Mike Frysinger wrote: > On Tuesday 31 March 2009 18:44:21 kevin.morf...@fearnside-systems.co.uk wrote: > >> Adds a "tftp" command that gets a specified file from a TFTP Server and >> stores it in RAM at a specified RAM address. Most of the code already >> exists in board-specific form (eg in boa

Re: [U-Boot] [PATCH] Added a tftp command

2009-03-31 Thread Kumar Gala
On Mar 31, 2009, at 5:44 PM, kevin.morf...@fearnside-systems.co.uk wrote: > Adds a "tftp" command that gets a specified file from a TFTP Server > and > stores it in RAM at a specified RAM address. Most of the code already > exists in board-specific form (eg in board/hymod) but this patch > ex

Re: [U-Boot] [PATCH] Added a tftp command

2009-03-31 Thread Mike Frysinger
On Tuesday 31 March 2009 18:44:21 kevin.morf...@fearnside-systems.co.uk wrote: > Adds a "tftp" command that gets a specified file from a TFTP Server and > stores it in RAM at a specified RAM address. Most of the code already > exists in board-specific form (eg in board/hymod) but this patch > extra

[U-Boot] [PATCH] Added a tftp command

2009-03-31 Thread kevin.morf...@fearnside-systems.co.uk
Adds a "tftp" command that gets a specified file from a TFTP Server and stores it in RAM at a specified RAM address. Most of the code already exists in board-specific form (eg in board/hymod) but this patch extracts it and makes it available as a standard u-boot command. Signed-off-by: Kevin Mo