diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2014-04-24 15:59:20 -0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-25 17:20:28 +0100 |
commit | 1528e596d4906c33e4be83fcf691cfe76d340ff3 (patch) | |
tree | 2941a4e853ad74f1066650e27db5f5dbbf4bb75f /scripts/lib/bsp | |
parent | b5606f32cdf9d0055e8ec7329d77693fe88db19a (diff) | |
download | poky-1528e596d4906c33e4be83fcf691cfe76d340ff3.tar.gz |
Globally replace 'base_contains' calls with 'bb.utils.contains'
The base_contains is kept as a compatibility method and we ought to
not use it in OE-Core so we can remove it from base metadata in
future.
(From meta-yocto rev: 5021839af713cb34bea5888981f2184104b6d35e)
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
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 782ac217d9..0f7ff62640 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 | ${@base_contains('DISTRO_FEATURES', 'opengl', 'mesa-driver-swrast', '', d)} \ | 50 | ${@bb.utils.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 \ |