diff options
author | Samuli Piippo <samuli.piippo@qt.io> | 2017-06-15 11:07:28 +0300 |
---|---|---|
committer | Samuli Piippo <samuli.piippo@qt.io> | 2017-06-19 06:19:03 +0000 |
commit | 96851bd9222325e62417bf24319eb396f49f2750 (patch) | |
tree | e333d302c7b5b57bf26b6434938a64dd43903f70 | |
parent | 7eae1c5c3d7d2d925afcc52a934613d2de4d6d8a (diff) | |
download | meta-boot2qt-96851bd9222325e62417bf24319eb396f49f2750.tar.gz |
qbsp: use correct creator type names for qdb plugin
Change-Id: I5dba58fbdaf5512710ed79973ab0e4809484d805
Reviewed-by: Mikko Gronoff <mikko.gronoff@qt.io>
-rw-r--r-- | files/qbsp/toolchain_installscript.qs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/files/qbsp/toolchain_installscript.qs b/files/qbsp/toolchain_installscript.qs index 39a059c..15e9570 100644 --- a/files/qbsp/toolchain_installscript.qs +++ b/files/qbsp/toolchain_installscript.qs | |||
@@ -67,7 +67,6 @@ Component.prototype.createOperations = function() | |||
67 | executableExt = ".exe"; | 67 | executableExt = ".exe"; |
68 | hostSysroot = "i686-pokysdk-mingw32"; | 68 | hostSysroot = "i686-pokysdk-mingw32"; |
69 | } | 69 | } |
70 | var deviceType = "Boot2Qt.HwDevice" | ||
71 | 70 | ||
72 | component.addOperation("Execute", | 71 | component.addOperation("Execute", |
73 | ["@SDKToolBinary@", "addTC", | 72 | ["@SDKToolBinary@", "addTC", |
@@ -103,7 +102,7 @@ Component.prototype.createOperations = function() | |||
103 | ["@SDKToolBinary@", "addQt", | 102 | ["@SDKToolBinary@", "addQt", |
104 | "--id", qtId, | 103 | "--id", qtId, |
105 | "--name", "Boot2Qt %{Qt:Version} " + platform, | 104 | "--name", "Boot2Qt %{Qt:Version} " + platform, |
106 | "--type", "Boot2Qt.QtVersionType", | 105 | "--type", "Qdb.EmbeddedLinuxQt", |
107 | "--qmake", path + "/sysroots/" + hostSysroot + "/usr/bin/qmake" + executableExt, | 106 | "--qmake", path + "/sysroots/" + hostSysroot + "/usr/bin/qmake" + executableExt, |
108 | "UNDOEXECUTE", | 107 | "UNDOEXECUTE", |
109 | "@SDKToolBinary@", "rmQt", "--id", qtId]); | 108 | "@SDKToolBinary@", "rmQt", "--id", qtId]); |
@@ -116,7 +115,7 @@ Component.prototype.createOperations = function() | |||
116 | "--qt", qtId, | 115 | "--qt", qtId, |
117 | "--debuggerid", debuggerId, | 116 | "--debuggerid", debuggerId, |
118 | "--sysroot", path + "/sysroots/" + sysroot, | 117 | "--sysroot", path + "/sysroots/" + sysroot, |
119 | "--devicetype", deviceType, | 118 | "--devicetype", "QdbLinuxOsType", |
120 | "--Ctoolchain", toolchainId + ".gcc", | 119 | "--Ctoolchain", toolchainId + ".gcc", |
121 | "--Cxxtoolchain", toolchainId + ".g++", | 120 | "--Cxxtoolchain", toolchainId + ".g++", |
122 | "--icon", icon, | 121 | "--icon", icon, |