aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMichael Scott <michael.scott@linaro.org>2014-09-24 11:03:59 -0700
committerRob Herring <robh@kernel.org>2014-11-14 15:24:51 -0600
commitcf2482a7b4025234e8d29a4ba5955d6d231f59cd (patch)
tree8776719c90ef7b46ea27d1ea73f059310537cc0d /include
parentc43fd23cf619856b0763a64a6a3bcf3663058c49 (diff)
tegra: raise CONFIG_SYS_CBSIZE from 512 to 1024 bytes
Due to this change in common/cmd_pxe.c: http://git.denx.de/cgi-bin/gitweb.cgi?p=u-boot.git;a=commit;h=b1ba62d4ae970a2da00371670a2c909f139d0f80 The resulting cmdline passed to the kernel was being truncated to the length of CONFIG_SYS_CBSIZE (512 bytes at the time). This was causing boot errors on Jetson where the total length was 703 bytes (as set by Nvidia) Signed-off-by: Michael Scott <michael.scott@linaro.org>
Diffstat (limited to 'include')
-rw-r--r--include/configs/tegra-common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/tegra-common.h b/include/configs/tegra-common.h
index 834b3d5686..ed80b45bfe 100644
--- a/include/configs/tegra-common.h
+++ b/include/configs/tegra-common.h
@@ -105,7 +105,7 @@
* Increasing the size of the IO buffer as default nfsargs size is more
* than 256 and so it is not possible to edit it
*/
-#define CONFIG_SYS_CBSIZE (256 * 2) /* Console I/O Buffer Size */
+#define CONFIG_SYS_CBSIZE (512 * 2) /* Console I/O Buffer Size */
/* Print Buffer Size */
#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
sizeof(CONFIG_SYS_PROMPT) + 16)