diff options
author | Maciej Borzecki <maciej.borzecki@open-rnd.pl> | 2014-12-09 16:44:31 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-21 12:38:07 +0000 |
commit | 1f5eaa3b365e39b058316ac6195d227f9e3a2b01 (patch) | |
tree | 8706591d25ccea16f8407ca056fbe5709e732980 | |
parent | 5d7274326f50a710127d909d3f359c6eaa285337 (diff) | |
download | poky-1f5eaa3b365e39b058316ac6195d227f9e3a2b01.tar.gz |
beaglebone.conf: update KERNEL_IMAGETYPE to match u-boot
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.
(From meta-yocto rev: 96afb63a83116b9993a23cd20b33a9a68e59b525)
Signed-off-by: Maciej Borzecki <maciej.borzecki@open-rnd.pl>
Signed-off-by: Maciek Borzecki <maciek.borzecki@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta-yocto-bsp/conf/machine/beaglebone.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-yocto-bsp/conf/machine/beaglebone.conf b/meta-yocto-bsp/conf/machine/beaglebone.conf index a316207775..fb0189d5d7 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" | |||
24 | PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto" | 24 | PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto" |
25 | PREFERRED_VERSION_linux-yocto ?= "3.14%" | 25 | PREFERRED_VERSION_linux-yocto ?= "3.14%" |
26 | 26 | ||
27 | KERNEL_IMAGETYPE = "uImage" | 27 | KERNEL_IMAGETYPE = "zImage" |
28 | KERNEL_DEVICETREE = "am335x-bone.dtb am335x-boneblack.dtb" | 28 | KERNEL_DEVICETREE = "am335x-bone.dtb am335x-boneblack.dtb" |
29 | KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}" | 29 | KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}" |
30 | 30 | ||