diff options
author | Ross Burton <ross.burton@intel.com> | 2013-09-11 12:07:21 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-11 12:29:06 +0100 |
commit | 40232ed397a586a520ce6ef6e005d4db336ace03 (patch) | |
tree | 7b374ea0db121be6f726d293e284ea7d8efb5042 /scripts/lib/bsp | |
parent | 775bc290fb9a17883965c60295d95a74e676b348 (diff) | |
download | poky-40232ed397a586a520ce6ef6e005d4db336ace03.tar.gz |
yocto-bsp: conditionalise mesa-swrast on opengl in templates
As per the similar commit in oe-core on the qemu machines, the templates should
respect the opengl DISTRO_FEATURE when adding mesa-driver-swrast to new qemu
machines.
(From meta-yocto rev: 8d42ea2b2566913642c759e48ffe1f5f5166c510)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/lib/bsp')
-rw-r--r-- | scripts/lib/bsp/substrate/target/arch/qemu/conf/machine/{{=machine}}.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/bsp/substrate/target/arch/qemu/conf/machine/{{=machine}}.conf b/scripts/lib/bsp/substrate/target/arch/qemu/conf/machine/{{=machine}}.conf index d66d28f7ad..782ac217d9 100644 --- a/scripts/lib/bsp/substrate/target/arch/qemu/conf/machine/{{=machine}}.conf +++ b/scripts/lib/bsp/substrate/target/arch/qemu/conf/machine/{{=machine}}.conf | |||
@@ -47,7 +47,7 @@ MACHINE_FEATURES += "x86" | |||
47 | KERNEL_IMAGETYPE = "bzImage" | 47 | KERNEL_IMAGETYPE = "bzImage" |
48 | SERIAL_CONSOLE = "115200 ttyS0" | 48 | SERIAL_CONSOLE = "115200 ttyS0" |
49 | XSERVER = "xserver-xorg \ | 49 | XSERVER = "xserver-xorg \ |
50 | mesa-driver-swrast \ | 50 | ${@base_contains('DISTRO_FEATURES', 'opengl', 'mesa-driver-swrast', '', d)} \ |
51 | xf86-input-vmmouse \ | 51 | xf86-input-vmmouse \ |
52 | xf86-input-keyboard \ | 52 | xf86-input-keyboard \ |
53 | xf86-input-evdev \ | 53 | xf86-input-evdev \ |