summaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorNitin A Kamble <nitin.a.kamble@intel.com>2014-09-04 15:55:06 -0700
committerTom Zanussi <tom.zanussi@linux.intel.com>2014-09-16 20:12:28 -0500
commitc939705c186388df1eb68341a207fb2c6ac95f66 (patch)
treed3cfe7ef4b1d00822ad23bae82d5a0b8df5a82a2 /classes
parent964d5daa7cea2b357c68eb2c91d17779eeba6a49 (diff)
downloadmeta-intel-c939705c186388df1eb68341a207fb2c6ac95f66.tar.gz
Remove all the changes related to the proprietary EMGD graphics driver
As all the EMGD based BSPs have been retired, there is no need for the proprietary EMGD support in the meta-intel layer. Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com>
Diffstat (limited to 'classes')
-rw-r--r--classes/emgd-gl.bbclass11
1 files changed, 0 insertions, 11 deletions
diff --git a/classes/emgd-gl.bbclass b/classes/emgd-gl.bbclass
deleted file mode 100644
index ef1df699..00000000
--- a/classes/emgd-gl.bbclass
+++ /dev/null
@@ -1,11 +0,0 @@
1# give a different PACKAGE_ARCH to the recipes involved with opengl
2python __anonymous () {
3 provides = set((d.getVar("PROVIDES", True) or "").split())
4 depends = set((d.getVar("DEPENDS", True) or "").split())
5
6 glp = set([ "virtual/libgles1", "virtual/libgles2", "virtual/egl", "virtual/mesa" , "virtual/libgl"])
7 if list(glp & (provides | depends)): # set union & intersection operations
8 # matched
9 d.appendVar("PACKAGE_ARCH", "${GLSUFFIX}")
10 return
11}