From: T Karthik Reddy Date: Tue, 5 May 2020 14:14:28 +0000 (-0600) Subject: arm64: zynqmp: Reduce console buffer size X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=052451c10b281f17e2ab0334f071810439faf1a4;p=u-boot.git arm64: zynqmp: Reduce console buffer size Reduce console buffer size to 1kbyte to accommodate memory allocations in mini u-boot for zynqmp. Signed-off-by: T Karthik Reddy Signed-off-by: Michal Simek --- diff --git a/include/configs/xilinx_zynqmp_mini.h b/include/configs/xilinx_zynqmp_mini.h index ae751aa395..3f57423b78 100644 --- a/include/configs/xilinx_zynqmp_mini.h +++ b/include/configs/xilinx_zynqmp_mini.h @@ -24,5 +24,7 @@ /* BOOTP options */ #undef CONFIG_BOOTP_BOOTFILESIZE #undef CONFIG_BOOTP_MAY_FAIL +#undef CONFIG_SYS_CBSIZE +#define CONFIG_SYS_CBSIZE 1024 #endif /* __CONFIG_ZYNQMP_MINI_H */