ANDROID: arch:arm64: Increase kernel command line size

Android passes a lot of arguments via kernel command line.
Current kernel command line is close to limit on a lot of devices.

Increase kernel command line size to avoid cases when arguments
are trimmed.

Bug: 120817253
Change-Id: I18fc3a066273718fce021d85ca31e3f755706a13
Signed-off-by: Syuan Yang <syuanyang@google.com>
This commit is contained in:
Syuan Yang 2018-12-11 16:58:04 +08:00 committed by Saravana Kannan
parent 929c31bb5a
commit c61a8f9524

View File

@ -22,6 +22,6 @@
#include <linux/types.h>
#define COMMAND_LINE_SIZE 2048
#define COMMAND_LINE_SIZE 4096
#endif