diff options
author | Lauren Post <lauren.post@freescale.com> | 2015-07-24 10:40:48 -0500 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2015-07-28 23:26:59 -0300 |
commit | fe4d173a7931c468984d30deb62f5c907706239b (patch) | |
tree | ad0522ee5a1cae1239c59d54d91b8c93ba13fff8 /recipes-graphics/mesa | |
parent | 64d8b18601da648875f933c56b6c0fe04a0a7e53 (diff) | |
download | meta-freescale-fe4d173a7931c468984d30deb62f5c907706239b.tar.gz |
mesa-demos: Fix so patches only install for SoC with GPU
Only install patches for SoC with a GPU. Future i.MX 6UltraLite
does not have a GPU.
Signed-off-by: Lauren Post <lauren.post@freescale.com>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes-graphics/mesa')
-rw-r--r-- | recipes-graphics/mesa/mesa-demos_%.bbappend | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/recipes-graphics/mesa/mesa-demos_%.bbappend b/recipes-graphics/mesa/mesa-demos_%.bbappend index 9f675a25..65f3d53b 100644 --- a/recipes-graphics/mesa/mesa-demos_%.bbappend +++ b/recipes-graphics/mesa/mesa-demos_%.bbappend | |||
@@ -1,6 +1,12 @@ | |||
1 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" | 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:" |
2 | 2 | ||
3 | SRC_URI_append_mx6 = " file://Replace-glWindowPos2iARB-calls-with-glWindowPos2i.patch \ | 3 | MESA-DEMO-PATCH = " file://Replace-glWindowPos2iARB-calls-with-glWindowPos2i.patch \ |
4 | file://fix-clear-build-break.patch" | 4 | file://fix-clear-build-break.patch" |
5 | |||
6 | # only apply patches on mx6 that have a GPU | ||
7 | SRC_URI_append_mx6q = " ${MESA-DEMO-PATCH}" | ||
8 | SRC_URI_append_mx6dl = " ${MESA-DEMO-PATCH}" | ||
9 | SRC_URI_append_mx6sx = " ${MESA-DEMO-PATCH}" | ||
10 | SRC_URI_append_mx6sl = " ${MESA-DEMO-PATCH}" | ||
5 | 11 | ||
6 | PACKAGECONFIG_remove_mx6sl = "gles1 gles2" | 12 | PACKAGECONFIG_remove_mx6sl = "gles1 gles2" |