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: 1368311 Return-Path: X-Original-To: patchwork-linux-omap@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 5E1D5DF2AB for ; Thu, 23 Aug 2012 16:51:38 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751767Ab2HWQvh (ORCPT ); Thu, 23 Aug 2012 12:51:37 -0400 Received: from mail-pb0-f46.google.com ([209.85.160.46]:61821 "EHLO mail-pb0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750788Ab2HWQvg (ORCPT ); Thu, 23 Aug 2012 12:51:36 -0400 Received: by pbbrr13 with SMTP id rr13so1805504pbb.19 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=FG6Du3/6bHac5U7r1PzeVPRv8f6Sec9hzzf0G888OJXKrOGwFhuBo04C6EA+gZCIsc tzKomSiA7dsBPxtZp9j1Yr9Nsf5gVxGLLujTz/dWAnzH2U0mxEQ+ez2wt94oeS2ie0un 7867gahBbmkpe7/6G7mlYxNz9lpVwbkRagVF4s+3uJnm1UDszJSi7AicSnDptZOWMk5r HhnIUtFYU80B24xeFG7eaROBy1J9gh7zQz9LCaN0X/iCoylCFxD2RTu0kx7h4ti6/j57 LDRyTNqQ4Mzvtqy5n1qMMqB/6WMrMrSjG3VY+7llicDjWT4mJ4fbMjxAcJr4psyNei+u xHpw== 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 Cc: linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Olof Johansson 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: ALoCoQkReDcJZUmx9Hju/zYtV8t/Hen/5SaC6NxeLp4P44TMyJWp7VQYQzamV69VK0nD5+SkjjBU Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.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