From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Date: Mon, 14 Apr 2014 21:55:25 +1000 From: Anton Blanchard To: benh@kernel.crashing.org, paulus@samba.org Subject: [PATCH 3/3] powerpc: Bump BOOT_COMMAND_LINE_SIZE to 2048 Message-ID: <20140414215525.332667a6@kryten> In-Reply-To: <20140414215405.319725d5@kryten> References: <20140414215405.319725d5@kryten> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Cc: linuxppc-dev@lists.ozlabs.org List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Bump the boot wrapper BOOT_COMMAND_LINE_SIZE to match the kernel. Signed-off-by: Anton Blanchard --- We export this in an ELF section so userspace tools can edit it. We should be safe so long as we are only increasing it shouldn't we? Index: b/arch/powerpc/boot/ops.h =================================================================== --- a/arch/powerpc/boot/ops.h +++ b/arch/powerpc/boot/ops.h @@ -15,7 +15,7 @@ #include "types.h" #include "string.h" -#define BOOT_COMMAND_LINE_SIZE 512 +#define BOOT_COMMAND_LINE_SIZE 2048 #define MAX_PATH_LEN 256 #define MAX_PROP_LEN 256 /* What should this be? */