From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id E0290E00BE3; Thu, 5 Jun 2014 03:27:27 -0700 (PDT) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on yocto-www.yoctoproject.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.1 X-Spam-HAM-Report: * 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider * (lexszero[at]gmail.com) * -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's * domain * 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily * valid * -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature * -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low * trust * [209.85.215.54 listed in list.dnswl.org] Received: from mail-la0-f54.google.com (mail-la0-f54.google.com [209.85.215.54]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 0F4ECE00BDF for ; Thu, 5 Jun 2014 03:27:24 -0700 (PDT) Received: by mail-la0-f54.google.com with SMTP id pv20so431250lab.41 for ; Thu, 05 Jun 2014 03:27:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=PJcd2FAi26C+gQZcxSRLAjRUvUmO3a2t/juWIIH9Tbc=; b=PdfYMR5Pp0I8HVcdymMPj91fdaDb40Rhz5ndJaaphlxJ9eLnY0jO9NM6rN7uWKg5BO w03JQ5LpPtoGPGz4qoA2x0Fn9UtdkvCao/JEaMFhwxznw1qtSvvTOFLGx9geXPHTY3RB Vk+BBNolFmrMxPUcO9FVLJmnLfnDzUrIwH9OeT/RsIiMLx9FsGza6RoE2NExNiucjUiF MpECqmAqrRKZIvmRJbZByUOWIXuTRoQjGVlhqkd6g0kZWN1Gig/zw7X8WdjHlZdELuJ5 JXm+ocZFvP5CixvnV1mC4YTj7Q3PyhQlB/7ZEqDXMoNnfEwvD4JlEcp+D6Uxw15v0XCL gWjA== X-Received: by 10.112.13.35 with SMTP id e3mr42944421lbc.44.1401964043669; Thu, 05 Jun 2014 03:27:23 -0700 (PDT) Received: from localhost (128-72-42-202.broadband.corbina.ru. [128.72.42.202]) by mx.google.com with ESMTPSA id d8sm4613228lah.12.2014.06.05.03.27.23 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 05 Jun 2014 03:27:23 -0700 (PDT) From: Alexey Ignatov To: meta-freescale@yoctoproject.org Date: Thu, 5 Jun 2014 14:22:00 +0400 Message-Id: <1401963720-23756-2-git-send-email-lexszero@gmail.com> X-Mailer: git-send-email 1.8.2.1 In-Reply-To: <1401963720-23756-1-git-send-email-lexszero@gmail.com> References: <1401963720-23756-1-git-send-email-lexszero@gmail.com> Cc: Alexey Ignatov Subject: [PATCHv2 2/2] imx28evk: Add U-Boot NAND image generation support X-BeenThere: meta-freescale@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Usage and development list for the meta-fsl-* layers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jun 2014 10:27:27 -0000 This defines NAND parameters for u-boot.mxsboot-nand image creation similar to those used for UBI image (for K9LBG08U0D-PCB chip): - page size: 4 k - OOB size: 218 bytes - erase size: 512 k Signed-off-by: Alexey Ignatov --- conf/machine/imx28evk.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/conf/machine/imx28evk.conf b/conf/machine/imx28evk.conf index d4f1ad6..c25e54b 100644 --- a/conf/machine/imx28evk.conf +++ b/conf/machine/imx28evk.conf @@ -29,6 +29,7 @@ MACHINE_FEATURES = "apm usbgadget usbhost vfat alsa touchscreen" MKUBIFS_ARGS = "--min-io-size 4096 --leb-size 516096 --max-leb-cnt 8139" UBINIZE_ARGS = "--min-io-size 4096 --peb-size 524288 --sub-page-size 4096" +MXSBOOT_NAND_ARGS = "-w 4096 -o 218 -e 524288" ## To determine parameters' values, run "ubiattach -m 6 /dev/ubi_ctrl" ## (assuming the rootfs device is /dev/mtd6). Here's an example: -- 1.8.2.1