summaryrefslogtreecommitdiffstats
path: root/meta-yocto-bsp/conf
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denys@ti.com>2014-04-10 04:02:12 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-04-10 10:13:55 +0100
commita7d978cde201de7fa32fa6b0de272bd0f81790d2 (patch)
treef183e9dc6b466318cf40e1ebff2ce4d83ce60bd3 /meta-yocto-bsp/conf
parent47bad4205385606af631e9c17aaee108a070c38a (diff)
downloadpoky-a7d978cde201de7fa32fa6b0de272bd0f81790d2.tar.gz
beaglebone.conf: configuration updates
* Use fbdev video driver for xserver-xorg * Recommend installing device tree DTB files into rootfs /boot directory * Switch back to uImage kernel format from zImage, as U-boot was not updated - default has changed to zImage in newer U-boot 2013.10+, but we use 2013.07 * Correct copy/paste typo in serial console (From meta-yocto rev: 22f4158a8d64defe9acde902eda73ce2a380f10f) Signed-off-by: Denys Dmytriyenko <denys@ti.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-yocto-bsp/conf')
-rw-r--r--meta-yocto-bsp/conf/machine/beaglebone.conf10
1 files changed, 5 insertions, 5 deletions
diff --git a/meta-yocto-bsp/conf/machine/beaglebone.conf b/meta-yocto-bsp/conf/machine/beaglebone.conf
index f2ef0cf251..42637158df 100644
--- a/meta-yocto-bsp/conf/machine/beaglebone.conf
+++ b/meta-yocto-bsp/conf/machine/beaglebone.conf
@@ -6,11 +6,10 @@ PREFERRED_PROVIDER_virtual/xserver ?= "xserver-xorg"
6XSERVER ?= "xserver-xorg \ 6XSERVER ?= "xserver-xorg \
7 xf86-input-evdev \ 7 xf86-input-evdev \
8 xf86-input-mouse \ 8 xf86-input-mouse \
9 xf86-video-omapfb \ 9 xf86-video-fbdev \
10 xf86-input-keyboard" 10 xf86-input-keyboard"
11 11
12# Ship all kernel modules by default 12MACHINE_EXTRA_RRECOMMENDS = " kernel-modules kernel-devicetree"
13MACHINE_EXTRA_RRECOMMENDS = " kernel-modules"
14 13
15EXTRA_IMAGEDEPENDS += "u-boot" 14EXTRA_IMAGEDEPENDS += "u-boot"
16 15
@@ -20,13 +19,14 @@ include conf/machine/include/tune-cortexa8.inc
20IMAGE_FSTYPES += "tar.bz2 jffs2" 19IMAGE_FSTYPES += "tar.bz2 jffs2"
21EXTRA_IMAGECMD_jffs2 = "-lnp " 20EXTRA_IMAGECMD_jffs2 = "-lnp "
22 21
23SERIAL_CONSOLE = "115200 ttyO2" 22SERIAL_CONSOLE = "115200 ttyO0"
24 23
25PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto" 24PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto"
26PREFERRED_VERSION_linux-yocto ?= "3.14%" 25PREFERRED_VERSION_linux-yocto ?= "3.14%"
27 26
28KERNEL_IMAGETYPE = "zImage" 27KERNEL_IMAGETYPE = "uImage"
29KERNEL_DEVICETREE = "am335x-bone.dtb am335x-boneblack.dtb" 28KERNEL_DEVICETREE = "am335x-bone.dtb am335x-boneblack.dtb"
29KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}"
30 30
31SPL_BINARY = "MLO" 31SPL_BINARY = "MLO"
32UBOOT_SUFFIX = "img" 32UBOOT_SUFFIX = "img"