summaryrefslogtreecommitdiff
path: root/recipes
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2013-10-09 11:27:44 +0200
committerMax Krummenacher <max.krummenacher@toradex.com>2013-10-09 11:27:44 +0200
commitb5eb463a04886eabe0508dcce8687448fd9d89d7 (patch)
treeda93b6d9217e243c4456541f492a16e653eec776 /recipes
parentec048e01468e6efd5eff7f2630b6a2762478ac4b (diff)
xserver: remove bbappend for version 1.11.2
Diffstat (limited to 'recipes')
-rw-r--r--recipes/xorg-xserver/xserver-xorg_1.11.2.bbappend23
1 files changed, 0 insertions, 23 deletions
diff --git a/recipes/xorg-xserver/xserver-xorg_1.11.2.bbappend b/recipes/xorg-xserver/xserver-xorg_1.11.2.bbappend
deleted file mode 100644
index 6bf44ff..0000000
--- a/recipes/xorg-xserver/xserver-xorg_1.11.2.bbappend
+++ /dev/null
@@ -1,23 +0,0 @@
-# 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'))
-}