From patchwork Tue Oct 7 13:21:02 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ian Campbell X-Patchwork-Id: 397334 X-Patchwork-Delegate: promsoft@gmail.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id D9B8314009B for ; Wed, 8 Oct 2014 01:29:20 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 067A9A7433; Tue, 7 Oct 2014 16:29:15 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id rRNbtAWWyZjs; Tue, 7 Oct 2014 16:29:14 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 70BF6A7440; Tue, 7 Oct 2014 16:29:10 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 95D634B61E for ; Tue, 7 Oct 2014 15:31:47 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id BA+cy1jtwDGL for ; Tue, 7 Oct 2014 15:31:47 +0200 (CEST) X-Greylist: delayed 648 seconds by postgrey-1.32 at theia; Tue, 07 Oct 2014 15:31:43 CEST X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from SMTP02.CITRIX.COM (smtp02.citrix.com [66.165.176.63]) by theia.denx.de (Postfix) with ESMTPS id 11A314B61C for ; Tue, 7 Oct 2014 15:31:43 +0200 (CEST) X-IronPort-AV: E=Sophos;i="5.04,670,1406592000"; d="scan'208";a="180073316" Received: from ukmail1.uk.xensource.com (10.80.16.128) by smtprelay.citrix.com (10.13.107.78) with Microsoft SMTP Server id 14.3.181.6; Tue, 7 Oct 2014 09:21:07 -0400 Received: from kazak.uk.xensource.com ([10.80.2.80] helo=zakaz.uk.xensource.com) by ukmail1.uk.xensource.com with smtp (Exim 4.69) (envelope-from ) id 1XbUhK-0001Bn-GD; Tue, 07 Oct 2014 14:21:03 +0100 Received: by zakaz.uk.xensource.com (sSMTP sendmail emulation); Tue, 07 Oct 2014 14:21:02 +0100 From: Ian Campbell To: , Minkyu Kang Date: Tue, 7 Oct 2014 14:21:02 +0100 Message-ID: <1412688062-29878-1-git-send-email-ian.campbell@citrix.com> X-Mailer: git-send-email 2.1.0 MIME-Version: 1.0 X-DLP: MIA1 X-Mailman-Approved-At: Tue, 07 Oct 2014 16:29:07 +0200 Cc: Ian Campbell Subject: [U-Boot] [PATCH] arndale: Increase command line buffer size (CONFIG_SYS_CBSIZE) X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.13 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de I was running into this limit with a not overly long PXE append line. Since the PXE code wants to print the resulting command line increase CONFIG_SYS_PBSIZE too. Signed-off-by: Ian Campbell --- include/configs/arndale.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/configs/arndale.h b/include/configs/arndale.h index f702b6e..adc3eaa 100644 --- a/include/configs/arndale.h +++ b/include/configs/arndale.h @@ -116,8 +116,8 @@ /* Miscellaneous configurable options */ #define CONFIG_SYS_PROMPT "ARNDALE # " -#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */ -#define CONFIG_SYS_PBSIZE 384 /* Print Buffer Size */ +#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */ +#define CONFIG_SYS_PBSIZE 1024 /* Print Buffer Size */ #define CONFIG_SYS_MAXARGS 16 /* max number of command args */ #define CONFIG_DEFAULT_CONSOLE "console=ttySAC2,115200n8\0" /* Boot Argument Buffer Size */