All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [meta-fsl-arm-extra][PATCH] Fix bootscript of nitrogen6x-lite
@ 2014-06-27 10:43 Christoph Settgast
  2014-06-27 10:43 ` [meta-fsl-arm-extra][PATCH] u-boot-script-boundary: Update to aed947536 Christoph Settgast
  0 siblings, 1 reply; 7+ messages in thread
From: Christoph Settgast @ 2014-06-27 10:43 UTC (permalink / raw
  To: meta-freescale

Hi,

just built a core-image-sato for nitrogen6x-lite on daisy, but it does not boot:

## Error: illegal character '='in variable name "bootargs enable_wait_mode=off video=mxcfb0:dev=lcd,okaya_480x272,if=RGB24 video=mxcfb1:off video=mxcfb2:off video=mxcfb3:off fbmem=10M console=ttymxc1,115200 vmalloc=400M consoleblank=0 rootwait root=/dev/mmcblk0p2"

and afterwards:

Waiting for root device ...

Reason for this: The 6x_bootscript-yocto.txt from u-boot-script-boundary
has a typo in line 70. This was even fixed upstream in u-boot-imx6 from
boundarydevices
(https://github.com/boundarydevices/u-boot-imx6/commit/aed9475361820a65e37ed936c833322cbbc0f2b5).

The attached patch updates the yocto recipe to that SRCREV.

Best regards,
Christoph




^ permalink raw reply	[flat|nested] 7+ messages in thread

* [meta-fsl-arm-extra][PATCH] u-boot-script-boundary: Update to aed947536
  2014-06-27 10:43 [meta-fsl-arm-extra][PATCH] Fix bootscript of nitrogen6x-lite Christoph Settgast
@ 2014-06-27 10:43 ` Christoph Settgast
  2014-06-27 14:33   ` Eric Nelson
  0 siblings, 1 reply; 7+ messages in thread
From: Christoph Settgast @ 2014-06-27 10:43 UTC (permalink / raw
  To: meta-freescale

This fixes quoting in a setenv. The wrong quoting was
preventing the device from booting.

Signed-off-by: Christoph Settgast <christoph.settgast@methodpark.de>
---
 recipes-bsp/u-boot/u-boot-script-boundary_git.bb |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes-bsp/u-boot/u-boot-script-boundary_git.bb b/recipes-bsp/u-boot/u-boot-script-boundary_git.bb
index ade4d5a..22a4a61 100644
--- a/recipes-bsp/u-boot/u-boot-script-boundary_git.bb
+++ b/recipes-bsp/u-boot/u-boot-script-boundary_git.bb
@@ -4,8 +4,8 @@ DEPENDS = "u-boot-mkimage-native"
 
 PV = "v2014.01+git${SRCPV}"
 
-SRCREV = "6d00ef4bba6fdfa7897cba631df6c0781992b847"
-SRCBRANCH = "v2014.04-20140419"
+SRCREV = "aed9475361820a65e37ed936c833322cbbc0f2b5"
+SRCBRANCH = "production"
 SRC_URI = "git://github.com/boundarydevices/u-boot-imx6.git;branch=${SRCBRANCH}"
 
 S = "${WORKDIR}/git"
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [meta-fsl-arm-extra][PATCH] u-boot-script-boundary: Update to aed947536
  2014-06-27 10:43 ` [meta-fsl-arm-extra][PATCH] u-boot-script-boundary: Update to aed947536 Christoph Settgast
@ 2014-06-27 14:33   ` Eric Nelson
  2014-06-28 18:54     ` Otavio Salvador
  0 siblings, 1 reply; 7+ messages in thread
