From patchwork Tue Aug 28 01:00:08 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tetsuyuki Kobayashi X-Patchwork-Id: 1378891 X-Patchwork-Delegate: horms@verge.net.au Return-Path: X-Original-To: patchwork-linux-sh@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 E3EF1DF280 for ; Tue, 28 Aug 2012 01:02:35 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1750936Ab2H1BCf (ORCPT ); Mon, 27 Aug 2012 21:02:35 -0400 Received: from vrgw8.firstserver.ne.jp ([164.46.1.106]:54519 "EHLO vrgw8.firstserver.ne.jp" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750894Ab2H1BCe (ORCPT ); Mon, 27 Aug 2012 21:02:34 -0400 Received: from fvrsp17.firstserver.ne.jp (fvrsp17.firstserver.ne.jp [203.183.56.3]) by vrgw8.firstserver.ne.jp (8.13.8/8.13.8/FirstServer) with ESMTP id q7S109cj014996; Tue, 28 Aug 2012 10:00:09 +0900 (envelope-from koba@kmckk.co.jp) Received: from 203.137.25.97 (203.137.25.97) by fvrsp17.firstserver.ne.jp (F-Secure/virusgw_smtp/407/fvrsp17.firstserver.ne.jp); Tue, 28 Aug 2012 10:00:09 +0900 (JST) X-Virus-Status: clean(F-Secure/virusgw_smtp/407/fvrsp17.firstserver.ne.jp) Received: from [192.168.177.31] (l203116.ppp.asahi-net.or.jp [218.219.203.116]) (authenticated (0 bits)) by mail.kmckk.co.jp (8.14.3/8.11.3) with ESMTP id q7S108N4032228; Tue, 28 Aug 2012 10:00:08 +0900 Message-ID: <503C1818.7020402@kmckk.co.jp> Date: Tue, 28 Aug 2012 10:00:08 +0900 From: Tetsuyuki Kobayashi User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:14.0) Gecko/20120713 Thunderbird/14.0 MIME-Version: 1.0 To: Stephen Boyd CC: Simon Horman , Arnd Bergmann , Olof Johansson , arm@kernel.org, Kuninori Morimoto , linux-sh@vger.kernel.org, Magnus Damm , Paul Mundt , Nobuhiro Iwamatsu , linux-arm-kernel@lists.infradead.org Subject: Re: [PATCH] ARM: mach-shmobile: Add compilation support for dtbs using 'make dtbs' References: <1346113322-21133-1-git-send-email-horms@verge.net.au> <1346113322-21133-2-git-send-email-horms@verge.net.au> <503C1059.10300@codeaurora.org> In-Reply-To: <503C1059.10300@codeaurora.org> Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org Simon-san, (2012/08/28 9:27), Stephen Boyd wrote: > On 8/27/2012 5:22 PM, Simon Horman wrote: >> +dtb-$(CONFIG_MACH_KZM9D) += emev2-kzm9d.dts >> +dtb-$(CONFIG_MACH_ARMADILLO800EVA) += r8a7740-armadillo800eva.dts > > Shouldn't these be dtb instead of dts? > Please use my v2 patch. I paste v2 patch here. (It was posted on 2012/07/23) -- 1.7.9.5 --- To unsubscribe from this list: send the line "unsubscribe linux-sh" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html ============================================================== From: Tetsuyuki Kobayashi Add compilation support for dtbs using 'make dtbs' Cc: Nobuhiro Iwamatsu Cc: Kuninori Morimoto Cc: Simon Horman Signed-off-by: Tetsuyuki Kobayashi --- Sorry, I found mistake. it should be dtb insted of dts. Changes for v2 - replace dts to dtb in the 3rd and 4th line of patch. arch/arm/mach-shmobile/Makefile.boot | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/arch/arm/mach-shmobile/Makefile.boot b/arch/arm/mach-shmobile/Makefile.boot index 498efd9..5e41019 100644 --- a/arch/arm/mach-shmobile/Makefile.boot +++ b/arch/arm/mach-shmobile/Makefile.boot @@ -7,3 +7,7 @@ __ZRELADDR := $(shell /bin/bash -c 'printf "0x%08x" \ # #params_phys-y (Instead: Pass atags pointer in r2) #initrd_phys-y (Instead: Use compiled-in initramfs) + +dtb-$(CONFIG_MACH_KZM9G) += sh73a0-kzm9g.dtb +dtb-$(CONFIG_MACH_KZM9D) += emev2-kzm9d.dtb +dtb-$(CONFIG_MACH_ARMADILLO800EVA) += r8a7740-armadillo800eva.dtb