From patchwork Thu Aug 23 16:51:29 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Olof Johansson X-Patchwork-Id: 1368331 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork2.kernel.org (Postfix) with ESMTP id 8CDC4DF2AB for ; Thu, 23 Aug 2012 16:54:57 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1T4adF-0003lD-JA; Thu, 23 Aug 2012 16:51:45 +0000 Received: from mail-pb0-f49.google.com ([209.85.160.49]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1T4ad9-0003kU-D5 for linux-arm-kernel@lists.infradead.org; Thu, 23 Aug 2012 16:51:41 +0000 Received: by pbbrq8 with SMTP id rq8so1826105pbb.36 for ; Thu, 23 Aug 2012 09:51:36 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:x-gm-message-state; bh=mxeddLyHPTRbgjeG+Vzp2+Ex5hvS9BbDtpAAr4xPHfE=; b=beEvLU370gfXVpJm/otPfc7fmka9YrpHtTn/OJa9x19+lfZBlpQQOOZDZAVeuCim+U m77kqkMxtL9+JgxPP3Mq2LFi3792VUszGe8ODWs+8HJwQvpPhg6SseCptoS4S/HkKx4X 6iOBLVASogYdaZfFM3SJTQubMS8o+bQuw1yYvhM/Eb8Gr40i8IlgEffHzhhtg542tZ19 2QK43KA78gnM76h55S/uTRj0R8K7CmCSY6TBr41ohG2LISe7nDA/+oHdinxGBnRw/5Bz zBOUCGlPbdT5vjnZu53IJKl3lWOCzhNmH5IbbhqaP+x6JrUQn4ZxcqSvQRyjAaK+lSIL p3WQ== Received: by 10.68.235.41 with SMTP id uj9mr6238283pbc.41.1345740695979; Thu, 23 Aug 2012 09:51:35 -0700 (PDT) Received: from quad.lixom.net (173-13-129-225-sfba.hfc.comcastbusiness.net. [173.13.129.225]) by mx.google.com with ESMTPS id uu6sm6325217pbc.70.2012.08.23.09.51.34 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 23 Aug 2012 09:51:35 -0700 (PDT) From: Olof Johansson To: Tony Lindgren Subject: [PATCH] ARM: omap: add dtb targets Date: Thu, 23 Aug 2012 09:51:29 -0700 Message-Id: <1345740689-21676-1-git-send-email-olof@lixom.net> X-Mailer: git-send-email 1.7.10.1.488.g05fbf7a X-Gm-Message-State: ALoCoQki86n1VnOZiQXY1H93y6p17kTkuO0s6i2Gbu9oZXrBXcCGeqJ0srH8TsVKjc+5Erc+Y6HG X-Spam-Note: CRM114 invocation failed X-Spam-Score: -2.6 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.6 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.160.49 listed in list.dnswl.org] -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: Olof Johansson , linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org Makes it easier to just do 'make dtbs' for whatever the kernel was configured for, just like some other platforms. Signed-off-by: Olof Johansson --- arch/arm/mach-omap2/Makefile.boot | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/arch/arm/mach-omap2/Makefile.boot b/arch/arm/mach-omap2/Makefile.boot index b03e562..6cf1c2d 100644 --- a/arch/arm/mach-omap2/Makefile.boot +++ b/arch/arm/mach-omap2/Makefile.boot @@ -1,3 +1,9 @@ zreladdr-y += 0x80008000 params_phys-y := 0x80000100 initrd_phys-y := 0x80800000 + +dtb-$(CONFIG_SOC_OMAP2420) += omap2420-h4.dtb +dtb-$(CONFIG_ARCH_OMAP3) += omap3-beagle.dtb omap3-evm.dtb +dtb-$(CONFIG_ARCH_OMAP4) += omap4-panda.dtb omap4-pandaES.dtb +dtb-$(CONFIG_ARCH_OMAP4) += omap4-var_som.dtb omap4-sdp.dtb +dtb-$(CONFIG_SOC_OMAP5) += omap5-evm.dtb