From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 06662E00B4C; Mon, 2 Jun 2014 06:27:57 -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.217.174 listed in list.dnswl.org] Received: from mail-lb0-f174.google.com (mail-lb0-f174.google.com [209.85.217.174]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 8B3DFE009C1 for ; Mon, 2 Jun 2014 06:27:50 -0700 (PDT) Received: by mail-lb0-f174.google.com with SMTP id n15so2508551lbi.5 for ; Mon, 02 Jun 2014 06:27:49 -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; bh=JN4Z4TS9F3L3O2Pp6nF87vJb6kuhFJyH/pyQHlTAim0=; b=zlB4lZg6UTt1A57GBWoBU9mKUlFiQNEwWWIRFGVEq9Z/s56QAhZ8SI2H1HKDl/vpGL +iXv3XIbJ0pq2M4gZE+VyzEl37iwwhYIYoSicp7sKOJGoCXDQqd75ekJJeqrFaxUEZIS 86tzuUTRuU+cRTbDHGe1LtgNxzOd+bHYRjU8ZoHnwmXLUO/png2H+MOnRDxowcl6Uskh Em6OnLXruosIAm8rDjSAXSBQG7YxRrkNtONjQxzolUSC1hMbNdBgtiVt0ppfBRXraQhy k2YckBe2S+7hX8Olz5S9WpMadtxYiYrTxtN3nZAXTLulozv+9aX0sLrVwxjacny1Svvt lucA== X-Received: by 10.152.4.1 with SMTP id g1mr28990757lag.20.1401715669416; Mon, 02 Jun 2014 06:27:49 -0700 (PDT) Received: from localhost (128-72-42-202.broadband.corbina.ru. [128.72.42.202]) by mx.google.com with ESMTPSA id b3sm12909424lbi.15.2014.06.02.06.27.48 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 02 Jun 2014 06:27:48 -0700 (PDT) From: Alexey Ignatov To: meta-freescale@yoctoproject.org Date: Mon, 2 Jun 2014 17:24:33 +0400 Message-Id: <1401715474-18181-1-git-send-email-lexszero@gmail.com> X-Mailer: git-send-email 1.8.2.1 X-Mailman-Approved-At: Mon, 02 Jun 2014 14:38:23 -0700 Cc: Alexey Ignatov Subject: [PATCH 1/2] image_types_fsl.bbclass: add uboot.mxsboot-nand image generation 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: Mon, 02 Jun 2014 13:27:57 -0000 --- classes/image_types_fsl.bbclass | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/classes/image_types_fsl.bbclass b/classes/image_types_fsl.bbclass index dfa55e4..d585512 100644 --- a/classes/image_types_fsl.bbclass +++ b/classes/image_types_fsl.bbclass @@ -59,6 +59,12 @@ IMAGE_DEPENDS_uboot.mxsboot-sdcard = "u-boot-mxsboot-native:do_populate_sysroot IMAGE_CMD_uboot.mxsboot-sdcard = "mxsboot sd ${DEPLOY_DIR_IMAGE}/u-boot-${MACHINE}.${UBOOT_SUFFIX} \ ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.uboot.mxsboot-sdcard" +IMAGE_DEPENDS_uboot.mxsboot-nand = "u-boot-mxsboot-native:do_populate_sysroot \ + u-boot:do_deploy" +IMAGE_CMD_uboot.mxsboot-nand = "mxsboot ${MXSBOOT_ARGS} nand \ + ${DEPLOY_DIR_IMAGE}/u-boot-${MACHINE}.${UBOOT_SUFFIX} \ + ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.uboot.mxsboot-nand" + # Boot partition volume id BOOTDD_VOLUME_ID ?= "Boot ${MACHINE}" -- 1.8.2.1