From patchwork Wed Jul 4 02:02:47 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Warren X-Patchwork-Id: 168866 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 BD9E22C0089 for ; Wed, 4 Jul 2012 12:03:37 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id BAFA528103; Wed, 4 Jul 2012 04:03:25 +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 k8GAnbJWIjr5; Wed, 4 Jul 2012 04:03:25 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 96881280F0; Wed, 4 Jul 2012 04:03:12 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 6D420280C4 for ; Wed, 4 Jul 2012 04:03:08 +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 DKPuRun-CBE3 for ; Wed, 4 Jul 2012 04:03:08 +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 avon.wwwdotorg.org (avon.wwwdotorg.org [70.85.31.133]) by theia.denx.de (Postfix) with ESMTPS id 9165A280C6 for ; Wed, 4 Jul 2012 04:03:07 +0200 (CEST) Received: from severn.wwwdotorg.org (unknown [192.168.65.5]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by avon.wwwdotorg.org (Postfix) with ESMTPS id 723106492; Tue, 3 Jul 2012 20:07:35 -0600 (MDT) Received: from dart.wwwdotorg.org.wwwdotorg.org (c-98-245-172-142.hsd1.co.comcast.net [98.245.172.142]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by severn.wwwdotorg.org (Postfix) with ESMTPSA id 10DE2E4100; Tue, 3 Jul 2012 20:03:04 -0600 (MDT) From: Stephen Warren To: albert.u.boot@aribaud.net Date: Tue, 3 Jul 2012 20:02:47 -0600 Message-Id: <1341367375-11467-5-git-send-email-swarren@wwwdotorg.org> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1341367375-11467-1-git-send-email-swarren@wwwdotorg.org> References: <1341367375-11467-1-git-send-email-swarren@wwwdotorg.org> X-NVConfidentiality: public X-Virus-Scanned: clamav-milter 0.96.5 at avon.wwwdotorg.org X-Virus-Status: Clean Cc: u-boot@lists.denx.de, Oleksandr Tymoshenko , linux-rpi-kernel@lists.infradead.org Subject: [U-Boot] [PATCH 04/12] ARM: rpi_b: include config_cmd_default.h 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 This enables a more typical default set of commands. Remove explicit enables for commands already in the default list. Signed-off-by: Stephen Warren --- include/configs/rpi_b.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/include/configs/rpi_b.h b/include/configs/rpi_b.h index a8883d3..9268efb 100644 --- a/include/configs/rpi_b.h +++ b/include/configs/rpi_b.h @@ -80,7 +80,11 @@ #define CONFIG_AUTO_COMPLETE /* Commands */ -#define CONFIG_CMD_MEMORY -#define CONFIG_CMD_MISC +#include "config_cmd_default.h" +/* Some things don't make sense on this HW or yet */ +#undef CONFIG_CMD_FPGA +#undef CONFIG_CMD_NET +#undef CONFIG_CMD_NFS +#undef CONFIG_CMD_SAVEENV #endif