summaryrefslogtreecommitdiffstats
path: root/meta-boot2qt/classes
diff options
context:
space:
mode:
authorSamuli Piippo <samuli.piippo@qt.io>2018-05-09 12:43:04 +0300
committerSamuli Piippo <samuli.piippo@qt.io>2018-05-09 12:43:04 +0300
commit50e2273cb2525f5f129b3029f2896d024c8456c6 (patch)
tree40621ed59fbd04545fd768e4d683a63c25d2d42a /meta-boot2qt/classes
parenta159f256fe1475b9d91c0b01b0381392c396cc25 (diff)
parentf3d5b8731a54e1bad92ce5903b5a7dc7f4be6026 (diff)
downloadmeta-boot2qt-50e2273cb2525f5f129b3029f2896d024c8456c6.tar.gz
Merge remote-tracking branch 'origin/morty' into pyro
* origin/morty: poky, meta-mingw: update to latest revision in morty branch qtdeviceutilities: update to latest version Add product name and Qt version to image conf Revert "Add appman versions of Kit and Qt to creator" Change-Id: I3c0e48b7c9202a7b0081f3c56966af3283cf2650
Diffstat (limited to 'meta-boot2qt/classes')
-rw-r--r--meta-boot2qt/classes/deploy-conf.bbclass8
1 files changed, 6 insertions, 2 deletions
diff --git a/meta-boot2qt/classes/deploy-conf.bbclass b/meta-boot2qt/classes/deploy-conf.bbclass
index 228b1e2..22c6ef7 100644
--- a/meta-boot2qt/classes/deploy-conf.bbclass
+++ b/meta-boot2qt/classes/deploy-conf.bbclass
@@ -29,15 +29,19 @@
29 29
30inherit image_types 30inherit image_types
31 31
32IMAGE_DEPENDS_conf = "qtbase-native"
33
32DEPLOY_CONF_NAME ?= "${MACHINE}" 34DEPLOY_CONF_NAME ?= "${MACHINE}"
33DEPLOY_CONF_TYPE ?= "Boot2Qt" 35DEPLOY_CONF_TYPE ?= "Boot2Qt"
34 36
35IMAGE_CMD_conf() { 37IMAGE_CMD_conf() {
38 QT_VERSION=$(qmake -query QT_VERSION)
36 cat > ${IMGDEPLOYDIR}/${IMAGE_NAME}.rootfs.conf <<EOF 39 cat > ${IMGDEPLOYDIR}/${IMAGE_NAME}.rootfs.conf <<EOF
37[${DEPLOY_CONF_TYPE} | ${DEPLOY_CONF_NAME}] 40[${DEPLOY_CONF_NAME}]
38platform=${MACHINE} 41platform=${MACHINE}
42product=${DEPLOY_CONF_TYPE}
43qt=Qt $QT_VERSION
39os=linux 44os=linux
40board=
41imagefile=${IMAGE_LINK_NAME}.img 45imagefile=${IMAGE_LINK_NAME}.img
42asroot=true 46asroot=true
43EOF 47EOF