From patchwork Mon Jan 10 05:21:11 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mike Frysinger X-Patchwork-Id: 78072 X-Patchwork-Delegate: wd@denx.de 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 38D9CB7063 for ; Mon, 10 Jan 2011 16:13:37 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 6CBBB28088; Mon, 10 Jan 2011 06:13:35 +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 GiFEa5Ei-6Sg; Mon, 10 Jan 2011 06:13:35 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id CB4F3280E7; Mon, 10 Jan 2011 06:13:33 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 0C8B928088 for ; Mon, 10 Jan 2011 06:13:32 +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 qaXR430FPkVB for ; Mon, 10 Jan 2011 06:13:30 +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 smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by theia.denx.de (Postfix) with ESMTPS id 05BA62816C for ; Mon, 10 Jan 2011 06:13:28 +0100 (CET) Received: from localhost.localdomain (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id 30D371B4084 for ; Mon, 10 Jan 2011 05:13:26 +0000 (UTC) From: Mike Frysinger To: u-boot@lists.denx.de Date: Mon, 10 Jan 2011 00:21:11 -0500 Message-Id: <1294636871-30699-1-git-send-email-vapier@gentoo.org> X-Mailer: git-send-email 1.7.4.rc1 Subject: [U-Boot] [PATCH] Blackfin: adi boards: enable CONFIG_MONITOR_IS_IN_RAM 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 Our monitor is always in RAM, so enable this define for the CFI layer. Signed-off-by: Mike Frysinger --- include/configs/bf506f-ezkit.h | 1 + include/configs/bfin_adi_common.h | 1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/configs/bf506f-ezkit.h b/include/configs/bf506f-ezkit.h index 9464029..0beac78 100644 --- a/include/configs/bf506f-ezkit.h +++ b/include/configs/bf506f-ezkit.h @@ -65,6 +65,7 @@ #define CONFIG_SYS_MAX_FLASH_BANKS 1 #define CONFIG_SYS_MAX_FLASH_SECT 71 #define CONFIG_CMD_FLASH +#define CONFIG_MONITOR_IS_IN_RAM /* diff --git a/include/configs/bfin_adi_common.h b/include/configs/bfin_adi_common.h index 9016a26..a9c66be 100644 --- a/include/configs/bfin_adi_common.h +++ b/include/configs/bfin_adi_common.h @@ -300,5 +300,6 @@ #endif #define CONFIG_BFIN_SPI_GPIO_CS /* Only matters if BFIN_SPI is enabled */ #define CONFIG_LZMA +#define CONFIG_MONITOR_IS_IN_RAM #endif