[U-Boot] Praveen wants to keep up with you on Twitter

2009-07-25 Thread Twitter
To find out more about Twitter, visit the link below: http://twitter.com/i/4681224fe3aff2d2837d182b00766f0c67df4a3a Thanks, -The Twitter Team About Twitter Twitter is a unique approach to communication and networking based on the simple concept of status. What are you doing? What are your frie

Re: [U-Boot] [PATCH/RFC] net: defragment IP packets

2009-07-25 Thread Robin Getz
On Sat 25 Jul 2009 22:02, Jerry Van Baren pondered: > Robin Getz wrote: > > On Fri 24 Jul 2009 04:04, Alessandro Rubini pondered: > >> This patch add a quick and dirty defrag step in IP reception. > > I needed to modify your patch a little bit to get it working on my > > platform. > > > > If Ben

Re: [U-Boot] Add md5sum and sha1 commands...

2009-07-25 Thread Robin Getz
On Sat 25 Jul 2009 22:49, Mike Frysinger pondered: > On Saturday 25 July 2009 16:07:49 Robin Getz wrote: > > --- a/common/cmd_mem.c > > +++ b/common/cmd_mem.c > > @@ -34,6 +34,14 @@ > > #endif > > #include > > > > +#ifdef CONFIG_CMD_MD5SUM > > +#include > > +#endif > > + > > +#ifdef CONFIG_CMD_

[U-Boot] MIPS: accessing flash > 8MB

2009-07-25 Thread Chetan Nanda
Hi, We have a MIPS-4KEC based SoC and running an older version of U-Boot (1.1.3) on it. It is working perfectly fine. Board has 8MB AMD flash and starting address of that flash is 0xBFC0 (reset vector for MIPS). Problem is that we are not able to access full 8MB of flash. Only 0xBFC0 - 0x

Re: [U-Boot] Add md5sum and sha1 commands...

2009-07-25 Thread Mike Frysinger
On Saturday 25 July 2009 16:07:49 Robin Getz wrote: > --- a/common/cmd_mem.c > +++ b/common/cmd_mem.c > @@ -34,6 +34,14 @@ > #endif > #include > > +#ifdef CONFIG_CMD_MD5SUM > +#include > +#endif > + > +#ifdef CONFIG_CMD_SHA1 > +#include > +#endif i dont think there would be a problem just inc

Re: [U-Boot] [PATCH/RFC] net: defragment IP packets

2009-07-25 Thread Jerry Van Baren
Robin Getz wrote: > On Fri 24 Jul 2009 04:04, Alessandro Rubini pondered: >> This patch add a quick and dirty defrag step in IP reception. This >> allows to increase the TFTP block size and get more performance in >> slow links (but at that point it should be made configurable). >> >> The overhead

Re: [U-Boot] [PATCH/RFC] net: defragment IP packets

2009-07-25 Thread Robin Getz
On Fri 24 Jul 2009 04:04, Alessandro Rubini pondered: > This patch add a quick and dirty defrag step in IP reception. This > allows to increase the TFTP block size and get more performance in > slow links (but at that point it should be made configurable). > > The overhead is negligible, verified

Re: [U-Boot] [PATCH] Add inverted clock polarity support for Atmel LCD driver

2009-07-25 Thread Anatolij Gustschin
Anatolij Gustschin wrote: > Dimitar Dimitrov wrote: >> This is my third try for Olimex SAM9-L9260/61 board support patches. >> >> Here follows the first patch. >> --- >> >> Boards utilizing the Atmel LCD driver can now specify that the LCD clock must >> be inverted by defining the macro CONFIG_LCD

[U-Boot] Add md5sum and sha1 commands...

2009-07-25 Thread Robin Getz
From: Robin Getz Now that we have sha1 and md5 in lib_generic, allow people to use them on the command line, for checking downloaded files Signed-off-by: Robin Getz README |4 ++ common/cmd_mem.c | 73 + 2 files changed, 77 insertion