From patchwork Tue Mar 29 09:43:59 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jason Liu X-Patchwork-Id: 88740 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 7DC79B6EEC for ; Tue, 29 Mar 2011 20:44:22 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id AE44428091; Tue, 29 Mar 2011 11:44:20 +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 dP1WqeoW7WVc; Tue, 29 Mar 2011 11:44:20 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id BFD5E2808B; Tue, 29 Mar 2011 11:44:18 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 2931E2808B for ; Tue, 29 Mar 2011 11:44:16 +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 B8SsSGPDuMF1 for ; Tue, 29 Mar 2011 11:44:15 +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 0666228088 for ; Tue, 29 Mar 2011 11:44:13 +0200 (CEST) Received: by iye19 with SMTP id 19so4014231iye.3 for ; Tue, 29 Mar 2011 02:44:11 -0700 (PDT) Received: by 10.231.92.15 with SMTP id p15mr3365928ibm.153.1301391850947; Tue, 29 Mar 2011 02:44:10 -0700 (PDT) Received: from localhost.localdomain ([116.231.118.83]) by mx.google.com with ESMTPS id g16sm3551702ibb.3.2011.03.29.02.44.03 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 29 Mar 2011 02:44:10 -0700 (PDT) From: Jason Liu To: u-boot@lists.denx.de Date: Tue, 29 Mar 2011 17:43:59 +0800 Message-Id: <1301391839-18564-1-git-send-email-jason.hui@linaro.org> X-Mailer: git-send-email 1.7.0.4 Cc: patches@linaro.org Subject: [U-Boot] [PATCH v2] 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 Signed-off-by: Jason Liu --- 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 --- Change log: v2: Fix the git commit log issue by move the "Grant..." below the S-O-B line --- 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 */