From patchwork Sun Aug 11 14:40:43 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sascha Silbe X-Patchwork-Id: 266330 X-Patchwork-Delegate: agust@denx.de 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 7F8462C008F for ; Mon, 12 Aug 2013 00:41:55 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 17A5D4A04B; Sun, 11 Aug 2013 16:41:46 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de 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 vixB+1OH2jba; Sun, 11 Aug 2013 16:41:45 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 4A5F44A053; Sun, 11 Aug 2013 16:41:34 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 865D84A030 for ; Sun, 11 Aug 2013 16:41:24 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de 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 xA+GkTuii+t1 for ; Sun, 11 Aug 2013 16:41:23 +0200 (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 b.mx.chost.de (b.mx.chost.de [87.106.8.89]) by theia.denx.de (Postfix) with ESMTPS id 3C5874A039 for ; Sun, 11 Aug 2013 16:41:20 +0200 (CEST) Received: from sshgate.chost.de (sshgate.chost.de [::ffff:87.106.80.19]) by b.mx.chost.de with esmtp; Sun, 11 Aug 2013 16:41:14 +0200 id 0A6575CD.5207A28A.00003FD8 Received: by sshgate.chost.de (sSMTP sendmail emulation); Sun, 11 Aug 2013 16:41:14 +0200 Received: (nullmailer pid 18853 invoked by uid 8193); Sun, 11 Aug 2013 14:41:09 -0000 From: Sascha Silbe To: u-boot@lists.denx.de Date: Sun, 11 Aug 2013 16:40:43 +0200 Message-Id: <1376232045-18757-2-git-send-email-t-uboot@infra-silbe.de> X-Mailer: git-send-email 1.8.3.2 In-Reply-To: <1376232045-18757-1-git-send-email-t-uboot@infra-silbe.de> References: <20130715121957.GX13531@bill-the-cat> <1376232045-18757-1-git-send-email-t-uboot@infra-silbe.de> Cc: Shaohui Xie , Otavio Salvador , Tom Rini Subject: [U-Boot] [PATCH 1/3] README: document CONFIG_BOARD_SIZE_LIMIT X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.11 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de CONFIG_BOARD_SIZE_LIMIT was introduced by f3a14d37 [Makefile: allow boards to check file size limits] and is in use by several boards, but never got documented. Signed-off-by: Sascha Silbe --- README | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README b/README index a5c3e8d..760c417 100644 --- a/README +++ b/README @@ -3843,6 +3843,11 @@ use the "saveenv" command to store a valid environment. later, once stdio is running and output goes to the LCD, if present. +- CONFIG_BOARD_SIZE_LIMIT: + Maximum size of the U-Boot image. When defined, the + build system checks that the actual size does not + exceed it. + Low Level (hardware related) configuration options: ---------------------------------------------------