Re: [U-Boot] [PATCH] hwconfig: Move HWCONFIG_BUFFER_SIZE into hwconfig.h

2012-09-04 Thread York Sun
On 09/02/2012 05:43 AM, Wolfgang Denk wrote: Dear York Sun, In message 1345226412.6510.38.camel@oslab-l1 you wrote: On Fri, 2012-08-17 at 12:54 -0500, Kumar Gala wrote: On Aug 15, 2012, at 7:53 PM, York Sun wrote: Before proper environment is setup, we extract hwconfig and put it into a

Re: [U-Boot] [PATCH] hwconfig: Move HWCONFIG_BUFFER_SIZE into hwconfig.h

2012-09-02 Thread Wolfgang Denk
Dear York Sun, In message 1345226412.6510.38.camel@oslab-l1 you wrote: On Fri, 2012-08-17 at 12:54 -0500, Kumar Gala wrote: On Aug 15, 2012, at 7:53 PM, York Sun wrote: Before proper environment is setup, we extract hwconfig and put it into a buffer with size HWCONFIG_BUFFER_SIZE. We

Re: [U-Boot] [PATCH] hwconfig: Move HWCONFIG_BUFFER_SIZE into hwconfig.h

2012-08-17 Thread Kumar Gala
On Aug 15, 2012, at 7:53 PM, York Sun wrote: Before proper environment is setup, we extract hwconfig and put it into a buffer with size HWCONFIG_BUFFER_SIZE. We need to enlarge the buffer to accommodate longer string. Since this macro is used in multiple files, we move it into hwconfig.h.

Re: [U-Boot] [PATCH] hwconfig: Move HWCONFIG_BUFFER_SIZE into hwconfig.h

2012-08-17 Thread York Sun
On Fri, 2012-08-17 at 12:54 -0500, Kumar Gala wrote: On Aug 15, 2012, at 7:53 PM, York Sun wrote: Before proper environment is setup, we extract hwconfig and put it into a buffer with size HWCONFIG_BUFFER_SIZE. We need to enlarge the buffer to accommodate longer string. Since this macro

[U-Boot] [PATCH] hwconfig: Move HWCONFIG_BUFFER_SIZE into hwconfig.h

2012-08-15 Thread York Sun
Before proper environment is setup, we extract hwconfig and put it into a buffer with size HWCONFIG_BUFFER_SIZE. We need to enlarge the buffer to accommodate longer string. Since this macro is used in multiple files, we move it into hwconfig.h. Signed-off-by: York Sun york...@freescale.com ---