diff options
author | Tom Zanussi <tom.zanussi@intel.com> | 2012-07-01 10:56:12 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-07-04 17:40:37 +0100 |
commit | fb8aaf6f8e180cb3fe4c2d02c041cb02be88ab46 (patch) | |
tree | d5a8134b317293a56403986dc1f43022ddd5ced9 | |
parent | c964536dc91936cf03bcdc3e31c2b4db75f6b49e (diff) | |
download | poky-fb8aaf6f8e180cb3fe4c2d02c041cb02be88ab46.tar.gz |
qemumachines: make MACHINE_FEATURES append follow qemu.inc include
qemu.inc does a straight assign to MACHINE_FEATURES so overwriting the
preceding append to MACHINE_FEATURES, so the MACHINE_FEATURES append
needs to be moved after the include.
This situation came about as a result of commit 71a4bf386:
qemumachines: Enable xserver-xorg as default xserver
For qemux86 and qemux86-64 include qemu.inc after defining XSERVER
which missed this side-effect (and maybe others).
(From OE-Core rev: 4f336e5f416df382fdd2b405314741164d537b22)
Signed-off-by: Tom Zanussi <tom.zanussi@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/conf/machine/qemux86-64.conf | 4 | ||||
-rw-r--r-- | meta/conf/machine/qemux86.conf | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/meta/conf/machine/qemux86-64.conf b/meta/conf/machine/qemux86-64.conf index 2e361a5cab..998ef60401 100644 --- a/meta/conf/machine/qemux86-64.conf +++ b/meta/conf/machine/qemux86-64.conf | |||
@@ -7,8 +7,6 @@ PREFERRED_PROVIDER_virtual/libgl ?= "mesa-dri" | |||
7 | 7 | ||
8 | require conf/machine/include/tune-x86_64.inc | 8 | require conf/machine/include/tune-x86_64.inc |
9 | 9 | ||
10 | MACHINE_FEATURES += "x86" | ||
11 | |||
12 | KERNEL_IMAGETYPE = "bzImage" | 10 | KERNEL_IMAGETYPE = "bzImage" |
13 | 11 | ||
14 | SERIAL_CONSOLE = "115200 ttyS0" | 12 | SERIAL_CONSOLE = "115200 ttyS0" |
@@ -24,6 +22,8 @@ XSERVER ?= "xserver-xorg \ | |||
24 | 22 | ||
25 | require conf/machine/include/qemu.inc | 23 | require conf/machine/include/qemu.inc |
26 | 24 | ||
25 | MACHINE_FEATURES += "x86" | ||
26 | |||
27 | GLIBC_ADDONS = "nptl" | 27 | GLIBC_ADDONS = "nptl" |
28 | GLIBC_EXTRA_OECONF = "--with-tls" | 28 | GLIBC_EXTRA_OECONF = "--with-tls" |
29 | 29 | ||
diff --git a/meta/conf/machine/qemux86.conf b/meta/conf/machine/qemux86.conf index ad840c0498..57e480c851 100644 --- a/meta/conf/machine/qemux86.conf +++ b/meta/conf/machine/qemux86.conf | |||
@@ -7,8 +7,6 @@ PREFERRED_PROVIDER_virtual/libgl ?= "mesa-dri" | |||
7 | 7 | ||
8 | require conf/machine/include/tune-i586.inc | 8 | require conf/machine/include/tune-i586.inc |
9 | 9 | ||
10 | MACHINE_FEATURES += "x86" | ||
11 | |||
12 | KERNEL_IMAGETYPE = "bzImage" | 10 | KERNEL_IMAGETYPE = "bzImage" |
13 | 11 | ||
14 | SERIAL_CONSOLE = "115200 ttyS0" | 12 | SERIAL_CONSOLE = "115200 ttyS0" |
@@ -24,6 +22,8 @@ XSERVER ?= "xserver-xorg \ | |||
24 | 22 | ||
25 | require conf/machine/include/qemu.inc | 23 | require conf/machine/include/qemu.inc |
26 | 24 | ||
25 | MACHINE_FEATURES += "x86" | ||
26 | |||
27 | GLIBC_ADDONS = "nptl" | 27 | GLIBC_ADDONS = "nptl" |
28 | GLIBC_EXTRA_OECONF = "--with-tls" | 28 | GLIBC_EXTRA_OECONF = "--with-tls" |
29 | 29 | ||