From patchwork Thu Oct 3 11:50:55 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Otavio Salvador X-Patchwork-Id: 280283 X-Patchwork-Delegate: sbabic@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 B493F2C03AF for ; Thu, 3 Oct 2013 21:51:46 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 4CD8B4A0A2; Thu, 3 Oct 2013 13:51:45 +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 wWkAh7WNvrAL; Thu, 3 Oct 2013 13:51:45 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 327214A092; Thu, 3 Oct 2013 13:51:40 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 773854A094 for ; Thu, 3 Oct 2013 13:51:33 +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 WPwcDCOu3GUe for ; Thu, 3 Oct 2013 13:51:25 +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-ie0-f175.google.com (mail-ie0-f175.google.com [209.85.223.175]) by theia.denx.de (Postfix) with ESMTPS id 123BF4A066 for ; Thu, 3 Oct 2013 13:51:15 +0200 (CEST) Received: by mail-ie0-f175.google.com with SMTP id e14so5019306iej.20 for ; Thu, 03 Oct 2013 04:51:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:organization; bh=AoCwDXLyso34GgD71xtvUkx/sy3X6bW3PSCGcbksPcI=; b=YtsPhdPtTYgdk7WJx9fmytm+ZZL0B+XvcoaVTMRTKUMI42TE1Yz1ItKJF/7vdkt9Zu earsxBFyuodD9mMorIfU4WIUTfZ3mPw78mnPnZknYpiWUcj0q71ComnTYQ/Fc9bnVo8Q ud0+hbs0HfHBdKK76QMSRXNhH2uyhl5q9S/WqeX/JDvRG3zyCXbS6bSkbOnruETNNlcL AkS/Krg1/+h06AaiQFuoCVZSvWxaCHxIMLTixDZG0rLGEfdpVRL2sCk3TlLC5dI+dfJ4 69lIUT2jjkuiTe2lC+z2sLE5RXgUFlFMNgifGDniU98lSTRmRvnaMBLl/cQ7eANHVzwZ EHAw== X-Received: by 10.42.156.69 with SMTP id y5mr4918231icw.18.1380801073974; Thu, 03 Oct 2013 04:51:13 -0700 (PDT) Received: from nano.lab.ossystems.com.br ([177.194.208.225]) by mx.google.com with ESMTPSA id p7sm8146162iga.3.1969.12.31.16.00.00 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 03 Oct 2013 04:51:12 -0700 (PDT) From: Otavio Salvador To: U-Boot Mailing List Date: Thu, 3 Oct 2013 08:50:55 -0300 Message-Id: <1380801056-11923-1-git-send-email-otavio@ossystems.com.br> X-Mailer: git-send-email 1.8.4.rc3 Organization: O.S. Systems Software LTDA. Cc: Fabio Estevam , Otavio Salvador Subject: [U-Boot] [PATCH 1/2] mx28evk: Use 512k for fdt partition to align it X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.11 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 Using 512k for fdt partition allow it to be aligned with the other small partitions and 512k erase block size. Signed-off-by: Otavio Salvador --- include/configs/mx28evk.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/configs/mx28evk.h b/include/configs/mx28evk.h index 07f88ca..27b1a41 100644 --- a/include/configs/mx28evk.h +++ b/include/configs/mx28evk.h @@ -97,7 +97,7 @@ "512k(environment)," \ "512k(redundant-environment)," \ "4m(kernel)," \ - "128k(fdt)," \ + "512k(fdt)," \ "8m(ramdisk)," \ "-(filesystem)" #endif