summaryrefslogtreecommitdiffstats
path: root/recipes-qt/meta
diff options
context:
space:
mode:
authorSamuli Piippo <samuli.piippo@qt.io>2017-05-02 10:18:27 +0300
committerSamuli Piippo <samuli.piippo@qt.io>2017-05-02 09:29:52 +0000
commit126c788b1a9d5b71ee876fb12b41ba594a75321b (patch)
tree0ff21e5f39bf78a454e516b719219855e9c9fc71 /recipes-qt/meta
parent1037ce1006ad2111c07e9a319aaf2525fb9dea92 (diff)
downloadmeta-boot2qt-126c788b1a9d5b71ee876fb12b41ba594a75321b.tar.gz
qbsp: use correct image path
.. and make sure that component name does not contain a dash, since that's not supported by IFW. Change-Id: Ie611b4557c18b22ff56b9f1407376e59d7c71b0d Reviewed-by: Mikko Gronoff <mikko.gronoff@qt.io>
Diffstat (limited to 'recipes-qt/meta')
-rw-r--r--recipes-qt/meta/meta-b2qt-automotive-qbsp.bb3
-rw-r--r--recipes-qt/meta/meta-b2qt-embedded-qbsp.bb3
2 files changed, 4 insertions, 2 deletions
diff --git a/recipes-qt/meta/meta-b2qt-automotive-qbsp.bb b/recipes-qt/meta/meta-b2qt-automotive-qbsp.bb
index ebd12c5..3f86016 100644
--- a/recipes-qt/meta/meta-b2qt-automotive-qbsp.bb
+++ b/recipes-qt/meta/meta-b2qt-automotive-qbsp.bb
@@ -40,7 +40,8 @@ inherit qbsp
40 40
41PV = "1.1" 41PV = "1.1"
42 42
43QBSP_INSTALLER_COMPONENT = "qt.automotive.10.yocto.${MACHINE}" 43QBSP_MACHINE = "${@d.getVar('MACHINE', True).replace('-','')}"
44QBSP_INSTALLER_COMPONENT = "qt.automotive.10.yocto.${QBSP_MACHINE}"
44QBSP_INSTALL_PATH = "/${QT_MODULE_BRANCH}/Automotive/${MACHINE}" 45QBSP_INSTALL_PATH = "/${QT_MODULE_BRANCH}/Automotive/${MACHINE}"
45 46
46QBSP_SDK_TASK = "meta-toolchain-b2qt-automotive-qt5-sdk" 47QBSP_SDK_TASK = "meta-toolchain-b2qt-automotive-qt5-sdk"
diff --git a/recipes-qt/meta/meta-b2qt-embedded-qbsp.bb b/recipes-qt/meta/meta-b2qt-embedded-qbsp.bb
index 56da506..6fe8bf1 100644
--- a/recipes-qt/meta/meta-b2qt-embedded-qbsp.bb
+++ b/recipes-qt/meta/meta-b2qt-embedded-qbsp.bb
@@ -41,7 +41,8 @@ inherit qbsp
41PV := "${@d.getVar('PV', True)[0:5]}" 41PV := "${@d.getVar('PV', True)[0:5]}"
42 42
43VERSION_SHORT = "${@d.getVar('QT_MODULE_BRANCH', True).replace('.','')}" 43VERSION_SHORT = "${@d.getVar('QT_MODULE_BRANCH', True).replace('.','')}"
44QBSP_INSTALLER_COMPONENT = "qt.embedded.b2qt.${VERSION_SHORT}.yocto.${MACHINE}" 44QBSP_MACHINE = "${@d.getVar('MACHINE', True).replace('-','')}"
45QBSP_INSTALLER_COMPONENT = "qt.embedded.b2qt.${VERSION_SHORT}.yocto.${QBSP_MACHINE}"
45QBSP_INSTALL_PATH = "/${QT_MODULE_BRANCH}/Boot2Qt/${MACHINE}" 46QBSP_INSTALL_PATH = "/${QT_MODULE_BRANCH}/Boot2Qt/${MACHINE}"
46 47
47QBSP_SDK_TASK = "meta-toolchain-b2qt-embedded-qt5-sdk" 48QBSP_SDK_TASK = "meta-toolchain-b2qt-embedded-qt5-sdk"