diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2015-04-01 15:59:43 -0300 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2015-04-02 22:49:07 -0300 |
commit | 9694a4e8c76c4c098972d7def2185080d5980fd0 (patch) | |
tree | 0b601952df5ef1940be13f9abde7ade61ec8b18a | |
parent | e099c508a58fa87dadee292be1ed32a8b8579523 (diff) | |
download | meta-freescale-9694a4e8c76c4c098972d7def2185080d5980fd0.tar.gz |
qt4: Ensure kernel source is available
During Qt4 build the kernel source needs to be available so a explicit
dependency has to be added.
Change-Id: I66dbd0a9d8ac75e300d0baa44410a629e160b8d7
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r-- | meta-fsl-arm/recipes-qt/qt4/qt4-imx-support.inc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/meta-fsl-arm/recipes-qt/qt4/qt4-imx-support.inc b/meta-fsl-arm/recipes-qt/qt4/qt4-imx-support.inc index 7ba4aeaf3..69ad67bae 100644 --- a/meta-fsl-arm/recipes-qt/qt4/qt4-imx-support.inc +++ b/meta-fsl-arm/recipes-qt/qt4/qt4-imx-support.inc | |||
@@ -1,5 +1,13 @@ | |||
1 | FILESEXTRAPATHS_prepend := "${THISDIR}/qt4:" | 1 | FILESEXTRAPATHS_prepend := "${THISDIR}/qt4:" |
2 | 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 | |||
3 | SRC_URI_append_mx5 += "file://0001-Add-support-for-i.MX-codecs-to-phonon.patch" | 11 | SRC_URI_append_mx5 += "file://0001-Add-support-for-i.MX-codecs-to-phonon.patch" |
4 | SRC_URI_append_mx6 += " \ | 12 | SRC_URI_append_mx6 += " \ |
5 | file://0001-Add-support-for-i.MX-codecs-to-phonon.patch \ | 13 | file://0001-Add-support-for-i.MX-codecs-to-phonon.patch \ |