From patchwork Wed Jun 5 07:07:28 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 2665591 Return-Path: X-Original-To: patchwork-linux-sh@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id A90BB40077 for ; Wed, 5 Jun 2013 07:00:03 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752460Ab3FEHAD (ORCPT ); Wed, 5 Jun 2013 03:00:03 -0400 Received: from mail-pd0-f181.google.com ([209.85.192.181]:36984 "EHLO mail-pd0-f181.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752388Ab3FEHAC (ORCPT ); Wed, 5 Jun 2013 03:00:02 -0400 Received: by mail-pd0-f181.google.com with SMTP id bv13so1380094pdb.26 for ; Wed, 05 Jun 2013 00:00:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:date:message-id:in-reply-to:references:subject; bh=Q0AZkQ8DftL/qC1IMy1tezAYA6wJ5/j+j2ZCAAvuRJI=; b=ziiar+gr1AoGZkvfo2FRQJISZ4CvJBaHnAoUCIEvcVcq5YV4rKmjOKv8wiK35LnYsc ldsUihx9KspRgoq/Mw3fuI1h+Kc0Gv/6m5YsLdTM/L0JlTsyuwcmk+mTkcWsVH1AYL7l yvVdajZjM5f3w0xvbPejAaqautvCx+Q2b02zidLjRkANZBup+0UabforTZLZq+dSAtZD 1iyT+YYEuUsz2zdGXla+X4+FCQkMAG8l8auuSuSGAPLe6gcKVdrkIypjvMU2xrAV0vxA 5yzqr2zGV95B2AtuxG12ssO4w/30BSZ9213BG6YV7+QUqjlVDINv0dn06rbo/EyAbCMQ 1NBg== X-Received: by 10.66.8.69 with SMTP id p5mr32586773paa.57.1370415601242; Wed, 05 Jun 2013 00:00:01 -0700 (PDT) Received: from [127.0.0.1] (49.14.32.202.bf.2iij.net. [202.32.14.49]) by mx.google.com with ESMTPSA id kr16sm71176899pab.23.2013.06.04.23.59.59 for (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 05 Jun 2013 00:00:00 -0700 (PDT) From: Magnus Damm To: linux-sh@vger.kernel.org Cc: arnd@arndb.de, horms@verge.net.au, laurent.pinchart@ideasonboard.com, olof@lixom.net, Magnus Damm , linux-arm-kernel@lists.infradead.org Date: Wed, 05 Jun 2013 16:07:28 +0900 Message-Id: <20130605070728.13311.22698.sendpatchset@w520> In-Reply-To: <20130605070616.13311.69049.sendpatchset@w520> References: <20130605070616.13311.69049.sendpatchset@w520> Subject: [PATCH 09/15] ARM: shmobile: KZM9G uImage rework Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org From: Magnus Damm Add KZM9G specific load addresses to Makefile.boot, both the C version of the code is covered as well as the DT -reference code. Signed-off-by: Magnus Damm --- arch/arm/mach-shmobile/Makefile.boot | 2 ++ 1 file changed, 2 insertions(+) -- 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 --- 0016/arch/arm/mach-shmobile/Makefile.boot +++ work/arch/arm/mach-shmobile/Makefile.boot 2013-06-04 16:21:45.000000000 +0900 @@ -8,6 +8,8 @@ loadaddr-$(CONFIG_MACH_ARMADILLO800EVA) loadaddr-$(CONFIG_MACH_BOCKW) += 0x60008000 loadaddr-$(CONFIG_MACH_BONITO) += 0x40008000 loadaddr-$(CONFIG_MACH_KZM9D) += 0x40008000 +loadaddr-$(CONFIG_MACH_KZM9G) += 0x41008000 +loadaddr-$(CONFIG_MACH_KZM9G_REFERENCE) += 0x41008000 __ZRELADDR := $(shell /bin/bash -c \ 'echo $(loadaddr-y) | tr " " "\n" | sort | uniq')