From 4526f431d70256e1948d36f1384853cfe7a812f0 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Sat, 13 Nov 2010 00:10:35 +0000 Subject: [PATCH] [bzimage] Increase maximum command-line size to 0x7ff Signed-off-by: Michael Brown --- src/arch/i386/include/bzimage.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arch/i386/include/bzimage.h b/src/arch/i386/include/bzimage.h index ccf8e353..7e42e318 100644 --- a/src/arch/i386/include/bzimage.h +++ b/src/arch/i386/include/bzimage.h @@ -137,6 +137,6 @@ struct bzimage_cmdline { #define BZI_STACK_SIZE 0x1000 /** Maximum size of command line */ -#define BZI_CMDLINE_SIZE 0x100 +#define BZI_CMDLINE_SIZE 0x7ff #endif /* _BZIMAGE_H */