From patchwork Wed Jun 5 07:06:56 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Magnus Damm X-Patchwork-Id: 2665541 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 0CD3EDF264 for ; Wed, 5 Jun 2013 06:59:30 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752332Ab3FEG73 (ORCPT ); Wed, 5 Jun 2013 02:59:29 -0400 Received: from mail-pa0-f53.google.com ([209.85.220.53]:45490 "EHLO mail-pa0-f53.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752090Ab3FEG73 (ORCPT ); Wed, 5 Jun 2013 02:59:29 -0400 Received: by mail-pa0-f53.google.com with SMTP id kq13so791278pab.26 for ; Tue, 04 Jun 2013 23:59:28 -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=QXpg+W73kklhKVnPfN253OyIUK/7/Of7Pc2E16sOpvM=; b=o+P8p334xh6KAInVNSdnFFG7qOVCoXeg7eSp32qC67thgjCNkxxOLTI7ASeeYESj19 PAqmh+rSJOQ/UAbkCYvyLeVEoaH/PiMNwdlRn1nT1mft9BFKUB/gENfJCGeUlxxtKNEK QQI4JJ8FJl3iP7e0YBIAETRFYqrSDucRbC6NNL3nN78wiuqLXW61vbh64Tg4ZD4so320 2iqwgVKvL9eh1fFrRCl4Xd9hFp1WKlVAzUtJYOsj3k0Nda+5WfZZ6RqpDy5MPYidg3hn V9UUUB7ERactEJpOZ+ezmV3zFRN0nm3YbQMmbKWxDyD4mC7sI/h3Y9ldvh09Hd/ziLLz 67ww== X-Received: by 10.67.4.129 with SMTP id ce1mr32458194pad.107.1370415568632; Tue, 04 Jun 2013 23:59:28 -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 ya4sm66706493pbb.24.2013.06.04.23.59.26 for (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 04 Jun 2013 23:59:28 -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:06:56 +0900 Message-Id: <20130605070656.13311.78020.sendpatchset@w520> In-Reply-To: <20130605070616.13311.69049.sendpatchset@w520> References: <20130605070616.13311.69049.sendpatchset@w520> Subject: [PATCH 05/15] ARM: shmobile: Armadillo800EVA 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 Armadillo800EVA 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 --- 0012/arch/arm/mach-shmobile/Makefile.boot +++ work/arch/arm/mach-shmobile/Makefile.boot 2013-06-04 16:12:59.000000000 +0900 @@ -4,6 +4,7 @@ loadaddr-y := $(shell /bin/bash -c 'prin loadaddr-$(CONFIG_MACH_AG5EVM) += 0x40008000 loadaddr-$(CONFIG_MACH_AP4EVB) += 0x40008000 loadaddr-$(CONFIG_MACH_APE6EVM) += 0x40008000 +loadaddr-$(CONFIG_MACH_ARMADILLO800EVA) += 0x40008000 __ZRELADDR := $(shell /bin/bash -c \ 'echo $(loadaddr-y) | tr " " "\n" | sort | uniq')