From patchwork Fri Apr 26 06:20:09 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dirk Eibach X-Patchwork-Id: 239684 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 0CEFE2C00DC for ; Fri, 26 Apr 2013 16:20:45 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 884D94A049; Fri, 26 Apr 2013 08:20:41 +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 ZRY55mw1kcJG; Fri, 26 Apr 2013 08:20:41 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id A39604A046; Fri, 26 Apr 2013 08:20:32 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 8CAA44A04C for ; Fri, 26 Apr 2013 08:20:29 +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 UKDGr3lvgizd for ; Fri, 26 Apr 2013 08:20:28 +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 smtprelay02.ispgateway.de (smtprelay02.ispgateway.de [80.67.31.29]) by theia.denx.de (Postfix) with ESMTP id 483434A047 for ; Fri, 26 Apr 2013 08:20:27 +0200 (CEST) Received: from [195.243.218.178] (helo=bob3.gd.local) by smtprelay02.ispgateway.de with esmtpa (Exim 4.68) (envelope-from ) id 1UVc1C-0007NH-Pd; Fri, 26 Apr 2013 08:20:26 +0200 From: Dirk Eibach To: u-boot@lists.denx.de Date: Fri, 26 Apr 2013 08:20:09 +0200 Message-Id: <1366957210-909-7-git-send-email-dirk.eibach@gdsys.cc> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <1366957210-909-1-git-send-email-dirk.eibach@gdsys.cc> References: <1366957210-909-1-git-send-email-dirk.eibach@gdsys.cc> X-Df-Sender: ZGlyay5laWJhY2hAZ2RzeXMuY2M= Cc: Kim Phillips , Kumar Gala , Andy Fleming , Dirk Eibach , trini@ti.com, Stefan Roese Subject: [U-Boot] [PATCH v2 6/7] powerpc: Build arch/powerpc/lib/bootm.o depending on CONFIG_CMD_BOOTM 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: Dirk Eibach Signed-off-by: Dirk Eibach Signed-off-by: Dirk Eibach --- Changes in v2: None arch/powerpc/lib/Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/powerpc/lib/Makefile b/arch/powerpc/lib/Makefile index 59c723b..8c4920b 100644 --- a/arch/powerpc/lib/Makefile +++ b/arch/powerpc/lib/Makefile @@ -63,7 +63,7 @@ ifndef CONFIG_SYS_GENERIC_BOARD COBJS-y += board.o endif endif -COBJS-y += bootm.o +COBJS-$(CONFIG_CMD_BOOTM) += bootm.o COBJS-y += cache.o COBJS-y += extable.o COBJS-y += interrupts.o