All of lore.kernel.org
 help / color / mirror / Atom feed
* nitrogen6x and imx6qsabrelite machines uboot scripts
@ 2014-07-24 18:16 Ilya Smelykh
  2014-07-24 20:11 ` Morgan McKenzie
  2014-07-25 14:49 ` Eric Nelson
  0 siblings, 2 replies; 14+ messages in thread
From: Ilya Smelykh @ 2014-07-24 18:16 UTC (permalink / raw)
  To: meta-freescale@yoctoproject.org

[-- Attachment #1: Type: text/plain, Size: 359 bytes --]

Hi guys,

 After my last update to the current master I've found the problem with
uboot scripts for imx6qsabrelite
and nitrogen6x machines.  Sabre machine has no scripts at all and it cause
an error while building,
nitrogen6x has scripts which trying to load uImage, but actual kernel which
was deployed is zImage.

Any ides?

-- 
Cheers,
Ilya.

[-- Attachment #2: Type: text/html, Size: 507 bytes --]

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

* Re: nitrogen6x and imx6qsabrelite machines uboot scripts
  2014-07-24 18:16 nitrogen6x and imx6qsabrelite machines uboot scripts Ilya Smelykh
@ 2014-07-24 20:11 ` Morgan McKenzie
  2014-07-25 14:49 ` Eric Nelson
  1 sibling, 0 replies; 14+ messages in thread
From: Morgan McKenzie @ 2014-07-24 20:11 UTC (permalink / raw)
  To: meta-freescale@yoctoproject.org

[-- Attachment #1: Type: text/plain, Size: 1428 bytes --]

Hi,
I ran into this too. I think that you might be able to modify the boot script and simply replace 'bootm' with 'bootz' but I haven't got around to trying it yet.
This is what I've been doing for now (messy but it works....). You'll probably have to change the 'video=' and possibly 'fatload' to 'ext2load', plus the dtb file if you're using a nitrogen6x.

setenv fdt_high 0xffffffffsetenv fdt_addr 0×13000000setenv bootargs video=mxcfb0:dev=ldb,LDB-XGA,if=RGB666  console=ttymxc1,115200 vmalloc=400M consoleblank=0 rootwait root=/dev/mmcblk0p2setenv fbmem “fbmem=28M”fatload mmc 0:1 12000000 imx6q-sabrelite.dtbfatload mmc 0:1 10800000 zImagebootz 10800000 – 12000000

Regards,
Morgan McKenzie
From: ilya.smelykh@gmail.com
Date: Fri, 25 Jul 2014 01:16:56 +0700
To: meta-freescale@yoctoproject.org
Subject: [meta-freescale] nitrogen6x and imx6qsabrelite machines uboot	scripts

Hi guys,
 After my last update to the current master I've found the problem with uboot scripts for imx6qsabreliteand nitrogen6x machines.  Sabre machine has no scripts at all and it cause an error while building, 

nitrogen6x has scripts which trying to load uImage, but actual kernel which was deployed is zImage.
Any ides?
-- 
Cheers,Ilya.


-- 
_______________________________________________
meta-freescale mailing list
meta-freescale@yoctoproject.org
https://lists.yoctoproject.org/listinfo/meta-freescale 		 	   		  

[-- Attachment #2: Type: text/html, Size: 4062 bytes --]

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

* Re: nitrogen6x and imx6qsabrelite machines uboot scripts
  2014-07-24 18:16 nitrogen6x and imx6qsabrelite machines uboot scripts Ilya Smelykh
  2014-07-24 20:11 ` Morgan McKenzie
@ 2014-07-25 14:49 ` Eric Nelson
  2014-07-25 15:39   ` Ilya Smelykh
  2014-07-25 19:15   ` Otavio Salvador
  1 sibling, 2 replies; 14+ messages in thread
From: Eric Nelson @ 2014-07-25 14:49 UTC (permalink / raw)
  To: Ilya Smelykh, meta-freescale@yoctoproject.org

Hi Ilya,

On 07/24/2014 11:16 AM, Ilya Smelykh wrote:
> Hi guys,
> 
>  After my last update to the current master I've found the problem with
> uboot scripts for imx6qsabrelite
> and nitrogen6x machines.  Sabre machine has no scripts at all and it
> cause an error while building, 

Christoph's patch fixes this, but as he said, in the mean-time
you can use MACHINE=nitrogen6x with no meaningful difference.

> nitrogen6x has scripts which trying to load uImage, but actual kernel
> which was deployed is zImage.
> 

Can you explain what you mean by this (use of zImage)?

The current machine definition will generate a uImage, not a zImage,
and the boot script is configured to load the same.

Please advise,


Eric


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

* Re: nitrogen6x and imx6qsabrelite machines uboot scripts
  2014-07-25 14:49 ` Eric Nelson
@ 2014-07-25 15:39   ` Ilya Smelykh
  2014-07-25 16:25     ` Eric Nelson
  2014-07-25 19:15   ` Otavio Salvador
  1 sibling, 1 reply; 14+ messages in thread
From: Ilya Smelykh @ 2014-07-25 15:39 UTC (permalink / raw)
  To: Eric Nelson; +Cc: meta-freescale@yoctoproject.org

[-- Attachment #1: Type: text/plain, Size: 1024 bytes --]

Hi Eric,


2014-07-25 21:49 GMT+07:00 Eric Nelson <eric.nelson@boundarydevices.com>:

> Hi Ilya,
>
> On 07/24/2014 11:16 AM, Ilya Smelykh wrote:
> > Hi guys,
> >
> >  After my last update to the current master I've found the problem with
> > uboot scripts for imx6qsabrelite
> > and nitrogen6x machines.  Sabre machine has no scripts at all and it
> > cause an error while building,
>
> Christoph's patch fixes this, but as he said, in the mean-time
> you can use MACHINE=nitrogen6x with no meaningful difference.
>
> > nitrogen6x has scripts which trying to load uImage, but actual kernel
> > which was deployed is zImage.
> >
>
> Can you explain what you mean by this (use of zImage)?
>
> The current machine definition will generate a uImage, not a zImage,
> and the boot script is configured to load the same.
>
> Please advise,
>
>
> Eric
>

Its strange, but in my case I can see only zImage in deploy directory for
both machines after bitbaking the image...


-- 
Cheers,
Ilya.

[-- Attachment #2: Type: text/html, Size: 1580 bytes --]

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

* Re: nitrogen6x and imx6qsabrelite machines uboot scripts
  2014-07-25 15:39   ` Ilya Smelykh
@ 2014-07-25 16:25     ` Eric Nelson
  2014-07-25 16:27       ` Ilya Smelykh
  0 siblings, 1 reply; 14+ messages in thread
From: Eric Nelson @ 2014-07-25 16:25 UTC (permalink / raw)
  To: Ilya Smelykh; +Cc: meta-freescale@yoctoproject.org

Hi Ilya,

On 07/25/2014 08:39 AM, Ilya Smelykh wrote:
> Hi Eric,
>
> 2014-07-25 21:49 GMT+07:00 Eric Nelson <eric.nelson@boundarydevices.com>:
> 
>     Hi Ilya,
> 
> <snip>
>
>     Can you explain what you mean by this (use of zImage)?
> 
>     The current machine definition will generate a uImage, not a zImage,
>     and the boot script is configured to load the same.
> 
> Its strange, but in my case I can see only zImage in deploy directory
> for both machines after bitbaking the image...
> 

Apparently I was wrong, and the machine definitions weren't explicity
about the kernel image type. The default must have changed somewhere
along the way, so I just sent patches to address this.

Regards,


Eric


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

* Re: nitrogen6x and imx6qsabrelite machines uboot scripts
  2014-07-25 16:25     ` Eric Nelson
@ 2014-07-25 16:27       ` Ilya Smelykh
  2014-07-25 16:39         ` Eric Nelson
  0 siblings, 1 reply; 14+ messages in thread
From: Ilya Smelykh @ 2014-07-25 16:27 UTC (permalink / raw)
  To: Eric Nelson; +Cc: meta-freescale@yoctoproject.org

[-- Attachment #1: Type: text/plain, Size: 927 bytes --]

Hi Eric,


2014-07-25 23:25 GMT+07:00 Eric Nelson <eric.nelson@boundarydevices.com>:

> Hi Ilya,
>
> On 07/25/2014 08:39 AM, Ilya Smelykh wrote:
> > Hi Eric,
> >
> > 2014-07-25 21:49 GMT+07:00 Eric Nelson <eric.nelson@boundarydevices.com
> >:
> >
> >     Hi Ilya,
> >
> > <snip>
> >
> >     Can you explain what you mean by this (use of zImage)?
> >
> >     The current machine definition will generate a uImage, not a zImage,
> >     and the boot script is configured to load the same.
> >
> > Its strange, but in my case I can see only zImage in deploy directory
> > for both machines after bitbaking the image...
> >
>
> Apparently I was wrong, and the machine definitions weren't explicity
> about the kernel image type. The default must have changed somewhere
> along the way, so I just sent patches to address this.
>
> Regards,
>
>
> Eric
>


Thanks for fix.

-- 
Cheers,
Ilya.

[-- Attachment #2: Type: text/html, Size: 1480 bytes --]

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

* Re: nitrogen6x and imx6qsabrelite machines uboot scripts
  2014-07-25 16:27       ` Ilya Smelykh
@ 2014-07-25 16:39         ` Eric Nelson
  2014-07-25 16:51           ` Ilya Smelykh
  0 siblings, 1 reply; 14+ messages in thread
From: Eric Nelson @ 2014-07-25 16:39 UTC (permalink / raw)
  To: Ilya Smelykh; +Cc: meta-freescale@yoctoproject.org

On 07/25/2014 09:27 AM, Ilya Smelykh wrote:
> Hi Eric,
> 
> 2014-07-25 23:25 GMT+07:00 Eric Nelson <eric.nelson@boundarydevices.com
>
>     Apparently I was wrong, and the machine definitions weren't explicity
>     about the kernel image type. The default must have changed somewhere
>     along the way, so I just sent patches to address this.
> 
> Thanks for fix.
> 

NP. Let us know how it works for you.



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

* Re: nitrogen6x and imx6qsabrelite machines uboot scripts
  2014-07-25 16:39         ` Eric Nelson
@ 2014-07-25 16:51           ` Ilya Smelykh
  2014-07-25 17:05             ` Eric Nelson
  0 siblings, 1 reply; 14+ messages in thread
From: Ilya Smelykh @ 2014-07-25 16:51 UTC (permalink / raw)
  To: Eric Nelson; +Cc: meta-freescale@yoctoproject.org

[-- Attachment #1: Type: text/plain, Size: 1436 bytes --]

Hi Eric,

2014-07-25 23:39 GMT+07:00 Eric Nelson <eric.nelson@boundarydevices.com>:

> On 07/25/2014 09:27 AM, Ilya Smelykh wrote:
> > Hi Eric,
> >
> > 2014-07-25 23:25 GMT+07:00 Eric Nelson <eric.nelson@boundarydevices.com
> >
> >     Apparently I was wrong, and the machine definitions weren't explicity
> >     about the kernel image type. The default must have changed somewhere
> >     along the way, so I just sent patches to address this.
> >
> > Thanks for fix.
> >
>
> NP. Let us know how it works for you.
>
>
Looks like something wrong still...

*ERROR: Failed to parse recipe:
.../sources/meta-fsl-arm/recipes-bsp/u-boot/u-boot-imx_2009.08.bb
<http://u-boot-imx_2009.08.bb>
                                                                   | ETA:
 00:00:09*
*ERROR: FILESEXTRAPATHS-variable, must always use _prepend (or _append)*
*type of assignment, and don't forget the colon.*
*Please assign it with the format of:*
*  FILESEXTRAPATHS_append := ":${THISDIR}/Your_Files_Path" or*
*  FILESEXTRAPATHS_prepend := "${THISDIR}/Your_Files_Path:"*
*in your bbappend file*

*Your incorrect assignment is:*
*.../sources/meta-fsl-arm-extra/recipes-bsp/u-boot/u-boot-imx__default:*


I''ve checked your patch for both machines and there is a same error, not
sure, possibly I missed something.
Please note that I'm using PREFERRED_PROVIDER_u-boot = "u-boot-boundary" .

-- 
Cheers,
Ilya.

[-- Attachment #2: Type: text/html, Size: 2602 bytes --]

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

* Re: nitrogen6x and imx6qsabrelite machines uboot scripts
  2014-07-25 16:51           ` Ilya Smelykh
@ 2014-07-25 17:05             ` Eric Nelson
  2014-07-25 17:17               ` Gary Thomas
  0 siblings, 1 reply; 14+ messages in thread
From: Eric Nelson @ 2014-07-25 17:05 UTC (permalink / raw)
  To: Ilya Smelykh; +Cc: meta-freescale@yoctoproject.org

On 07/25/2014 09:51 AM, Ilya Smelykh wrote:
> Hi Eric, 
> 
> 2014-07-25 23:39 GMT+07:00 Eric Nelson <eric.nelson@boundarydevices.com
> <mailto:eric.nelson@boundarydevices.com>>:
> 
>     On 07/25/2014 09:27 AM, Ilya Smelykh wrote:
>     > Hi Eric,
>     >
>     > 2014-07-25 23:25 GMT+07:00 Eric Nelson
>     <eric.nelson@boundarydevices.com
>     <mailto:eric.nelson@boundarydevices.com>
>     >
>     >     Apparently I was wrong, and the machine definitions weren't
>     explicity
>     >     about the kernel image type. The default must have changed
>     somewhere
>     >     along the way, so I just sent patches to address this.
>     >
>     > Thanks for fix.
>     >
> 
>     NP. Let us know how it works for you.
> 
> 
> Looks like something wrong still...
> 
> /ERROR: Failed to parse recipe:
> .../sources/meta-fsl-arm/recipes-bsp/u-boot/u-boot-imx_2009.08.bb
> <http://u-boot-imx_2009.08.bb>                                          
>                                                                      |
> ETA:  00:00:09/
> /ERROR: FILESEXTRAPATHS-variable, must always use _prepend (or _append)/
> /type of assignment, and don't forget the colon./
> /Please assign it with the format of:/
> /  FILESEXTRAPATHS_append := ":${THISDIR}/Your_Files_Path" or/
> /  FILESEXTRAPATHS_prepend := "${THISDIR}/Your_Files_Path:"/
> /in your bbappend file/
> /
> /
> /Your incorrect assignment is:/
> /.../sources/meta-fsl-arm-extra/recipes-bsp/u-boot/u-boot-imx__default:/
> 
> 
> I''ve checked your patch for both machines and there is a same error,
> not sure, possibly I missed something.
> Please note that I'm using PREFERRED_PROVIDER_u-boot = "u-boot-boundary" .
> 

Can you repeat this with a clean build tree?

I just built both linux-boundary and u-boot-boundary off of the head of
master with three patches:
	Christoph's patch for imx6qsabrelite
	My two patches

Please advise,


Eric



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

* Re: nitrogen6x and imx6qsabrelite machines uboot scripts
  2014-07-25 17:05             ` Eric Nelson
@ 2014-07-25 17:17               ` Gary Thomas
  2014-07-25 17:22                 ` Gary Thomas
  0 siblings, 1 reply; 14+ messages in thread
From: Gary Thomas @ 2014-07-25 17:17 UTC (permalink / raw)
  To: meta-freescale

On 2014-07-25 11:05, Eric Nelson wrote:
> On 07/25/2014 09:51 AM, Ilya Smelykh wrote:
>> Hi Eric,
>>
>> 2014-07-25 23:39 GMT+07:00 Eric Nelson <eric.nelson@boundarydevices.com
>> <mailto:eric.nelson@boundarydevices.com>>:
>>
>>      On 07/25/2014 09:27 AM, Ilya Smelykh wrote:
>>      > Hi Eric,
>>      >
>>      > 2014-07-25 23:25 GMT+07:00 Eric Nelson
>>      <eric.nelson@boundarydevices.com
>>      <mailto:eric.nelson@boundarydevices.com>
>>      >
>>      >     Apparently I was wrong, and the machine definitions weren't
>>      explicity
>>      >     about the kernel image type. The default must have changed
>>      somewhere
>>      >     along the way, so I just sent patches to address this.
>>      >
>>      > Thanks for fix.
>>      >
>>
>>      NP. Let us know how it works for you.
>>
>>
>> Looks like something wrong still...
>>
>> /ERROR: Failed to parse recipe:
>> .../sources/meta-fsl-arm/recipes-bsp/u-boot/u-boot-imx_2009.08.bb
>> <http://u-boot-imx_2009.08.bb>
>>                                                                       |
>> ETA:  00:00:09/
>> /ERROR: FILESEXTRAPATHS-variable, must always use _prepend (or _append)/
>> /type of assignment, and don't forget the colon./
>> /Please assign it with the format of:/
>> /  FILESEXTRAPATHS_append := ":${THISDIR}/Your_Files_Path" or/
>> /  FILESEXTRAPATHS_prepend := "${THISDIR}/Your_Files_Path:"/
>> /in your bbappend file/
>> /
>> /
>> /Your incorrect assignment is:/
>> /.../sources/meta-fsl-arm-extra/recipes-bsp/u-boot/u-boot-imx__default:/
>>
>>
>> I''ve checked your patch for both machines and there is a same error,
>> not sure, possibly I missed something.
>> Please note that I'm using PREFERRED_PROVIDER_u-boot = "u-boot-boundary" .
>>
>
> Can you repeat this with a clean build tree?
>
> I just built both linux-boundary and u-boot-boundary off of the head of
> master with three patches:
> 	Christoph's patch for imx6qsabrelite
> 	My two patches
>
> Please advise,

This came from a recent change in OE-core/Poky:
   commit 68bc4eb778764e4fa66dd6296ca2042e7a9ebf67
   Author: Hongxu Jia <hongxu.jia@windriver.com>
   Date:   Wed Jul 23 11:33:01 2014 +0800
     insane: add checking to standardize how .bbappend files do FILESEXTRAPATHS

-- 
------------------------------------------------------------
Gary Thomas                 |  Consulting for the
MLB Associates              |    Embedded world
------------------------------------------------------------


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

* Re: nitrogen6x and imx6qsabrelite machines uboot scripts
  2014-07-25 17:17               ` Gary Thomas
@ 2014-07-25 17:22                 ` Gary Thomas
  2014-07-25 17:25                   ` Eric Nelson
  0 siblings, 1 reply; 14+ messages in thread
From: Gary Thomas @ 2014-07-25 17:22 UTC (permalink / raw)
  To: meta-freescale

On 2014-07-25 11:17, Gary Thomas wrote:
> On 2014-07-25 11:05, Eric Nelson wrote:
>> On 07/25/2014 09:51 AM, Ilya Smelykh wrote:
>>> Hi Eric,
>>>
>>> 2014-07-25 23:39 GMT+07:00 Eric Nelson <eric.nelson@boundarydevices.com
>>> <mailto:eric.nelson@boundarydevices.com>>:
>>>
>>>      On 07/25/2014 09:27 AM, Ilya Smelykh wrote:
>>>      > Hi Eric,
>>>      >
>>>      > 2014-07-25 23:25 GMT+07:00 Eric Nelson
>>>      <eric.nelson@boundarydevices.com
>>>      <mailto:eric.nelson@boundarydevices.com>
>>>      >
>>>      >     Apparently I was wrong, and the machine definitions weren't
>>>      explicity
>>>      >     about the kernel image type. The default must have changed
>>>      somewhere
>>>      >     along the way, so I just sent patches to address this.
>>>      >
>>>      > Thanks for fix.
>>>      >
>>>
>>>      NP. Let us know how it works for you.
>>>
>>>
>>> Looks like something wrong still...
>>>
>>> /ERROR: Failed to parse recipe:
>>> .../sources/meta-fsl-arm/recipes-bsp/u-boot/u-boot-imx_2009.08.bb
>>> <http://u-boot-imx_2009.08.bb>
>>>                                                                       |
>>> ETA:  00:00:09/
>>> /ERROR: FILESEXTRAPATHS-variable, must always use _prepend (or _append)/
>>> /type of assignment, and don't forget the colon./
>>> /Please assign it with the format of:/
>>> /  FILESEXTRAPATHS_append := ":${THISDIR}/Your_Files_Path" or/
>>> /  FILESEXTRAPATHS_prepend := "${THISDIR}/Your_Files_Path:"/
>>> /in your bbappend file/
>>> /
>>> /
>>> /Your incorrect assignment is:/
>>> /.../sources/meta-fsl-arm-extra/recipes-bsp/u-boot/u-boot-imx__default:/
>>>
>>>
>>> I''ve checked your patch for both machines and there is a same error,
>>> not sure, possibly I missed something.
>>> Please note that I'm using PREFERRED_PROVIDER_u-boot = "u-boot-boundary" .
>>>
>>
>> Can you repeat this with a clean build tree?
>>
>> I just built both linux-boundary and u-boot-boundary off of the head of
>> master with three patches:
>>     Christoph's patch for imx6qsabrelite
>>     My two patches
>>
>> Please advise,
>
> This came from a recent change in OE-core/Poky:
>    commit 68bc4eb778764e4fa66dd6296ca2042e7a9ebf67
>    Author: Hongxu Jia <hongxu.jia@windriver.com>
>    Date:   Wed Jul 23 11:33:01 2014 +0800
>      insane: add checking to standardize how .bbappend files do FILESEXTRAPATHS
>

n.b. I wish this had been just a warning when first implemented!

-- 
------------------------------------------------------------
Gary Thomas                 |  Consulting for the
MLB Associates              |    Embedded world
------------------------------------------------------------


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

* Re: nitrogen6x and imx6qsabrelite machines uboot scripts
  2014-07-25 17:22                 ` Gary Thomas
@ 2014-07-25 17:25                   ` Eric Nelson
  2014-07-25 19:05                     ` Gary Thomas
  0 siblings, 1 reply; 14+ messages in thread
From: Eric Nelson @ 2014-07-25 17:25 UTC (permalink / raw)
  To: Gary Thomas, meta-freescale

On 07/25/2014 10:22 AM, Gary Thomas wrote:
> On 2014-07-25 11:17, Gary Thomas wrote:
>> On 2014-07-25 11:05, Eric Nelson wrote:
>> This came from a recent change in OE-core/Poky:
>>    commit 68bc4eb778764e4fa66dd6296ca2042e7a9ebf67
>>    Author: Hongxu Jia <hongxu.jia@windriver.com>
>>    Date:   Wed Jul 23 11:33:01 2014 +0800
>>      insane: add checking to standardize how .bbappend files do
>> FILESEXTRAPATHS
>>

Thanks Gary.

> 
> n.b. I wish this had been just a warning when first implemented!
> 

Ahh, life on the bleeding edge!



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

* Re: nitrogen6x and imx6qsabrelite machines uboot scripts
  2014-07-25 17:25                   ` Eric Nelson
@ 2014-07-25 19:05                     ` Gary Thomas
  0 siblings, 0 replies; 14+ messages in thread
From: Gary Thomas @ 2014-07-25 19:05 UTC (permalink / raw)
  To: meta-freescale

On 2014-07-25 11:25, Eric Nelson wrote:
> On 07/25/2014 10:22 AM, Gary Thomas wrote:
>> On 2014-07-25 11:17, Gary Thomas wrote:
>>> On 2014-07-25 11:05, Eric Nelson wrote:
>>> This came from a recent change in OE-core/Poky:
>>>     commit 68bc4eb778764e4fa66dd6296ca2042e7a9ebf67
>>>     Author: Hongxu Jia <hongxu.jia@windriver.com>
>>>     Date:   Wed Jul 23 11:33:01 2014 +0800
>>>       insane: add checking to standardize how .bbappend files do
>>> FILESEXTRAPATHS
>>>
>
> Thanks Gary.
>
>>
>> n.b. I wish this had been just a warning when first implemented!
>>
>
> Ahh, life on the bleeding edge!
>

Per my suggestion, Richard just changed this to be a warning so
an update of OE-core/Poky should make things build again.

-- 
------------------------------------------------------------
Gary Thomas                 |  Consulting for the
MLB Associates              |    Embedded world
------------------------------------------------------------


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

* Re: nitrogen6x and imx6qsabrelite machines uboot scripts
  2014-07-25 14:49 ` Eric Nelson
  2014-07-25 15:39   ` Ilya Smelykh
@ 2014-07-25 19:15   ` Otavio Salvador
  1 sibling, 0 replies; 14+ messages in thread
From: Otavio Salvador @ 2014-07-25 19:15 UTC (permalink / raw)
  To: Eric Nelson; +Cc: meta-freescale@yoctoproject.org

Eric,

On Fri, Jul 25, 2014 at 11:49 AM, Eric Nelson
<eric.nelson@boundarydevices.com> wrote:
...
> Can you explain what you mean by this (use of zImage)?
>
> The current machine definition will generate a uImage, not a zImage,
> and the boot script is configured to load the same.

http://git.yoctoproject.org/cgit/cgit.cgi/meta-fsl-arm/commit/?id=4b9a587d6d781e5922ac7b747d8a9adf708994d9

The meta-fsl-arm-extra boards need to update to this change. I didn't
make it so maintainers do take the time to look and check it.

-- 
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] 14+ messages in thread

end of thread, other threads:[~2014-07-25 19:15 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-24 18:16 nitrogen6x and imx6qsabrelite machines uboot scripts Ilya Smelykh
2014-07-24 20:11 ` Morgan McKenzie
2014-07-25 14:49 ` Eric Nelson
2014-07-25 15:39   ` Ilya Smelykh
2014-07-25 16:25     ` Eric Nelson
2014-07-25 16:27       ` Ilya Smelykh
2014-07-25 16:39         ` Eric Nelson
2014-07-25 16:51           ` Ilya Smelykh
2014-07-25 17:05             ` Eric Nelson
2014-07-25 17:17               ` Gary Thomas
2014-07-25 17:22                 ` Gary Thomas
2014-07-25 17:25                   ` Eric Nelson
2014-07-25 19:05                     ` Gary Thomas
2014-07-25 19:15   ` Otavio Salvador

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.