diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-26 11:03:45 -0700 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-27 22:45:41 -0700 |
commit | fb10983b991eaac4a1f4f3578f6891af8cf142db (patch) | |
tree | f687be7eaca90e9869093d4c94bdfd133d4ded35 /meta/conf/machine/qemux86-64.conf | |
parent | 752435eb3bc525da43eb94659e115156d572b68c (diff) | |
download | poky-fb10983b991eaac4a1f4f3578f6891af8cf142db.tar.gz |
qemux86-64: Add new emulation machine for 64bit x86
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/conf/machine/qemux86-64.conf')
-rw-r--r-- | meta/conf/machine/qemux86-64.conf | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/conf/machine/qemux86-64.conf b/meta/conf/machine/qemux86-64.conf new file mode 100644 index 0000000000..85d79f686f --- /dev/null +++ b/meta/conf/machine/qemux86-64.conf | |||
@@ -0,0 +1,35 @@ | |||
1 | #@TYPE: Machine | ||
2 | #@NAME: common_pc | ||
3 | #@DESCRIPTION: Machine configuration for running a common x86 | ||
4 | |||
5 | TARGET_ARCH = "x86_64" | ||
6 | PACKAGE_EXTRA_ARCHS = "x86" | ||
7 | |||
8 | PREFERRED_PROVIDER_virtual/libgl = "mesa-dri" | ||
9 | PREFERRED_PROVIDER_virtual/libx11 ?= "libx11-trim" | ||
10 | PREFERRED_PROVIDER_virtual/xserver ?= "xserver-xf86-dri-lite" | ||
11 | PREFERRED_PROVIDER_virtual/xserver-xf86 ?= "xserver-xf86-dri-lite" | ||
12 | |||
13 | require conf/machine/include/qemu.inc | ||
14 | |||
15 | MACHINE_FEATURES += "x86" | ||
16 | |||
17 | KERNEL_IMAGETYPE = "bzImage" | ||
18 | |||
19 | SERIAL_CONSOLE = "115200 ttyS0" | ||
20 | |||
21 | # We bypass swrast but we need it to be present for X to load correctly | ||
22 | XSERVER ?= "xserver-xf86-dri-lite \ | ||
23 | mesa-dri-driver-swrast \ | ||
24 | xf86-input-vmmouse \ | ||
25 | xf86-input-keyboard \ | ||
26 | xf86-input-evdev \ | ||
27 | xf86-video-vmware \ | ||
28 | qemugl" | ||
29 | |||
30 | GLIBC_ADDONS = "nptl" | ||
31 | GLIBC_EXTRA_OECONF = "--with-tls" | ||
32 | |||
33 | MACHINE_ESSENTIAL_EXTRA_RDEPENDS = "v86d" | ||
34 | |||
35 | TARGET_CC_ARCH = "-march=core2 -m64" | ||