From patchwork Wed Jun 5 07:07:45 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 2665611 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 2EF0ADF264 for ; Wed, 5 Jun 2013 07:00:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752416Ab3FEHAV (ORCPT ); Wed, 5 Jun 2013 03:00:21 -0400 Received: from mail-pb0-f51.google.com ([209.85.160.51]:51672 "EHLO mail-pb0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752388Ab3FEHAU (ORCPT ); Wed, 5 Jun 2013 03:00:20 -0400 Received: by mail-pb0-f51.google.com with SMTP id um15so1351527pbc.24 for ; Wed, 05 Jun 2013 00:00:20 -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=0xvV6gIbFIQpWPsgRl6MAPXpoK5rUg07CHBZDiNANS8=; b=M2IAQR5sSVCqsD4woD83ZFKj9m6ofKHxqy2cdFNFwn+5QSvAu3GoYtKAsO9bsaDWZI 7wP665V+dRLb3bFb7f7Yv8718PbCY+vCCa31xjJCKkctYzncnHqonabJZkfQY74YRR0r 7XKeM1Grh5nyMJ4tL3DQwvxMZlKLDrcyeLKaYb00V2t9qjTbKGCKHaSu47OulpsRKolZ YX2PPfQd0upKz2LRFauNimvPfUoY2/hVqLO/8ww89ajFkYwZSMXSE11pj/FeG0AVQ0CU TnwqLCUh08tbLFKOwOzSrA27cJa/L6+YfKrxFInH7SFNvFs4ABFTRr5HGJNK3EKsTgXw Fg5A== X-Received: by 10.68.113.165 with SMTP id iz5mr32130399pbb.116.1370415620286; Wed, 05 Jun 2013 00:00:20 -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 cq1sm66730275pbc.13.2013.06.05.00.00.18 for (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 05 Jun 2013 00:00:19 -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:45 +0900 Message-Id: <20130605070745.13311.12278.sendpatchset@w520> In-Reply-To: <20130605070616.13311.69049.sendpatchset@w520> References: <20130605070616.13311.69049.sendpatchset@w520> Subject: [PATCH 11/15] ARM: shmobile: Lager 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 Lager specific load address to Makefile.boot Signed-off-by: Magnus Damm --- arch/arm/mach-shmobile/Makefile.boot | 1 + 1 file changed, 1 insertion(+) -- 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 --- 0018/arch/arm/mach-shmobile/Makefile.boot +++ work/arch/arm/mach-shmobile/Makefile.boot 2013-06-04 17:02:03.000000000 +0900 @@ -11,6 +11,7 @@ loadaddr-$(CONFIG_MACH_KOTA2) += 0x41008 loadaddr-$(CONFIG_MACH_KZM9D) += 0x40008000 loadaddr-$(CONFIG_MACH_KZM9G) += 0x41008000 loadaddr-$(CONFIG_MACH_KZM9G_REFERENCE) += 0x41008000 +loadaddr-$(CONFIG_MACH_LAGER) += 0x40008000 __ZRELADDR := $(shell /bin/bash -c \ 'echo $(loadaddr-y) | tr " " "\n" | sort | uniq')