From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pd0-f177.google.com (mail-pd0-f177.google.com [209.85.192.177]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 7EA34E00747 for ; Thu, 29 Aug 2013 13:18:24 -0700 (PDT) Received: by mail-pd0-f177.google.com with SMTP id y10so906148pdj.36 for ; Thu, 29 Aug 2013 13:18:24 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :cc:subject:references:in-reply-to:content-type :content-transfer-encoding; bh=r9AQlE2wWJGNc4hMPdE8kq+77zY12LyL/ah7SA1FvX0=; b=Gjb7sq2zTGosrNmpTQWuxP2DAtYSQiIt9H3lRiM5J1ikrEjRwoiQD3xQYBNXORUy6Z AVNS0vzhkiWgH4frhfnJUVPo3Yja6l+Pi/Q1d8y1AfPA1IjycoMtQvbRXf8zC2EGqDKX ps4LCsIyiKIH0j4vvmhmDeZRImEAUrxg+B+PTHPkYBvHtQeYd4cUq7F1kii1ijGUOkUe Ewfc0LuKNoNTkAHsBxk1gnfWQzySVTMYdbt4nDDkn8i8C0J4dJCCHEd+O8Akh0K9rFNX HNEUC04Qbu5EKZWoum4Y1qzQYmTqCS80vPMGsoYfsCiW801316FdnrkbAipFOjXx17Dd IHlQ== X-Gm-Message-State: ALoCoQl3SFjYEtOtOIpIj22k2wspW1dddzIFmH/6hYrpSbSqt2LSkZCcfZvnO7j/7Q0jzxKh4ZDo X-Received: by 10.66.142.107 with SMTP id rv11mr6618895pab.17.1377807504236; Thu, 29 Aug 2013 13:18:24 -0700 (PDT) Received: from [29.6.1.42] ([70.96.116.236]) by mx.google.com with ESMTPSA id zq10sm42881331pab.6.1969.12.31.16.00.00 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 29 Aug 2013 13:18:23 -0700 (PDT) Message-ID: <521FAC8C.2000208@boundarydevices.com> Date: Thu, 29 Aug 2013 13:18:20 -0700 From: Eric Nelson User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130803 Thunderbird/17.0.8 MIME-Version: 1.0 To: Otavio Salvador References: <1377629546-10717-1-git-send-email-eric.nelson@boundarydevices.com> In-Reply-To: Cc: "meta-freescale@yoctoproject.org" Subject: Re: [meta-fsl-arm-extra][PATCH V2] u-boot-boundary: update to 2013-07 release 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, 29 Aug 2013 20:18:27 -0000 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit On 08/29/2013 01:09 PM, Otavio Salvador wrote: > On Tue, Aug 27, 2013 at 3:52 PM, Eric Nelson > wrote: >> This patch updates U-Boot and the boot script to the latest production >> version as described in this post: >> http://boundarydevices.com/u-boot-2013-07-release/ >> >> For Yocto users, it also adds support for processor and memory >> configurations other than the standard Quad-core/1GB option. >> >> To build U-Boot for other CPU or memory combinations, you can set >> the UBOOT_MACHINE variable in your local.conf according to the >> following table: >> >> Processor Memory Configuration >> -------------- ------ -------------------- >> i.MX6Quad/Dual 1GB nitrogen6q_config >> i.MX6Quad/Dual 2GB nitrogen6q2g_config >> i.MX6Dual-Lite 1GB nitrogen6dl_config >> i.MX6Dual-Lite 2GB nitrogen6dl2g_config >> i.MX6Solo 512MB nitrogen6s_config >> i.MX6Solo 1GB nitrogen6s1g_config >> >> This patch also updates the boot script to allow support >> for device-tree-enabled kernels in preparation for a 3.5.7 >> alpha release. >> >> If a device-tree binary (imx6q_sabrelite.dtb or imx6q_nitrogen6x.dtb) >> is found in the root directory of the boot (p1) partition, it >> will be passed to the kernel. >> >> Signed-off-by: Eric Nelson > > Thanks by doing this, comment below: > ... > >> --- a/recipes-bsp/u-boot/u-boot-script-boundary_git.bb >> +++ b/recipes-bsp/u-boot/u-boot-script-boundary_git.bb >> @@ -5,9 +5,8 @@ DEPENDS = "u-boot-mkimage-native" >> >> PV = "v2013.01+git${SRCPV}" >> >> -SRCREV = "d6b05d35b8b29392e71fdd8fa43d5cb8bd4fe276" >> -SRC_URI = "git://github.com/boundarydevices/u-boot-imx6.git \ >> - file://nitrogen6x-bootscript-modify-for-use-with-the-Yocto.patch" >> +SRCREV = "f89bc066db0569008418fac1a0408a9a57f2232f" >> +SRC_URI = "git://github.com/boundarydevices/u-boot-imx6.git" > > You forgot to remove the patch file. I fixed it while merging it ;-) > Thanks Otavio.