From patchwork Tue Mar 29 08:31:56 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jason Liu X-Patchwork-Id: 88735 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 DE222B6F06 for ; Tue, 29 Mar 2011 19:32:36 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id CDE2928091; Tue, 29 Mar 2011 10:32:32 +0200 (CEST) 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 cKZ8LQWOAXBO; Tue, 29 Mar 2011 10:32:32 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 547602808B; Tue, 29 Mar 2011 10:32:30 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 862D92808B for ; Tue, 29 Mar 2011 10:32:27 +0200 (CEST) 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 KoVfr0aIBKPg for ; Tue, 29 Mar 2011 10:32:26 +0200 (CEST) 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-iy0-f172.google.com (mail-iy0-f172.google.com [209.85.210.172]) by theia.denx.de (Postfix) with ESMTPS id 0853E2808A for ; Tue, 29 Mar 2011 10:32:24 +0200 (CEST) Received: by iye19 with SMTP id 19so3955586iye.3 for ; Tue, 29 Mar 2011 01:32:22 -0700 (PDT) Received: by 10.42.239.3 with SMTP id ku3mr8517089icb.208.1301387541997; Tue, 29 Mar 2011 01:32:21 -0700 (PDT) Received: from localhost.localdomain ([116.231.118.83]) by mx.google.com with ESMTPS id vr5sm3339700icb.12.2011.03.29.01.32.15 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 29 Mar 2011 01:32:21 -0700 (PDT) From: Jason Liu To: u-boot@lists.denx.de Date: Tue, 29 Mar 2011 16:31:56 +0800 Message-Id: <1301387516-18201-1-git-send-email-jason.hui@linaro.org> X-Mailer: git-send-email 1.7.0.4 Cc: galak@kernel.crashing.org, patches@linaro.org Subject: [U-Boot] [PATCH] MX5: Enable flat-device-tree support on mx53 loco 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 --- Grant has submit one patchset: ARM device tree support improvements which remove device tree booting dependency on CONFIG_SYS_BOOTMAPSZ. Will provide patchset to clean CONFIG_SYS_BOOTMAPSZ after the patches applied to u-boot mainline Signed-off-by: Jason Liu --- include/configs/mx53loco.h | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/include/configs/mx53loco.h b/include/configs/mx53loco.h index 585e8c8..9c7dcc9 100644 --- a/include/configs/mx53loco.h +++ b/include/configs/mx53loco.h @@ -193,4 +193,7 @@ #define CONFIG_ENV_IS_IN_MMC #define CONFIG_SYS_MMC_ENV_DEV 0 +#define CONFIG_OF_LIBFDT +#define CONFIG_SYS_BOOTMAPSZ 0x800000 + #endif /* __CONFIG_H */