From eacfc89bb87d171c3087fcaf520d8968b8020e31 Mon Sep 17 00:00:00 2001 From: Max Krummenacher Date: Mon, 26 Aug 2013 15:25:08 +0200 Subject: xserver: enable xinerame for apalis-t30 platform --- .../xorg-xserver/xserver-xorg_1.11.2.bbappend | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 recipes-graphics/xorg-xserver/xserver-xorg_1.11.2.bbappend (limited to 'recipes-graphics') diff --git a/recipes-graphics/xorg-xserver/xserver-xorg_1.11.2.bbappend b/recipes-graphics/xorg-xserver/xserver-xorg_1.11.2.bbappend new file mode 100644 index 0000000..6bf44ff --- /dev/null +++ b/recipes-graphics/xorg-xserver/xserver-xorg_1.11.2.bbappend @@ -0,0 +1,23 @@ +# When Apalis T30 is used with a external NV graphics card, the binary +# only driver fails (the dynamic linker can not resolve all symbols), +# when xinerama is disabled in the X server + +# adapted from meta-fsl-arm/recipes-graphics/mesa/ +python __anonymous () { + import re + + cur_machine = d.getVar('MACHINE', True) + if cur_machine == 'apalis-t30': + # Remove --disable-xinerama from EXTRA_OECONF + extra_oeconf = d.getVar('EXTRA_OECONF', True).split() + take_out = ['--disable-xinerama'] + new_extra_oeconf = [] + for i in extra_oeconf: + if i not in take_out: + new_extra_oeconf.append(i) + + d.setVar('EXTRA_OECONF', ' '.join(new_extra_oeconf)) + + # We are now machine specific + d.setVar('PACKAGE_ARCH', d.getVar('MACHINE_ARCH')) +} -- cgit v1.2.3