diff mbox series

[U-Boot] ARM: qemu-arm: Increase CONFIG_SYS_CBSIZE

Message ID 20180305212041.3645-1-tuomas.tynkkynen@iki.fi
State Accepted
Commit b771f0b1260749ec83ad3365c926956d1fee61ff
Delegated to: Tom Rini
Headers show
Series [U-Boot] ARM: qemu-arm: Increase CONFIG_SYS_CBSIZE | expand

Commit Message

Tuomas Tynkkynen March 5, 2018, 9:20 p.m. UTC
CONFIG_SYS_CBSIZE determines the maximum length of the kernel command
line, and the default value of 256 is too small for booting some Linux
images in the wild.

Signed-off-by: Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>
--
Hoping to get this in 2018.03.
---
 include/configs/qemu-arm.h | 2 ++
 1 file changed, 2 insertions(+)

Comments

Tom Rini March 9, 2018, 6:28 p.m. UTC | #1
On Mon, Mar 05, 2018 at 11:20:41PM +0200, Tuomas Tynkkynen wrote:

> CONFIG_SYS_CBSIZE determines the maximum length of the kernel command
> line, and the default value of 256 is too small for booting some Linux
> images in the wild.
> 
> Signed-off-by: Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/include/configs/qemu-arm.h b/include/configs/qemu-arm.h
index c968aa76ac..839bc10a18 100644
--- a/include/configs/qemu-arm.h
+++ b/include/configs/qemu-arm.h
@@ -47,4 +47,6 @@ 
 	"ramdisk_addr_r=0x44000000\0" \
 	BOOTENV
 
+#define CONFIG_SYS_CBSIZE 512
+
 #endif /* __CONFIG_H */