From patchwork Thu Sep 26 20:28:01 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Rini X-Patchwork-Id: 278263 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 688E92C00A4 for ; Fri, 27 Sep 2013 06:30:32 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 26C804A0BB; Thu, 26 Sep 2013 22:30:00 +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 ZS3i84Udwe02; Thu, 26 Sep 2013 22:30:00 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id C36184A0D2; Thu, 26 Sep 2013 22:29:00 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 556FF4A09B for ; Thu, 26 Sep 2013 22:28:43 +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 SzYXW6eAsLev for ; Thu, 26 Sep 2013 22:28:38 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 BL_NJABL=ERR(-1.5) (only DNSBL check requested) Received: from mail-qa0-f52.google.com (mail-qa0-f52.google.com [209.85.216.52]) by theia.denx.de (Postfix) with ESMTPS id 6CBE74A0A2 for ; Thu, 26 Sep 2013 22:28:17 +0200 (CEST) Received: by mail-qa0-f52.google.com with SMTP id k4so1187826qaq.11 for ; Thu, 26 Sep 2013 13:28:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references; bh=nNzo2LlxhPtjSQD5BCzhlfjMWIjDtwnyKDjzaHFPzpg=; b=nQT4iJ9kqHSBFAjLCPWbpBKeA/04X9Z1ePl1viUd2gy3PzYJRARk5rTd9R3AmrfIgy UlnFh/+co/hb+XhPWdp+iXHKL96JjJiUdlwplo4vtpVNOFMaO1kM6QRfsqD+Ev/+XwOp tDFOsb3XrT4WSrkoTmDzKaofza45QweMihXhQO88WvpQ4zapo6WsTjGP3bC6LiKiZGIC jammoM9L0bvKpHLbYMUsGT6JzLN4EtAiT1io9oMVis8oljpPr1GNSStP0vhbWtKJ/Gnq kWzjaCGGDUnE9PGP9Dmmg5nxYJtGTVf9a2K0FohmxnRAdi+uBSEsWCrB9IoMnyXPlLHH v7Mw== X-Received: by 10.49.98.100 with SMTP id eh4mr4233348qeb.42.1380227296705; Thu, 26 Sep 2013 13:28:16 -0700 (PDT) Received: from localhost.localdomain (cpe-174-106-216-211.ec.res.rr.com. [174.106.216.211]) by mx.google.com with ESMTPSA id u4sm11180058qat.5.1969.12.31.16.00.00 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 26 Sep 2013 13:28:16 -0700 (PDT) From: Tom Rini To: u-boot@lists.denx.de Date: Thu, 26 Sep 2013 16:28:01 -0400 Message-Id: <1380227287-26057-6-git-send-email-trini@ti.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1380227287-26057-1-git-send-email-trini@ti.com> References: <1380227287-26057-1-git-send-email-trini@ti.com> Cc: Scott Wood Subject: [U-Boot] [PATCH 05/11] mtd: Build nand_util.o for CONFIG_ENV_IS_IN_NAND in SPL 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 Cc: Scott Wood Signed-off-by: Tom Rini --- drivers/mtd/nand/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mtd/nand/Makefile b/drivers/mtd/nand/Makefile index 366dee6..bb5b29d 100644 --- a/drivers/mtd/nand/Makefile +++ b/drivers/mtd/nand/Makefile @@ -24,6 +24,7 @@ COBJS-$(CONFIG_SPL_NAND_LOAD) += nand_spl_load.o COBJS-$(CONFIG_SPL_NAND_ECC) += nand_ecc.o COBJS-$(CONFIG_SPL_NAND_BASE) += nand_base.o COBJS-$(CONFIG_SPL_NAND_INIT) += nand.o +COBJS-$(CONFIG_ENV_IS_IN_NAND) += nand_util.o else # not spl