From patchwork Thu Aug 16 23:15:42 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephen Warren X-Patchwork-Id: 178121 X-Patchwork-Delegate: twarren@nvidia.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 AA13D2C0085 for ; Fri, 17 Aug 2012 09:16:00 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id D5A6328282; Fri, 17 Aug 2012 01:15:58 +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 qlKg3moABe3z; Fri, 17 Aug 2012 01:15:58 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 8484D28270; Fri, 17 Aug 2012 01:15:56 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id CAF2E28275 for ; Fri, 17 Aug 2012 01:15:54 +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 ZDk9kuWp6xao for ; Fri, 17 Aug 2012 01:15:54 +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 16C3628270 for ; Fri, 17 Aug 2012 01:15:52 +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 6E8E8644E; Thu, 16 Aug 2012 17:22:35 -0600 (MDT) Received: from localhost.localdomain (localhost [127.0.0.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by severn.wwwdotorg.org (Postfix) with ESMTPSA id 6B982E40F5; Thu, 16 Aug 2012 17:15:50 -0600 (MDT) From: Stephen Warren To: u-boot@lists.denx.de Date: Thu, 16 Aug 2012 17:15:42 -0600 Message-Id: <1345158942-31512-3-git-send-email-swarren@wwwdotorg.org> X-Mailer: git-send-email 1.7.0.4 In-Reply-To: <1345158942-31512-1-git-send-email-swarren@wwwdotorg.org> References: <1345158942-31512-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: Stephen Warren , Tom Warren Subject: [U-Boot] [PATCH 3/3] tegra: enable CONFIG_CMD_PARTUUID 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 From: Stephen Warren This is extremely likely to be used from the boot.scr that Tegra's default bootcmd locates and executes. Signed-off-by: Stephen Warren Acked-by: Simon Glass --- include/configs/tegra20-common-post.h | 5 +++++ include/configs/tegra20-common.h | 1 + 2 files changed, 6 insertions(+), 0 deletions(-) diff --git a/include/configs/tegra20-common-post.h b/include/configs/tegra20-common-post.h index 42f270f..b7bbc0c 100644 --- a/include/configs/tegra20-common-post.h +++ b/include/configs/tegra20-common-post.h @@ -209,6 +209,11 @@ #undef CONFIG_CMD_USB #endif +/* remove partuuid command support */ +#ifdef CONFIG_CMD_PARTUUID +#undef CONFIG_CMD_PARTUUID +#endif + #endif /* CONFIG_SPL_BUILD */ #endif /* __TEGRA20_COMMON_POST_H */ diff --git a/include/configs/tegra20-common.h b/include/configs/tegra20-common.h index c9e8b6b..c76eea4 100644 --- a/include/configs/tegra20-common.h +++ b/include/configs/tegra20-common.h @@ -113,6 +113,7 @@ /* include default commands */ #include +#define CONFIG_CMD_PARTUUID /* remove unused commands */ #undef CONFIG_CMD_FLASH /* flinfo, erase, protect */