diff options
author | Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi> | 2018-03-05 23:20:41 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-03-09 09:23:10 -0500 |
commit | b771f0b1260749ec83ad3365c926956d1fee61ff (patch) | |
tree | e346d408b877ef8b95515ca09e682de1b7b9ef1f /include/configs/qemu-arm.h | |
parent | 5e62f828256d66e2b28def4f9ef20a2a05c2d04f (diff) | |
download | u-boot-b771f0b1260749ec83ad3365c926956d1fee61ff.tar.gz |
ARM: qemu-arm: Increase CONFIG_SYS_CBSIZE
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>
Diffstat (limited to 'include/configs/qemu-arm.h')
-rw-r--r-- | include/configs/qemu-arm.h | 2 |
1 files changed, 2 insertions, 0 deletions
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 */ |