* [meta-yocto-bsp][PATCH] beaglebone.conf: update KERNEL_IMAGETYPE to match u-boot
@ 2014-12-09 15:44 Maciej Borzecki
2014-12-09 15:50 ` Denys Dmytriyenko
` (2 more replies)
0 siblings, 3 replies; 9+ messages in thread
From: Maciej Borzecki @ 2014-12-09 15:44 UTC (permalink / raw)
To: yocto, Denys Dmytriyenko; +Cc: Maciek Borzecki
U-boot 2014.07 in Poky expects a zImage kernel image, thus a build done with
current machien config will not be directly useable. Update machine config to
produce a zImage.
Signed-off-by: Maciej Borzecki <maciej.borzecki@open-rnd.pl>
Signed-off-by: Maciek Borzecki <maciek.borzecki@gmail.com>
---
meta-yocto-bsp/conf/machine/beaglebone.conf | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta-yocto-bsp/conf/machine/beaglebone.conf b/meta-yocto-bsp/conf/machine/beaglebone.conf
index a316207..fb0189d 100644
--- a/meta-yocto-bsp/conf/machine/beaglebone.conf
+++ b/meta-yocto-bsp/conf/machine/beaglebone.conf
@@ -24,7 +24,7 @@ SERIAL_CONSOLE = "115200 ttyO0"
PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
PREFERRED_VERSION_linux-yocto ?= "3.14%"
-KERNEL_IMAGETYPE = "uImage"
+KERNEL_IMAGETYPE = "zImage"
KERNEL_DEVICETREE = "am335x-bone.dtb am335x-boneblack.dtb"
KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"
--
1.9.3
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [meta-yocto-bsp][PATCH] beaglebone.conf: update KERNEL_IMAGETYPE to match u-boot
2014-12-09 15:44 [meta-yocto-bsp][PATCH] beaglebone.conf: update KERNEL_IMAGETYPE to match u-boot Maciej Borzecki
@ 2014-12-09 15:50 ` Denys Dmytriyenko
2014-12-11 12:05 ` Maciek Borzecki
2014-12-09 15:51 ` Bruce Ashfield
2014-12-11 12:36 ` [meta-yocto-bsp][PATCH] README.hardware: update beaglebone entry to match KERNEL_IMAGETYPE Maciej Borzecki
2 siblings, 1 reply; 9+ messages in thread
From: Denys Dmytriyenko @ 2014-12-09 15:50 UTC (permalink / raw)
To: Maciej Borzecki; +Cc: yocto, Maciek Borzecki
On Tue, Dec 09, 2014 at 04:44:31PM +0100, Maciej Borzecki wrote:
> U-boot 2014.07 in Poky expects a zImage kernel image, thus a build done with
> current machien config will not be directly useable. Update machine config to
> produce a zImage.
>
> Signed-off-by: Maciej Borzecki <maciej.borzecki@open-rnd.pl>
> Signed-off-by: Maciek Borzecki <maciek.borzecki@gmail.com>
Acked-by: Denys Dmytriyenko <denys@ti.com>
This was sitting in my tree pending fixed update to U-boot 2014.10...
> ---
> meta-yocto-bsp/conf/machine/beaglebone.conf | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta-yocto-bsp/conf/machine/beaglebone.conf b/meta-yocto-bsp/conf/machine/beaglebone.conf
> index a316207..fb0189d 100644
> --- a/meta-yocto-bsp/conf/machine/beaglebone.conf
> +++ b/meta-yocto-bsp/conf/machine/beaglebone.conf
> @@ -24,7 +24,7 @@ SERIAL_CONSOLE = "115200 ttyO0"
> PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
> PREFERRED_VERSION_linux-yocto ?= "3.14%"
>
> -KERNEL_IMAGETYPE = "uImage"
> +KERNEL_IMAGETYPE = "zImage"
> KERNEL_DEVICETREE = "am335x-bone.dtb am335x-boneblack.dtb"
> KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"
>
> --
> 1.9.3
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [meta-yocto-bsp][PATCH] beaglebone.conf: update KERNEL_IMAGETYPE to match u-boot
2014-12-09 15:44 [meta-yocto-bsp][PATCH] beaglebone.conf: update KERNEL_IMAGETYPE to match u-boot Maciej Borzecki
2014-12-09 15:50 ` Denys Dmytriyenko
@ 2014-12-09 15:51 ` Bruce Ashfield
2014-12-09 17:59 ` Maciek Borzecki
2014-12-11 12:36 ` [meta-yocto-bsp][PATCH] README.hardware: update beaglebone entry to match KERNEL_IMAGETYPE Maciej Borzecki
2 siblings, 1 reply; 9+ messages in thread
From: Bruce Ashfield @ 2014-12-09 15:51 UTC (permalink / raw)
To: Maciej Borzecki, yocto, Denys Dmytriyenko; +Cc: Maciek Borzecki
On 12/09/2014 10:44 AM, Maciej Borzecki wrote:
> U-boot 2014.07 in Poky expects a zImage kernel image, thus a build done with
> current machien config will not be directly useable. Update machine config to
> produce a zImage.
poky's README.hardware should be updated as well. When we wrote the
instructions
(and tested on 3.14) the uImage worked, so that is what is referenced
in the instructions :)
Bruce
>
> Signed-off-by: Maciej Borzecki <maciej.borzecki@open-rnd.pl>
> Signed-off-by: Maciek Borzecki <maciek.borzecki@gmail.com>
> ---
> meta-yocto-bsp/conf/machine/beaglebone.conf | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta-yocto-bsp/conf/machine/beaglebone.conf b/meta-yocto-bsp/conf/machine/beaglebone.conf
> index a316207..fb0189d 100644
> --- a/meta-yocto-bsp/conf/machine/beaglebone.conf
> +++ b/meta-yocto-bsp/conf/machine/beaglebone.conf
> @@ -24,7 +24,7 @@ SERIAL_CONSOLE = "115200 ttyO0"
> PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
> PREFERRED_VERSION_linux-yocto ?= "3.14%"
>
> -KERNEL_IMAGETYPE = "uImage"
> +KERNEL_IMAGETYPE = "zImage"
> KERNEL_DEVICETREE = "am335x-bone.dtb am335x-boneblack.dtb"
> KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"
>
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [meta-yocto-bsp][PATCH] beaglebone.conf: update KERNEL_IMAGETYPE to match u-boot
2014-12-09 15:51 ` Bruce Ashfield
@ 2014-12-09 17:59 ` Maciek Borzecki
2014-12-09 18:13 ` Bruce Ashfield
0 siblings, 1 reply; 9+ messages in thread
From: Maciek Borzecki @ 2014-12-09 17:59 UTC (permalink / raw)
To: Bruce Ashfield; +Cc: yocto, Tom Zanussi, Denys Dmytriyenko
On wto, 2014-12-09 at 10:51 -0500, Bruce Ashfield wrote:
> On 12/09/2014 10:44 AM, Maciej Borzecki wrote:
> > U-boot 2014.07 in Poky expects a zImage kernel image, thus a build done with
> > current machien config will not be directly useable. Update machine config to
> > produce a zImage.
>
> poky's README.hardware should be updated as well. When we wrote the
> instructions
> (and tested on 3.14) the uImage worked, so that is what is referenced
> in the instructions :)
Actually README.hardware section about BBB can be updated with info
about wic. Starting with 1.7 working SD card images for BBB can be built
out of the box, without going through manual partitiong, untarring,
etc.
AFAIK the same applies to x86 images, though Tom would be the best
person to comment here.
> Bruce
>
> >
> > Signed-off-by: Maciej Borzecki <maciej.borzecki@open-rnd.pl>
> > Signed-off-by: Maciek Borzecki <maciek.borzecki@gmail.com>
> > ---
> > meta-yocto-bsp/conf/machine/beaglebone.conf | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/meta-yocto-bsp/conf/machine/beaglebone.conf b/meta-yocto-bsp/conf/machine/beaglebone.conf
> > index a316207..fb0189d 100644
> > --- a/meta-yocto-bsp/conf/machine/beaglebone.conf
> > +++ b/meta-yocto-bsp/conf/machine/beaglebone.conf
> > @@ -24,7 +24,7 @@ SERIAL_CONSOLE = "115200 ttyO0"
> > PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
> > PREFERRED_VERSION_linux-yocto ?= "3.14%"
> >
> > -KERNEL_IMAGETYPE = "uImage"
> > +KERNEL_IMAGETYPE = "zImage"
> > KERNEL_DEVICETREE = "am335x-bone.dtb am335x-boneblack.dtb"
> > KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"
> >
> >
>
--
Maciej Borzęcki
Senior Software Developer at Open-RnD Sp. z o.o., Poland
www.open-rnd.pl
mobile: +48 889 117 365, fax: +48 42 657 9079
Niniejsza wiadomość wraz z załącznikami może zawierać chronione prawem
lub poufne informacje i została wysłana wyłącznie do wiadomości i
użytku osób, do których została zaadresowana. Jeśli wiadomość została
otrzymana przypadkowo zabrania się jej kopiowania lub rozsyłania do
osób trzecich. W takim przypadku uprasza się o natychmiastowe
zniszczenie wiadomości oraz poinformowanie nadawcy o zaistniałej
sytuacji za pomocą wiadomości zwrotnej. Dziękujemy.
This message, including any attachments hereto, may contain privileged
or confidential information and is sent solely for the attention and
use of the intended addressee(s). If you are not an intended addressee,
you may neither use this message nor copy or deliver it to anyone. In
such case, you should immediately destroy this message and kindly notify
the sender by reply email. Thank you.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [meta-yocto-bsp][PATCH] beaglebone.conf: update KERNEL_IMAGETYPE to match u-boot
2014-12-09 17:59 ` Maciek Borzecki
@ 2014-12-09 18:13 ` Bruce Ashfield
0 siblings, 0 replies; 9+ messages in thread
From: Bruce Ashfield @ 2014-12-09 18:13 UTC (permalink / raw)
To: maciej.borzecki; +Cc: yocto, Tom Zanussi, Denys Dmytriyenko
On 12/09/2014 12:59 PM, Maciek Borzecki wrote:
> On wto, 2014-12-09 at 10:51 -0500, Bruce Ashfield wrote:
>> On 12/09/2014 10:44 AM, Maciej Borzecki wrote:
>>> U-boot 2014.07 in Poky expects a zImage kernel image, thus a build done with
>>> current machien config will not be directly useable. Update machine config to
>>> produce a zImage.
>>
>> poky's README.hardware should be updated as well. When we wrote the
>> instructions
>> (and tested on 3.14) the uImage worked, so that is what is referenced
>> in the instructions :)
>
> Actually README.hardware section about BBB can be updated with info
> about wic. Starting with 1.7 working SD card images for BBB can be built
> out of the box, without going through manual partitiong, untarring,
> etc.
>
I wouldn't remove the raw commands for wic-only instructions. Since there
are multiple ways to do it .. they can all be documented.
Bruce
> AFAIK the same applies to x86 images, though Tom would be the best
> person to comment here.
>
>
>> Bruce
>>
>>>
>>> Signed-off-by: Maciej Borzecki <maciej.borzecki@open-rnd.pl>
>>> Signed-off-by: Maciek Borzecki <maciek.borzecki@gmail.com>
>>> ---
>>> meta-yocto-bsp/conf/machine/beaglebone.conf | 2 +-
>>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/meta-yocto-bsp/conf/machine/beaglebone.conf b/meta-yocto-bsp/conf/machine/beaglebone.conf
>>> index a316207..fb0189d 100644
>>> --- a/meta-yocto-bsp/conf/machine/beaglebone.conf
>>> +++ b/meta-yocto-bsp/conf/machine/beaglebone.conf
>>> @@ -24,7 +24,7 @@ SERIAL_CONSOLE = "115200 ttyO0"
>>> PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
>>> PREFERRED_VERSION_linux-yocto ?= "3.14%"
>>>
>>> -KERNEL_IMAGETYPE = "uImage"
>>> +KERNEL_IMAGETYPE = "zImage"
>>> KERNEL_DEVICETREE = "am335x-bone.dtb am335x-boneblack.dtb"
>>> KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"
>>>
>>>
>>
>
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [meta-yocto-bsp][PATCH] beaglebone.conf: update KERNEL_IMAGETYPE to match u-boot
2014-12-09 15:50 ` Denys Dmytriyenko
@ 2014-12-11 12:05 ` Maciek Borzecki
2014-12-11 12:14 ` Bruce Ashfield
0 siblings, 1 reply; 9+ messages in thread
From: Maciek Borzecki @ 2014-12-11 12:05 UTC (permalink / raw)
To: yocto
On wto, 2014-12-09 at 10:50 -0500, Denys Dmytriyenko wrote:
> On Tue, Dec 09, 2014 at 04:44:31PM +0100, Maciej Borzecki wrote:
> > U-boot 2014.07 in Poky expects a zImage kernel image, thus a build done with
> > current machien config will not be directly useable. Update machine config to
> > produce a zImage.
> >
> > Signed-off-by: Maciej Borzecki <maciej.borzecki@open-rnd.pl>
> > Signed-off-by: Maciek Borzecki <maciek.borzecki@gmail.com>
>
> Acked-by: Denys Dmytriyenko <denys@ti.com>
Can we pick that up for master?
>
> This was sitting in my tree pending fixed update to U-boot 2014.10...
>
> > ---
> > meta-yocto-bsp/conf/machine/beaglebone.conf | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/meta-yocto-bsp/conf/machine/beaglebone.conf b/meta-yocto-bsp/conf/machine/beaglebone.conf
> > index a316207..fb0189d 100644
> > --- a/meta-yocto-bsp/conf/machine/beaglebone.conf
> > +++ b/meta-yocto-bsp/conf/machine/beaglebone.conf
> > @@ -24,7 +24,7 @@ SERIAL_CONSOLE = "115200 ttyO0"
> > PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
> > PREFERRED_VERSION_linux-yocto ?= "3.14%"
> >
> > -KERNEL_IMAGETYPE = "uImage"
> > +KERNEL_IMAGETYPE = "zImage"
> > KERNEL_DEVICETREE = "am335x-bone.dtb am335x-boneblack.dtb"
> > KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"
> >
> > --
> > 1.9.3
> >
--
Maciej Borzęcki
Senior Software Developer at Open-RnD Sp. z o.o., Poland
www.open-rnd.pl
mobile: +48 889 117 365, fax: +48 42 657 9079
Niniejsza wiadomość wraz z załącznikami może zawierać chronione prawem
lub poufne informacje i została wysłana wyłącznie do wiadomości i
użytku osób, do których została zaadresowana. Jeśli wiadomość została
otrzymana przypadkowo zabrania się jej kopiowania lub rozsyłania do
osób trzecich. W takim przypadku uprasza się o natychmiastowe
zniszczenie wiadomości oraz poinformowanie nadawcy o zaistniałej
sytuacji za pomocą wiadomości zwrotnej. Dziękujemy.
This message, including any attachments hereto, may contain privileged
or confidential information and is sent solely for the attention and
use of the intended addressee(s). If you are not an intended addressee,
you may neither use this message nor copy or deliver it to anyone. In
such case, you should immediately destroy this message and kindly notify
the sender by reply email. Thank you.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [meta-yocto-bsp][PATCH] beaglebone.conf: update KERNEL_IMAGETYPE to match u-boot
2014-12-11 12:05 ` Maciek Borzecki
@ 2014-12-11 12:14 ` Bruce Ashfield
2014-12-11 12:31 ` Maciek Borzecki
0 siblings, 1 reply; 9+ messages in thread
From: Bruce Ashfield @ 2014-12-11 12:14 UTC (permalink / raw)
To: maciej.borzecki, yocto
On 12/11/2014 07:05 AM, Maciek Borzecki wrote:
> On wto, 2014-12-09 at 10:50 -0500, Denys Dmytriyenko wrote:
>> On Tue, Dec 09, 2014 at 04:44:31PM +0100, Maciej Borzecki wrote:
>>> U-boot 2014.07 in Poky expects a zImage kernel image, thus a build done with
>>> current machien config will not be directly useable. Update machine config to
>>> produce a zImage.
>>>
>>> Signed-off-by: Maciej Borzecki <maciej.borzecki@open-rnd.pl>
>>> Signed-off-by: Maciek Borzecki <maciek.borzecki@gmail.com>
>>
>> Acked-by: Denys Dmytriyenko <denys@ti.com>
>
> Can we pick that up for master?
We really should spend the few minutes and make sure the zImage is updated
in the README as well. Since with this change, we are knowingly making
them invalid (I admit they don't work now if you can't boot the uImage,
but we shouldn't make it worse).
Bruce
>>
>> This was sitting in my tree pending fixed update to U-boot 2014.10...
>>
>>> ---
>>> meta-yocto-bsp/conf/machine/beaglebone.conf | 2 +-
>>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/meta-yocto-bsp/conf/machine/beaglebone.conf b/meta-yocto-bsp/conf/machine/beaglebone.conf
>>> index a316207..fb0189d 100644
>>> --- a/meta-yocto-bsp/conf/machine/beaglebone.conf
>>> +++ b/meta-yocto-bsp/conf/machine/beaglebone.conf
>>> @@ -24,7 +24,7 @@ SERIAL_CONSOLE = "115200 ttyO0"
>>> PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
>>> PREFERRED_VERSION_linux-yocto ?= "3.14%"
>>>
>>> -KERNEL_IMAGETYPE = "uImage"
>>> +KERNEL_IMAGETYPE = "zImage"
>>> KERNEL_DEVICETREE = "am335x-bone.dtb am335x-boneblack.dtb"
>>> KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"
>>>
>>> --
>>> 1.9.3
>>>
>
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [meta-yocto-bsp][PATCH] beaglebone.conf: update KERNEL_IMAGETYPE to match u-boot
2014-12-11 12:14 ` Bruce Ashfield
@ 2014-12-11 12:31 ` Maciek Borzecki
0 siblings, 0 replies; 9+ messages in thread
From: Maciek Borzecki @ 2014-12-11 12:31 UTC (permalink / raw)
To: Bruce Ashfield; +Cc: yocto
On czw, 2014-12-11 at 07:14 -0500, Bruce Ashfield wrote:
> On 12/11/2014 07:05 AM, Maciek Borzecki wrote:
> > On wto, 2014-12-09 at 10:50 -0500, Denys Dmytriyenko wrote:
> >> On Tue, Dec 09, 2014 at 04:44:31PM +0100, Maciej Borzecki wrote:
> >>> U-boot 2014.07 in Poky expects a zImage kernel image, thus a build done with
> >>> current machien config will not be directly useable. Update machine config to
> >>> produce a zImage.
> >>>
> >>> Signed-off-by: Maciej Borzecki <maciej.borzecki@open-rnd.pl>
> >>> Signed-off-by: Maciek Borzecki <maciek.borzecki@gmail.com>
> >>
> >> Acked-by: Denys Dmytriyenko <denys@ti.com>
> >
> > Can we pick that up for master?
>
> We really should spend the few minutes and make sure the zImage is updated
> in the README as well. Since with this change, we are knowingly making
> them invalid (I admit they don't work now if you can't boot the uImage,
> but we shouldn't make it worse).
Right, I'll send a patch shortly.
>
> >>
> >> This was sitting in my tree pending fixed update to U-boot 2014.10...
> >>
> >>> ---
> >>> meta-yocto-bsp/conf/machine/beaglebone.conf | 2 +-
> >>> 1 file changed, 1 insertion(+), 1 deletion(-)
> >>>
> >>> diff --git a/meta-yocto-bsp/conf/machine/beaglebone.conf b/meta-yocto-bsp/conf/machine/beaglebone.conf
> >>> index a316207..fb0189d 100644
> >>> --- a/meta-yocto-bsp/conf/machine/beaglebone.conf
> >>> +++ b/meta-yocto-bsp/conf/machine/beaglebone.conf
> >>> @@ -24,7 +24,7 @@ SERIAL_CONSOLE = "115200 ttyO0"
> >>> PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
> >>> PREFERRED_VERSION_linux-yocto ?= "3.14%"
> >>>
> >>> -KERNEL_IMAGETYPE = "uImage"
> >>> +KERNEL_IMAGETYPE = "zImage"
> >>> KERNEL_DEVICETREE = "am335x-bone.dtb am335x-boneblack.dtb"
> >>> KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"
> >>>
> >>> --
> >>> 1.9.3
> >>>
> >
> >
>
--
Maciej Borzęcki
Senior Software Developer at Open-RnD Sp. z o.o., Poland
www.open-rnd.pl
mobile: +48 889 117 365, fax: +48 42 657 9079
Niniejsza wiadomość wraz z załącznikami może zawierać chronione prawem
lub poufne informacje i została wysłana wyłącznie do wiadomości i
użytku osób, do których została zaadresowana. Jeśli wiadomość została
otrzymana przypadkowo zabrania się jej kopiowania lub rozsyłania do
osób trzecich. W takim przypadku uprasza się o natychmiastowe
zniszczenie wiadomości oraz poinformowanie nadawcy o zaistniałej
sytuacji za pomocą wiadomości zwrotnej. Dziękujemy.
This message, including any attachments hereto, may contain privileged
or confidential information and is sent solely for the attention and
use of the intended addressee(s). If you are not an intended addressee,
you may neither use this message nor copy or deliver it to anyone. In
such case, you should immediately destroy this message and kindly notify
the sender by reply email. Thank you.
^ permalink raw reply [flat|nested] 9+ messages in thread
* [meta-yocto-bsp][PATCH] README.hardware: update beaglebone entry to match KERNEL_IMAGETYPE
2014-12-09 15:44 [meta-yocto-bsp][PATCH] beaglebone.conf: update KERNEL_IMAGETYPE to match u-boot Maciej Borzecki
2014-12-09 15:50 ` Denys Dmytriyenko
2014-12-09 15:51 ` Bruce Ashfield
@ 2014-12-11 12:36 ` Maciej Borzecki
2 siblings, 0 replies; 9+ messages in thread
From: Maciej Borzecki @ 2014-12-11 12:36 UTC (permalink / raw)
To: yocto, Bruce Ashfield, Denys Dmytriyenko; +Cc: Maciek Borzecki
U-boot 2014.07 defaults to using a gzip compressed kernel
image (zImage). A proper change upading KERNEL_IMAGETYPE has already
been introduced to beaglebone machine config. This patch updates manual
steps to creating a SD card image with proper kernel image name.
Signed-off-by: Maciej Borzecki <maciej.borzecki@open-rnd.pl>
Signed-off-by: Maciek Borzecki <maciek.borzecki@gmail.com>
---
README.hardware | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/README.hardware b/README.hardware
index d8faaa3..a97f104 100644
--- a/README.hardware
+++ b/README.hardware
@@ -251,14 +251,14 @@ if used via a usb card reader):
5. If using core-image-minimal rootfs, install the modules
# tar x -C /media/root -f modules-beaglebone.tgz
- 6. If using core-image-minimal rootfs, install the kernel uImage into /boot
+ 6. If using core-image-minimal rootfs, install the kernel zImage into /boot
directory of rootfs
- # cp uImage-beaglebone.bin /media/root/boot/uImage
+ # cp zImage-beaglebone.bin /media/root/boot/zImage
7. If using core-image-minimal rootfs, also install device tree (DTB) files
into /boot directory of rootfs
- # cp uImage-am335x-bone.dtb /media/root/boot/am335x-bone.dtb
- # cp uImage-am335x-boneblack.dtb /media/root/boot/am335x-boneblack.dtb
+ # cp zImage-am335x-bone.dtb /media/root/boot/am335x-bone.dtb
+ # cp zImage-am335x-boneblack.dtb /media/root/boot/am335x-boneblack.dtb
8. Unmount the SD partitions, insert the SD card into the Beaglebone, and
boot the Beaglebone
--
1.9.3
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2014-12-11 12:36 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-09 15:44 [meta-yocto-bsp][PATCH] beaglebone.conf: update KERNEL_IMAGETYPE to match u-boot Maciej Borzecki
2014-12-09 15:50 ` Denys Dmytriyenko
2014-12-11 12:05 ` Maciek Borzecki
2014-12-11 12:14 ` Bruce Ashfield
2014-12-11 12:31 ` Maciek Borzecki
2014-12-09 15:51 ` Bruce Ashfield
2014-12-09 17:59 ` Maciek Borzecki
2014-12-09 18:13 ` Bruce Ashfield
2014-12-11 12:36 ` [meta-yocto-bsp][PATCH] README.hardware: update beaglebone entry to match KERNEL_IMAGETYPE Maciej Borzecki
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.