From patchwork Mon Feb 16 12:14:45 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marcel Ziswiler X-Patchwork-Id: 440120 X-Patchwork-Delegate: trini@ti.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 83E7C140213 for ; Tue, 17 Feb 2015 00:44:23 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 4594A4B875; Mon, 16 Feb 2015 14:44:11 +0100 (CET) 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 lowZ1QsLRUeE; Mon, 16 Feb 2015 14:44:11 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 186BDA741C; Mon, 16 Feb 2015 14:43:45 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 068084B666 for ; Mon, 16 Feb 2015 13:23:31 +0100 (CET) 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 mnTtig-m_D1f for ; Mon, 16 Feb 2015 13:23:30 +0100 (CET) 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 mout.perfora.net (mout.perfora.net [74.208.4.194]) by theia.denx.de (Postfix) with ESMTPS id 90C0F4B660 for ; Mon, 16 Feb 2015 13:23:30 +0100 (CET) Received: from localhost.localdomain (46-140-72-82.static.cablecom.ch [46.140.72.82]) by mrelay.perfora.net (node=mreueus001) with ESMTP (Nemesis) id 0LfzPZ-1Xm4n83qrj-00pbZ7; Mon, 16 Feb 2015 13:17:52 +0100 From: Marcel Ziswiler To: u-boot@lists.denx.de Date: Mon, 16 Feb 2015 13:14:45 +0100 Message-Id: X-Mailer: git-send-email 1.9.3 In-Reply-To: References: X-Provags-ID: V02:K0:+y4Nk3tNQbgTqSdLfBQ5uDw789ffMCUIotJ5nn+6qPH vLNnPSvUZ9A8eY4r6fODoOKVF7ZTi0SBJcltt71OcIZkGPOh1X v6PKmJ653YP7hPYW1nxZO2xXr7hfRNRcfFSeukHAFFoeihHlfu /intUEiAHptfmCKcZtKcpwH49Pp2CwwN/lk1s/3DZ/PCrZZyzp 5rABTvow8LEpRLJJlCNweq+SvLG+Y7FW+o2p2QDvrjLejcKD9Y s30KoY7TpFgzM7MOAc1HRztAqmYcrfcTDUBpcTdm1Lh5dA7yrQ NlKu8DvXkZO46kSxbBq86RubXHAL5iDKKw4XdhdwW7dBn3KDzh vreB+egdj5l0NqEmaY6gsl9bgPnfYjgu4qXM2SMGnfIho3NMVI 7y0TOk0BtObtvArjEeMACu7zsTjIQBkiAwUU5JNTZw678VxWsn EF1/0Jtvz4EvYwrbM9n8m+OdqeA== X-UI-Out-Filterresults: notjunk:1; X-Mailman-Approved-At: Mon, 16 Feb 2015 14:43:19 +0100 Cc: "Kang , Marcel Ziswiler Subject: [U-Boot] [PATCH 07/12] pxa: colibri_pxa270: disable loadb/s commands and long help X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" To save more than 20 KB of precious space in NOR flash get rid of the following configuration options: CONFIG_CMD_LOADB CONFIG_CMD_LOADS CONFIG_SYS_LONGHELP Signed-off-by: Marcel Ziswiler --- include/configs/colibri_pxa270.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/configs/colibri_pxa270.h b/include/configs/colibri_pxa270.h index bb48419..c2714f7 100644 --- a/include/configs/colibri_pxa270.h +++ b/include/configs/colibri_pxa270.h @@ -52,6 +52,8 @@ */ #include +#undef CONFIG_CMD_LOADB /* Both together */ +#undef CONFIG_CMD_LOADS /* saves 10 KB */ #define CONFIG_CMD_NET #define CONFIG_CMD_ENV #undef CONFIG_CMD_IMLS @@ -84,7 +86,7 @@ */ #define CONFIG_SYS_HUSH_PARSER 1 -#define CONFIG_SYS_LONGHELP +#undef CONFIG_SYS_LONGHELP /* Saves 10 KB */ #ifdef CONFIG_SYS_HUSH_PARSER #define CONFIG_SYS_PROMPT "$ " #else