Re: [U-Boot] [PATCH v3 3/3] exynos: Increase command line buffer size (CONFIG_SYS_CBSIZE)

2014-11-10 Thread Simon Glass
On 9 November 2014 03:44, Ian Campbell i...@hellion.org.uk wrote: From: Ian Campbell ian.campb...@citrix.com I was running into this limit with a not overly long PXE append line. Since the PXE code wants to print the resulting command line increase CONFIG_SYS_PBSIZE too. Signed-off-by: Ian

Re: [U-Boot] [PATCH v3 3/3] exynos: Increase command line buffer size (CONFIG_SYS_CBSIZE)

2014-11-10 Thread Fabio Estevam
On Sun, Nov 9, 2014 at 8:44 AM, Ian Campbell i...@hellion.org.uk wrote: /* Miscellaneous configurable options */ -#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */ -#define CONFIG_SYS_PBSIZE 384 /* Print Buffer Size */ +#define CONFIG_SYS_CBSIZE

[U-Boot] [PATCH v3 3/3] exynos: Increase command line buffer size (CONFIG_SYS_CBSIZE)

2014-11-09 Thread Ian Campbell
From: Ian Campbell ian.campb...@citrix.com I was running into this limit with a not overly long PXE append line. Since the PXE code wants to print the resulting command line increase CONFIG_SYS_PBSIZE too. Signed-off-by: Ian Campbell ian.campb...@citrix.com --- v2: Apply to exynos generally