yocto-bsp: update yocto-bsp xorg.conf templates

The non-x86 qemu machines now require an xorg.conf, change the
templates accordingly.

Fixes [YOCTO #2559]

(From meta-yocto rev: d465c09d8df0e6d210ba8cd3c17549a07a8e134d)

Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Tom Zanussi 2012-06-18 14:01:34 -05:00 committed by Richard Purdie
parent cad078c4d0
commit 2a29b7d087
2 changed files with 8 additions and 2 deletions

View File

@ -14,7 +14,11 @@ EndSection
Section "InputDevice"
Identifier "Configured Mouse"
{{ if qemuarch == "arm" or qemuarch == "powerpc" or qemuarch == "mips": }}
Driver "mouse"
{{ if qemuarch == "i386" or qemuarch == "x86_64": }}
Driver "vmmouse"
Option "CorePointer"
Option "Device" "/dev/input/mice"
Option "Protocol" "ImPS/2"
@ -32,7 +36,11 @@ EndSection
Section "Device"
Identifier "Graphics Controller"
{{ if qemuarch == "arm" or qemuarch == "powerpc" or qemuarch == "mips": }}
Driver "fbdev"
{{ if qemuarch == "i386" or qemuarch == "x86_64": }}
Driver "vmware"
EndSection
Section "Monitor"

View File

@ -1,2 +0,0 @@
THISDIR := "${@os.path.dirname(bb.data.getVar('FILE', d, True))}"
FILESPATH =. "${@base_set_filespath(["${THISDIR}/${PN}"], d)}:"