From: Eric Nelson @ 2014-06-27 14:33 UTC (permalink / raw
  To: Christoph Settgast, meta-freescale

Thanks Christoph,

On 06/27/2014 03:43 AM, Christoph Settgast wrote:
> This fixes quoting in a setenv. The wrong quoting was
> preventing the device from booting.
> 
> Signed-off-by: Christoph Settgast <christoph.settgast@methodpark.de>
> ---
>  recipes-bsp/u-boot/u-boot-script-boundary_git.bb |    4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/recipes-bsp/u-boot/u-boot-script-boundary_git.bb b/recipes-bsp/u-boot/u-boot-script-boundary_git.bb
> index ade4d5a..22a4a61 100644
> --- a/recipes-bsp/u-boot/u-boot-script-boundary_git.bb
> +++ b/recipes-bsp/u-boot/u-boot-script-boundary_git.bb
> @@ -4,8 +4,8 @@ DEPENDS = "u-boot-mkimage-native"
>  
>  PV = "v2014.01+git${SRCPV}"
>  
> -SRCREV = "6d00ef4bba6fdfa7897cba631df6c0781992b847"
> -SRCBRANCH = "v2014.04-20140419"

Note that we'll need to pull this patch into branch v2014.04-20140419
in order to keep things stable.

The 'production' branch name reflects updates to what we're shipping
at any point in time, and it will move to 2014.07 very soon, which
will break this recipe.

> +SRCREV = "aed9475361820a65e37ed936c833322cbbc0f2b5"
> +SRCBRANCH = "production"
>  SRC_URI = "git://github.com/boundarydevices/u-boot-imx6.git;branch=${SRCBRANCH}"
>  
>  S = "${WORKDIR}/git"
> 

I'll do that this morning and shoot you a note when it's done.

Regards,


Eric


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [meta-fsl-arm-extra][PATCH] u-boot-script-boundary: Update to aed947536
  2014-06-27 14:33   ` Eric Nelson
@ 2014-06-28 18:54     ` Otavio Salvador
  2014-06-28 19:26       ` Eric Nelson
  0 siblings, 1 reply; 7+ messages in thread
From: Otavio Salvador @ 2014-06-28 18:54 UTC (permalink / raw
  To: Eric Nelson; +Cc: meta-freescale@yoctoproject.org

Hello Eric,

On Fri, Jun 27, 2014 at 11:33 AM, Eric Nelson
<eric.nelson@boundarydevices.com> wrote:
> I'll do that this morning and shoot you a note when it's done.

It is not clear to me if I should apply this patch or not. Can you clarify?

-- 
Otavio Salvador                             O.S. Systems
http://www.ossystems.com.br        http://code.ossystems.com.br
Mobile: +55 (53) 9981-7854            Mobile: +1 (347) 903-9750


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [meta-fsl-arm-extra][PATCH] u-boot-script-boundary: Update to aed947536
  2014-06-28 18:54     ` Otavio Salvador
@ 2014-06-28 19:26       ` Eric Nelson
  2014-06-30  9:30         ` [meta-fsl-arm-extra][PATCH v2] " Christoph Settgast
  0 siblings, 1 reply; 7+ messages in thread
From: Eric Nelson @ 2014-06-28 19:26 UTC (permalink / raw
  To: Otavio Salvador; +Cc: meta-freescale@yoctoproject.org

Hi Otavio,

On 06/28/2014 11:54 AM, Otavio Salvador wrote:
> Hello Eric,
> 
> On Fri, Jun 27, 2014 at 11:33 AM, Eric Nelson
> <eric.nelson@boundarydevices.com> wrote:
>> I'll do that this morning and shoot you a note when it's done.
> 
> It is not clear to me if I should apply this patch or not. Can you clarify?
> 
Not without a minor change (s/production/v2014.04-20140419/)
in the SRCBRANCH.

Otherwise the 'production' branch will break things when we go to
2014.07.

With that update, things are good though.

Regards,


Eric



^ permalink raw reply	[flat|nested] 7+ messages in thread

* [meta-fsl-arm-extra][PATCH v2] u-boot-script-boundary: Update to aed947536
  2014-06-28 19:26       ` Eric Nelson
@ 2014-06-30  9:30         ` Christoph Settgast
  2014-06-30 13:41           ` Eric Nelson
  0 siblings, 1 reply; 7+ messages in thread
From: Christoph Settgast @ 2014-06-30  9:30 UTC (permalink / raw
  To: meta-freescale

This fixes quoting in a setenv. The wrong quoting was
preventing the device from booting.

Signed-off-by: Christoph Settgast <christoph.settgast@methodpark.de>
---
 recipes-bsp/u-boot/u-boot-script-boundary_git.bb |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/recipes-bsp/u-boot/u-boot-script-boundary_git.bb b/recipes-bsp/u-boot/u-boot-script-boundary_git.bb
index ade4d5a..b39d963 100644
--- a/recipes-bsp/u-boot/u-boot-script-boundary_git.bb
+++ b/recipes-bsp/u-boot/u-boot-script-boundary_git.bb
@@ -4,7 +4,7 @@ DEPENDS = "u-boot-mkimage-native"
 
 PV = "v2014.01+git${SRCPV}"
 
-SRCREV = "6d00ef4bba6fdfa7897cba631df6c0781992b847"
+SRCREV = "aed9475361820a65e37ed936c833322cbbc0f2b5"
 SRCBRANCH = "v2014.04-20140419"
 SRC_URI = "git://github.com/boundarydevices/u-boot-imx6.git;branch=${SRCBRANCH}"
 
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [meta-fsl-arm-extra][PATCH v2] u-boot-script-boundary: Update to aed947536
  2014-06-30  9:30         ` [meta-fsl-arm-extra][PATCH v2] " Christoph Settgast
@ 2014-06-30 13:41           ` Eric Nelson
  0 siblings, 0 replies; 7+ messages in thread
From: Eric Nelson @ 2014-06-30 13:41 UTC (permalink / raw
  To: Christoph Settgast, meta-freescale

Thanks Christoph.

On 06/30/2014 02:30 AM, Christoph Settgast wrote:
> This fixes quoting in a setenv. The wrong quoting was
> preventing the device from booting.
> 
> Signed-off-by: Christoph Settgast <christoph.settgast@methodpark.de>
> ---
>  recipes-bsp/u-boot/u-boot-script-boundary_git.bb |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/recipes-bsp/u-boot/u-boot-script-boundary_git.bb b/recipes-bsp/u-boot/u-boot-script-boundary_git.bb
> index ade4d5a..b39d963 100644
> --- a/recipes-bsp/u-boot/u-boot-script-boundary_git.bb
> +++ b/recipes-bsp/u-boot/u-boot-script-boundary_git.bb
> @@ -4,7 +4,7 @@ DEPENDS = "u-boot-mkimage-native"
>  
>  PV = "v2014.01+git${SRCPV}"
>  
> -SRCREV = "6d00ef4bba6fdfa7897cba631df6c0781992b847"
> +SRCREV = "aed9475361820a65e37ed936c833322cbbc0f2b5"
>  SRCBRANCH = "v2014.04-20140419"
>  SRC_URI = "git://github.com/boundarydevices/u-boot-imx6.git;branch=${SRCBRANCH}"
>  

Acked-by: Eric Nelson <eric.nelson@boundarydevices.com>



^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2014-06-30 13:41 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-27 10:43 [meta-fsl-arm-extra][PATCH] Fix bootscript of nitrogen6x-lite Christoph Settgast
2014-06-27 10:43 ` [meta-fsl-arm-extra][PATCH] u-boot-script-boundary: Update to aed947536 Christoph Settgast
2014-06-27 14:33   ` Eric Nelson
2014-06-28 18:54     ` Otavio Salvador
2014-06-28 19:26       ` Eric Nelson
2014-06-30  9:30         ` [meta-fsl-arm-extra][PATCH v2] " Christoph Settgast
2014-06-30 13:41           ` Eric Nelson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.