diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-04-30 22:01:24 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-24 08:53:39 +0100 |
commit | 62dba36166bc5faa32ba3e0664ae98b168cde6b1 (patch) | |
tree | 1d6a25cb947dc74ce55f6e8b2465e1dbb84ea05a /meta/conf/machine/qemux86.conf | |
parent | 801bfa7edfbff1522964efab0c0ba40bbc52c601 (diff) | |
download | openembedded-core-62dba36166bc5faa32ba3e0664ae98b168cde6b1.tar.gz openembedded-core-62dba36166bc5faa32ba3e0664ae98b168cde6b1.tar.bz2 openembedded-core-62dba36166bc5faa32ba3e0664ae98b168cde6b1.zip |
qemumachines: Enable xserver-xorg as default xserver
For qemux86 and qemux86-64 include qemu.inc after defining XSERVER
XSERVER variable is also weakly defined in task-core-x11.bb
which means we can not use ??= otherwise when building any qemu image
that uses task-core-x11.bb will get the wrong definition
So we define the XSERVER common set for qemu in qemu.inc
and as we know x86 and x86-64 qemu overrides the default
we include qemu.inc after that definition which means that
qemux86 and qemux86-64 get their own definitions and other
qemus get the definitions from qemu.inc. other non-qemu machine
will get their defintion from task which points to kdrive
as of now.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta/conf/machine/qemux86.conf')
-rw-r--r-- | meta/conf/machine/qemux86.conf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/conf/machine/qemux86.conf b/meta/conf/machine/qemux86.conf index 246d5a0c85..ad840c0498 100644 --- a/meta/conf/machine/qemux86.conf +++ b/meta/conf/machine/qemux86.conf @@ -6,7 +6,6 @@ PREFERRED_PROVIDER_virtual/xserver ?= "xserver-xorg" PREFERRED_PROVIDER_virtual/libgl ?= "mesa-dri" require conf/machine/include/tune-i586.inc -require conf/machine/include/qemu.inc MACHINE_FEATURES += "x86" @@ -23,6 +22,8 @@ XSERVER ?= "xserver-xorg \ xf86-video-vmware \ qemugl" +require conf/machine/include/qemu.inc + GLIBC_ADDONS = "nptl" GLIBC_EXTRA_OECONF = "--with-tls" |