From patchwork Mon Jan 17 12:50:56 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nobuhiro Iwamatsu X-Patchwork-Id: 79156 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 507BEB7043 for ; Mon, 17 Jan 2011 23:49:04 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id BFE47280A8; Mon, 17 Jan 2011 13:47:41 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id y4Kpj5q7Kkbq; Mon, 17 Jan 2011 13:47:41 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 2B03F280ED; Mon, 17 Jan 2011 13:46:54 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 3ECBD280CB for ; Mon, 17 Jan 2011 13:46:38 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 5+vpvfJiZC7i for ; Mon, 17 Jan 2011 13:46:36 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mail-pv0-f172.google.com (mail-pv0-f172.google.com [74.125.83.172]) by theia.denx.de (Postfix) with ESMTP id 0AFE228083 for ; Mon, 17 Jan 2011 13:46:24 +0100 (CET) Received: by pvc21 with SMTP id 21so863844pvc.3 for ; Mon, 17 Jan 2011 04:46:22 -0800 (PST) Received: by 10.142.193.4 with SMTP id q4mr3603388wff.6.1295268382776; Mon, 17 Jan 2011 04:46:22 -0800 (PST) Received: from chimagu (EM111-188-98-171.pool.e-mobile.ne.jp [111.188.98.171]) by mx.google.com with ESMTPS id w22sm6514268wfd.19.2011.01.17.04.46.20 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 17 Jan 2011 04:46:22 -0800 (PST) Received: from iwamatsu by chimagu with local (Exim 4.72) (envelope-from ) id 1PeoY9-0002sW-5Q; Mon, 17 Jan 2011 21:51:09 +0900 From: Nobuhiro Iwamatsu To: u-boot@lists.denx.de Date: Mon, 17 Jan 2011 21:50:56 +0900 Message-Id: <1295268663-11004-6-git-send-email-iwamatsu@nigauri.org> X-Mailer: git-send-email 1.7.2.3 In-Reply-To: <1295268663-11004-1-git-send-email-iwamatsu@nigauri.org> References: <1295268663-11004-1-git-send-email-iwamatsu@nigauri.org> Subject: [U-Boot] [PATCH 06/13] sh: Remove config.mk for sh7763rdp board X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.9 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de Move CONFIG_SYS_TEXT_BASE to the board's config file, and remove the unnecessary config.mk file. Signed-off-by: Nobuhiro Iwamatsu --- board/renesas/sh7763rdp/config.mk | 11 ----------- include/configs/sh7763rdp.h | 1 + 2 files changed, 1 insertions(+), 11 deletions(-) delete mode 100644 board/renesas/sh7763rdp/config.mk diff --git a/board/renesas/sh7763rdp/config.mk b/board/renesas/sh7763rdp/config.mk deleted file mode 100644 index 54c1a5b..0000000 --- a/board/renesas/sh7763rdp/config.mk +++ /dev/null @@ -1,11 +0,0 @@ -# -# board/sh7763rdp/config.mk -# -# CONFIG_SYS_TEXT_BASE refers to image _after_ relocation. -# -# NOTE: Must match value used in u-boot.lds (in this directory). -# - -CONFIG_SYS_TEXT_BASE = 0x8FFC0000 - -# PLATFORM_CPPFLAGS += -DCONFIG_MULTIBOOT diff --git a/include/configs/sh7763rdp.h b/include/configs/sh7763rdp.h index 209cb88..6a08413 100644 --- a/include/configs/sh7763rdp.h +++ b/include/configs/sh7763rdp.h @@ -56,6 +56,7 @@ #define CONFIG_BAUDRATE 115200 #define CONFIG_CONS_SCIF2 1 +#define CONFIG_SYS_TEXT_BASE 0x8FFC0000 #define CONFIG_SYS_LONGHELP /* undef to save memory */ #define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */ #define CONFIG_SYS_CBSIZE 256 /* Buffer size for input from the Console */