From patchwork Thu Nov 10 13:49:41 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: loic.minier@linaro.org X-Patchwork-Id: 5028 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 3E67523E06 for ; Thu, 10 Nov 2011 13:52:57 +0000 (UTC) Received: from mail-fx0-f52.google.com (mail-fx0-f52.google.com [209.85.161.52]) by fiordland.canonical.com (Postfix) with ESMTP id 2DF18A18935 for ; Thu, 10 Nov 2011 13:52:57 +0000 (UTC) Received: by faan26 with SMTP id n26so4026624faa.11 for ; Thu, 10 Nov 2011 05:52:56 -0800 (PST) Received: by 10.152.162.10 with SMTP id xw10mr4468290lab.12.1320933176688; Thu, 10 Nov 2011 05:52:56 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.152.40.7 with SMTP id t7cs5323lak; Thu, 10 Nov 2011 05:52:56 -0800 (PST) Received: by 10.216.134.209 with SMTP id s59mr722689wei.62.1320933174470; Thu, 10 Nov 2011 05:52:54 -0800 (PST) Received: from pig2.dooz.org (pig2.dooz.org. [88.191.118.219]) by mx.google.com with ESMTPS id s53si4650194wec.19.2011.11.10.05.52.53 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 10 Nov 2011 05:52:54 -0800 (PST) Received-SPF: pass (google.com: domain of lool@bee.dooz.org designates 88.191.118.219 as permitted sender) client-ip=88.191.118.219; Authentication-Results: mx.google.com; spf=pass (google.com: domain of lool@bee.dooz.org designates 88.191.118.219 as permitted sender) smtp.mail=lool@bee.dooz.org Received: from bee.dooz.org (unknown [IPv6:2a01:e35:8a6e:5e80:224:7eff:fe14:65c3]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "bee.dooz.org", Issuer "dooz.org CA" (verified OK)) by pig2.dooz.org (Postfix) with ESMTPS id 8ACC5C0A03; Thu, 10 Nov 2011 14:52:53 +0100 (CET) Received: by bee.dooz.org (Postfix, from userid 1000) id 059DF1079; Thu, 10 Nov 2011 14:52:53 +0100 (CET) From: =?UTF-8?q?Lo=C3=AFc=20Minier?= To: u-boot@lists.denx.de Cc: =?UTF-8?q?Lo=C3=AFc=20Minier?= , patches@linaro.org Subject: [PATCH 1/2] Build u-boot.imx by default when board uses it Date: Thu, 10 Nov 2011 14:49:41 +0100 Message-Id: <1320932982-19967-2-git-send-email-loic.minier@linaro.org> X-Mailer: git-send-email 1.7.7.1 In-Reply-To: <1320932982-19967-1-git-send-email-loic.minier@linaro.org> References: <1320932982-19967-1-git-send-email-loic.minier@linaro.org> MIME-Version: 1.0 Signed-off-by: Loïc Minier Acked-by: Stefano Babic --- Makefile | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index 294c762..0ccc3bf 100644 --- a/Makefile +++ b/Makefile @@ -365,6 +365,10 @@ ALL-$(CONFIG_MMC_U_BOOT) += $(obj)mmc_spl/u-boot-mmc-spl.bin ALL-$(CONFIG_SPL) += $(obj)spl/u-boot-spl.bin ALL-$(CONFIG_OF_SEPARATE) += $(obj)u-boot.dtb $(obj)u-boot-dtb.bin +ifneq ($(CONFIG_IMX_CONFIG),) +ALL-y += $(obj)u-boot.imx +endif + all: $(ALL-y) $(SUBDIR_EXAMPLES) $(obj)u-boot.dtb: $(obj)u-boot