From patchwork Fri Mar 4 10:12:38 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Jason Liu X-Patchwork-Id: 307 Return-Path: Delivered-To: unknown Received: from imap.gmail.com (74.125.159.109) by localhost6.localdomain6 with IMAP4-SSL; 08 Jun 2011 14:41:37 -0000 Delivered-To: patches@linaro.org Received: by 10.224.60.68 with SMTP id o4cs9447qah; Fri, 4 Mar 2011 02:12:41 -0800 (PST) Received: by 10.231.200.85 with SMTP id ev21mr264092ibb.138.1299233560908; Fri, 04 Mar 2011 02:12:40 -0800 (PST) Received: from mail-iy0-f178.google.com (mail-iy0-f178.google.com [209.85.210.178]) by mx.google.com with ESMTPS id 38si4919693ibi.91.2011.03.04.02.12.40 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 04 Mar 2011 02:12:40 -0800 (PST) Received-SPF: pass (google.com: domain of liu.h.jason@gmail.com designates 209.85.210.178 as permitted sender) client-ip=209.85.210.178; Authentication-Results: mx.google.com; spf=pass (google.com: domain of liu.h.jason@gmail.com designates 209.85.210.178 as permitted sender) smtp.mail=liu.h.jason@gmail.com; dkim=pass (test mode) header.i=@gmail.com Received: by iyj8 with SMTP id 8so2211036iyj.37 for ; Fri, 04 Mar 2011 02:12:40 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:content-type:content-transfer-encoding; bh=o/0fulyCZKB9VRy6PClVNSSQm3pTHyjbYnVHoxWpcvo=; b=xGWxBvu2k6xQk5lbU/9LNgC30QuwIB+mGGWMHG7I2HCzDEyu375clEiH6XJBNxHk1H iPsSJ+Dvc9K+gEYYkyAvzDTD580xO0HE1OsmQe//U9q0Uob3eorhcWigvVJgsUpWUWgb Ev8NbXhEhWO/zzaiLUj1SC/DItPjnWrOHAVhg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=tGu25N9k/muJmvx3X4oCQuvRlLjBiSybc3IN1eTSbNuxW+qVOn91N1P4Yl9FEYidaN zFPVIUbLYrJTm0jX8KIGo4/eJTuPfMO/zBskkYZ54qNvWMIu/mbzcEXF8jOsev0sB/W3 tB72UuT1QhTjimia+zTSwCYs07UP9qgYHYH1w= MIME-Version: 1.0 Received: by 10.42.171.73 with SMTP id i9mr501550icz.196.1299233558961; Fri, 04 Mar 2011 02:12:38 -0800 (PST) Received: by 10.42.227.4 with HTTP; Fri, 4 Mar 2011 02:12:38 -0800 (PST) In-Reply-To: <1298283273-3350-2-git-send-email-r64343@freescale.com> References: <1298283273-3350-1-git-send-email-r64343@freescale.com> <1298283273-3350-2-git-send-email-r64343@freescale.com> Date: Fri, 4 Mar 2011 18:12:38 +0800 Message-ID: Subject: Fwd: [U-Boot] [PATCH 1/1] MX5: Enable flat-device-tree support on mx51/53 evk board From: Jason Liu To: patches@linaro.org ---------- Forwarded message ---------- From: Jason Liu Date: 2011/2/21 Subject: [U-Boot] [PATCH 1/1] MX5: Enable flat-device-tree support on mx51/53 evk board To: u-boot@lists.denx.de device tree for uboot arm support has already been enabled in the master branch. This patch enable device tree support for mx51/53 evk board for DT test. Signed-off-by: Jason Liu ---  include/configs/mx51evk.h |    3 +++  include/configs/mx53evk.h |    3 +++  2 files changed, 6 insertions(+), 0 deletions(-) -- 1.7.0.4 diff --git a/include/configs/mx51evk.h b/include/configs/mx51evk.h index 591d6e1..57186aa 100644 --- a/include/configs/mx51evk.h +++ b/include/configs/mx51evk.h @@ -222,4 +222,7 @@  #define CONFIG_ENV_IS_IN_MMC  #define CONFIG_SYS_MMC_ENV_DEV 0 +#define CONFIG_OF_LIBFDT +#define CONFIG_SYS_BOOTMAPSZ   0x800000 +  #endif diff --git a/include/configs/mx53evk.h b/include/configs/mx53evk.h index f2a5752..6ac910b 100644 --- a/include/configs/mx53evk.h +++ b/include/configs/mx53evk.h @@ -190,4 +190,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 */