From patchwork Sat Oct 12 18:27:07 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Otavio Salvador X-Patchwork-Id: 283010 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 EB1072C0084 for ; Sun, 13 Oct 2013 05:28:54 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id EE5484A088; Sat, 12 Oct 2013 20:28:37 +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 SJtzoyDq-X8K; Sat, 12 Oct 2013 20:28:37 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 6A4624A0A2; Sat, 12 Oct 2013 20:28:07 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 1B7864A096 for ; Sat, 12 Oct 2013 20:27:52 +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 u3Apdp1sHo3w for ; Sat, 12 Oct 2013 20:27:45 +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-ye0-f175.google.com (mail-ye0-f175.google.com [209.85.213.175]) by theia.denx.de (Postfix) with ESMTPS id C2F134A088 for ; Sat, 12 Oct 2013 20:27:32 +0200 (CEST) Received: by mail-ye0-f175.google.com with SMTP id r14so436177yen.20 for ; Sat, 12 Oct 2013 11:27:26 -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:in-reply-to:references :organization; bh=AoCwDXLyso34GgD71xtvUkx/sy3X6bW3PSCGcbksPcI=; b=iVDnCGH3ZQTn+Daw+FCi9zvf/SaidGmx7yY9h/x9hPn+THy5+kkdxHSRGBSP/R+NK2 +fEGpjc15KMcEHr7YGqfJuUHsufQ1O40SIyQWSFcsc6l5ftW4sSe5SfsjgI1LzrJCwlE KqdNNf54Rw+0lXGSb/yQfgySfSia1jpY9YvYqtsay6QlIXcbmLP9v1hj85fa1z/J3Vqy a/6vVOM7BOYGPs/Nk9/IEUwDfJN2V26SBjY0BHvLhWSi8w7TV4Sv/6X9/sO14uxTUCkr I5TD2o9FZ/008yibycywkvwpNYp2wMRrB+7wa8IiWMFESkUU6Tl+i803YTqDkxGVsytC DPRQ== X-Received: by 10.236.191.72 with SMTP id f48mr18128558yhn.32.1381602446647; Sat, 12 Oct 2013 11:27:26 -0700 (PDT) Received: from nano.lab.ossystems.com.br ([177.194.208.225]) by mx.google.com with ESMTPSA id r1sm88809380yhf.17.1969.12.31.16.00.00 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Sat, 12 Oct 2013 11:27:25 -0700 (PDT) From: Otavio Salvador To: U-Boot Mailing List Date: Sat, 12 Oct 2013 15:27:07 -0300 Message-Id: <1381602429-20912-2-git-send-email-otavio@ossystems.com.br> X-Mailer: git-send-email 1.8.4.rc3 In-Reply-To: <1381602429-20912-1-git-send-email-otavio@ossystems.com.br> References: <1381602429-20912-1-git-send-email-otavio@ossystems.com.br> Organization: O.S. Systems Software LTDA. Cc: Fabio Estevam , Otavio Salvador Subject: [U-Boot] [PATCH 1/3] 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