diff options
author | Denys Dmytriyenko <denys@ti.com> | 2014-04-10 04:02:12 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-10 10:13:55 +0100 |
commit | a7d978cde201de7fa32fa6b0de272bd0f81790d2 (patch) | |
tree | f183e9dc6b466318cf40e1ebff2ce4d83ce60bd3 /meta-yocto-bsp/conf/machine/beaglebone.conf | |
parent | 47bad4205385606af631e9c17aaee108a070c38a (diff) | |
download | poky-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/machine/beaglebone.conf')
-rw-r--r-- | meta-yocto-bsp/conf/machine/beaglebone.conf | 10 |
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" | |||
6 | XSERVER ?= "xserver-xorg \ | 6 | XSERVER ?= "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 | 12 | MACHINE_EXTRA_RRECOMMENDS = " kernel-modules kernel-devicetree" |
13 | MACHINE_EXTRA_RRECOMMENDS = " kernel-modules" | ||
14 | 13 | ||
15 | EXTRA_IMAGEDEPENDS += "u-boot" | 14 | EXTRA_IMAGEDEPENDS += "u-boot" |
16 | 15 | ||
@@ -20,13 +19,14 @@ include conf/machine/include/tune-cortexa8.inc | |||
20 | IMAGE_FSTYPES += "tar.bz2 jffs2" | 19 | IMAGE_FSTYPES += "tar.bz2 jffs2" |
21 | EXTRA_IMAGECMD_jffs2 = "-lnp " | 20 | EXTRA_IMAGECMD_jffs2 = "-lnp " |
22 | 21 | ||
23 | SERIAL_CONSOLE = "115200 ttyO2" | 22 | SERIAL_CONSOLE = "115200 ttyO0" |
24 | 23 | ||
25 | PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto" | 24 | PREFERRED_PROVIDER_virtual/kernel ?= "linux-yocto" |
26 | PREFERRED_VERSION_linux-yocto ?= "3.14%" | 25 | PREFERRED_VERSION_linux-yocto ?= "3.14%" |
27 | 26 | ||
28 | KERNEL_IMAGETYPE = "zImage" | 27 | KERNEL_IMAGETYPE = "uImage" |
29 | KERNEL_DEVICETREE = "am335x-bone.dtb am335x-boneblack.dtb" | 28 | KERNEL_DEVICETREE = "am335x-bone.dtb am335x-boneblack.dtb" |
29 | KERNEL_EXTRA_ARGS += "LOADADDR=${UBOOT_ENTRYPOINT}" | ||
30 | 30 | ||
31 | SPL_BINARY = "MLO" | 31 | SPL_BINARY = "MLO" |
32 | UBOOT_SUFFIX = "img" | 32 | UBOOT_SUFFIX = "img" |