diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2015-07-15 17:14:27 -0300 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2015-07-16 15:01:29 -0300 |
commit | f8517afc7a5ada4538b3b7d397fa32586d57ffe5 (patch) | |
tree | 79349f091306d1760fd4687e62336ffa8fb8c721 /recipes-qt/qt4/qt4-imx-support.inc | |
parent | c92b415d653afc55f33b6b93fb9248193bfd4fa0 (diff) | |
download | meta-freescale-f8517afc7a5ada4538b3b7d397fa32586d57ffe5.tar.gz |
Move meta-fsl-arm content to layer root
The meta-fsl-arm is going to be used as the base for this layer. It
contains a clean history and allowing a more granullar set of changes.
This commit is just a rename of all contents of meta-fsl-arm
subdirectory to this layer's root, subsequent changes are based on top
of that.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes-qt/qt4/qt4-imx-support.inc')
-rw-r--r-- | recipes-qt/qt4/qt4-imx-support.inc | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/recipes-qt/qt4/qt4-imx-support.inc b/recipes-qt/qt4/qt4-imx-support.inc new file mode 100644 index 00000000..69ad67ba --- /dev/null +++ b/recipes-qt/qt4/qt4-imx-support.inc | |||
@@ -0,0 +1,28 @@ | |||
1 | FILESEXTRAPATHS_prepend := "${THISDIR}/qt4:" | ||
2 | |||
3 | python __anonymous () { | ||
4 | families = ['mx5', 'mx6'] | ||
5 | cur_families = (d.getVar('SOC_FAMILY', True) or '').split(':') | ||
6 | if any(map(lambda x: x in cur_families, | ||
7 | families)): | ||
8 | d.appendVarFlag('do_configure', 'depends', ' virtual/kernel:do_shared_workdir') | ||
9 | } | ||
10 | |||
11 | SRC_URI_append_mx5 += "file://0001-Add-support-for-i.MX-codecs-to-phonon.patch" | ||
12 | SRC_URI_append_mx6 += " \ | ||
13 | file://0001-Add-support-for-i.MX-codecs-to-phonon.patch \ | ||
14 | file://0002-i.MX-video-renderer-Allow-v4l-device-from-environmen.patch \ | ||
15 | file://0003-i.MX6-force-egl-visual-ID-33.patch \ | ||
16 | " | ||
17 | |||
18 | DEPENDS_append_mx5 = " virtual/kernel virtual/libgles2" | ||
19 | QT_GLFLAGS_mx5 = "-opengl es2 -openvg" | ||
20 | QT_CONFIG_FLAGS_append_mx5 = " -I${STAGING_KERNEL_DIR}/include/" | ||
21 | |||
22 | DEPENDS_append_mx6 = " virtual/kernel virtual/libgles2" | ||
23 | QT_GLFLAGS_mx6 = "-opengl es2 -openvg" | ||
24 | QT_CONFIG_FLAGS_append_mx6 = " -I${STAGING_KERNEL_DIR}/include/uapi \ | ||
25 | -I${STAGING_KERNEL_DIR}/include/ \ | ||
26 | -DLINUX=1 -DEGL_API_FB=1 \ | ||
27 | -DQT_QPA_EXPERIMENTAL_TOUCHEVENT=1" | ||
28 | |||