diff options
Diffstat (limited to 'classes')
-rw-r--r-- | classes/deploy-conf.bbclass | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/classes/deploy-conf.bbclass b/classes/deploy-conf.bbclass index 228b1e2..22c6ef7 100644 --- a/classes/deploy-conf.bbclass +++ b/classes/deploy-conf.bbclass | |||
@@ -29,15 +29,19 @@ | |||
29 | 29 | ||
30 | inherit image_types | 30 | inherit image_types |
31 | 31 | ||
32 | IMAGE_DEPENDS_conf = "qtbase-native" | ||
33 | |||
32 | DEPLOY_CONF_NAME ?= "${MACHINE}" | 34 | DEPLOY_CONF_NAME ?= "${MACHINE}" |
33 | DEPLOY_CONF_TYPE ?= "Boot2Qt" | 35 | DEPLOY_CONF_TYPE ?= "Boot2Qt" |
34 | 36 | ||
35 | IMAGE_CMD_conf() { | 37 | IMAGE_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}] |
38 | platform=${MACHINE} | 41 | platform=${MACHINE} |
42 | product=${DEPLOY_CONF_TYPE} | ||
43 | qt=Qt $QT_VERSION | ||
39 | os=linux | 44 | os=linux |
40 | board= | ||
41 | imagefile=${IMAGE_LINK_NAME}.img | 45 | imagefile=${IMAGE_LINK_NAME}.img |
42 | asroot=true | 46 | asroot=true |
43 | EOF | 47 | EOF |