summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMikko Gronoff <mikko.gronoff@qt.io>2017-09-04 15:48:41 +0300
committerMikko Gronoff <mikko.gronoff@qt.io>2017-09-04 15:49:48 +0300
commit7ff5cd75fe5f242665b6447fc7fdf5e0988eebca (patch)
treedbdc62a1263761e1fb5792761f09490f8b000140
parente630a1db10a1539f2a4152cad5b0fb1231bc94d3 (diff)
parent0a606b46deaa7938308eebf068dc204c33984332 (diff)
downloadmeta-boot2qt-7ff5cd75fe5f242665b6447fc7fdf5e0988eebca.tar.gz
Merge remote-tracking branch 'origin/morty' into pyro
* origin/morty: meta-qt5: update layer sdk: don't add qtwayland-scanner to mingw toolchain sdk: add qtwayland tools to the toolchain qtdeviceutilities: update module b2qt-appcontroller: update SRCREV Fix DNS for Qemu running on b2qt toolchain sysroot qt5: update meta-qt5 layer Change-Id: I0f21133d60417297225da9b9f27b49fd1b9dc400
-rw-r--r--classes/populate_b2qt_qt5_sdk.bbclass3
-rw-r--r--recipes-qt/b2qt-addons/b2qt-appcontroller.bb6
-rw-r--r--recipes-qt/packagegroups/nativesdk-packagegroup-b2qt-embedded-qt5-toolchain-host.bb10
-rw-r--r--recipes-qt/qt5/qtdeviceutilities.bb4
4 files changed, 18 insertions, 5 deletions
diff --git a/classes/populate_b2qt_qt5_sdk.bbclass b/classes/populate_b2qt_qt5_sdk.bbclass
index 7acd095..fd7b43c 100644
--- a/classes/populate_b2qt_qt5_sdk.bbclass
+++ b/classes/populate_b2qt_qt5_sdk.bbclass
@@ -67,6 +67,9 @@ EOF
67 echo 'TargetSpec = devices/linux-oe-generic-g++' >> $qtconf 67 echo 'TargetSpec = devices/linux-oe-generic-g++' >> $qtconf
68 68
69 create_qtcreator_configure_script 69 create_qtcreator_configure_script
70
71 # Link /etc/resolv.conf is broken in the toolchain sysroot, remove it
72 rm -f ${SDK_OUTPUT}${SDKTARGETSYSROOT}${sysconfdir}/resolv.conf
70} 73}
71 74
72create_qtcreator_configure_script () { 75create_qtcreator_configure_script () {
diff --git a/recipes-qt/b2qt-addons/b2qt-appcontroller.bb b/recipes-qt/b2qt-addons/b2qt-appcontroller.bb
index f1482a4..9c52606 100644
--- a/recipes-qt/b2qt-addons/b2qt-appcontroller.bb
+++ b/recipes-qt/b2qt-addons/b2qt-appcontroller.bb
@@ -1,6 +1,6 @@
1############################################################################ 1############################################################################
2## 2##
3## Copyright (C) 2016 The Qt Company Ltd. 3## Copyright (C) 2017 The Qt Company Ltd.
4## Contact: https://www.qt.io/licensing/ 4## Contact: https://www.qt.io/licensing/
5## 5##
6## This file is part of the Boot to Qt meta layer. 6## This file is part of the Boot to Qt meta layer.
@@ -29,7 +29,7 @@
29 29
30DESCRIPTION = "Boot to Qt Appcontroller" 30DESCRIPTION = "Boot to Qt Appcontroller"
31LICENSE = "The-Qt-Company-DCLA-2.1" 31LICENSE = "The-Qt-Company-DCLA-2.1"
32LIC_FILES_CHKSUM = "file://main.cpp;md5=1fcdf6b49fbbf2bc9c831893cca1b279;beginline=1;endline=17" 32LIC_FILES_CHKSUM = "file://main.cpp;md5=f25c7436dbc72d4719a5684b28dbcf4b;beginline=1;endline=17"
33 33
34inherit qmake5 34inherit qmake5
35require recipes-qt/qt5/qt5-git.inc 35require recipes-qt/qt5/qt5-git.inc
@@ -39,7 +39,7 @@ SRC_URI = " \
39 file://appcontroller.conf \ 39 file://appcontroller.conf \
40 " 40 "
41 41
42SRCREV = "1e3c96e0e4f28a072c835775f7fdc310eb3b4f28" 42SRCREV = "5ab7fdbf0845c40418272bafa565295511055d3b"
43 43
44DEPENDS = "qtbase" 44DEPENDS = "qtbase"
45 45
diff --git a/recipes-qt/packagegroups/nativesdk-packagegroup-b2qt-embedded-qt5-toolchain-host.bb b/recipes-qt/packagegroups/nativesdk-packagegroup-b2qt-embedded-qt5-toolchain-host.bb
index 7dab944..a65435f 100644
--- a/recipes-qt/packagegroups/nativesdk-packagegroup-b2qt-embedded-qt5-toolchain-host.bb
+++ b/recipes-qt/packagegroups/nativesdk-packagegroup-b2qt-embedded-qt5-toolchain-host.bb
@@ -33,6 +33,12 @@ PR = "r0"
33 33
34inherit nativesdk packagegroup qtquickcompiler 34inherit nativesdk packagegroup qtquickcompiler
35 35
36python __anonymous() {
37 overrides = d.getVar("OVERRIDES", True).split(":")
38 if "mingw32" not in overrides:
39 d.appendVar("OVERRIDES", ":linux")
40}
41
36RDEPENDS_${PN} += "\ 42RDEPENDS_${PN} += "\
37 nativesdk-packagegroup-b2qt-embedded-toolchain-host \ 43 nativesdk-packagegroup-b2qt-embedded-toolchain-host \
38 nativesdk-qttools-tools \ 44 nativesdk-qttools-tools \
@@ -43,3 +49,7 @@ RDEPENDS_${PN} += "\
43 nativesdk-qt3d-tools \ 49 nativesdk-qt3d-tools \
44 nativesdk-qtscxml-tools \ 50 nativesdk-qtscxml-tools \
45 " 51 "
52
53RDEPENDS_${PN}_append_linux = "\
54 ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'nativesdk-qtwayland-tools', '', d)} \
55 "
diff --git a/recipes-qt/qt5/qtdeviceutilities.bb b/recipes-qt/qt5/qtdeviceutilities.bb
index 473ab4d..3b8f18c 100644
--- a/recipes-qt/qt5/qtdeviceutilities.bb
+++ b/recipes-qt/qt5/qtdeviceutilities.bb
@@ -1,6 +1,6 @@
1############################################################################ 1############################################################################
2## 2##
3## Copyright (C) 2016 The Qt Company Ltd. 3## Copyright (C) 2017 The Qt Company Ltd.
4## Contact: https://www.qt.io/licensing/ 4## Contact: https://www.qt.io/licensing/
5## 5##
6## This file is part of the Boot to Qt meta layer. 6## This file is part of the Boot to Qt meta layer.
@@ -43,6 +43,6 @@ SRC_URI = " \
43 git://codereview.qt-project.org/qt/qtdeviceutilities;${QT_MODULE_BRANCH_PARAM};protocol=http \ 43 git://codereview.qt-project.org/qt/qtdeviceutilities;${QT_MODULE_BRANCH_PARAM};protocol=http \
44 " 44 "
45 45
46SRCREV = "48fb704e64300387f99c4192436728858c8aa4f8" 46SRCREV = "43e4b847851afc5d00664a9e88ef825ca9fedd02"
47 47
48DEPENDS = "qtbase qtdeclarative qtconnectivity" 48DEPENDS = "qtbase qtdeclarative qtconnectivity"