diff options
author | Patrick Vacek <patrickvacek@gmail.com> | 2018-09-03 17:10:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-03 17:10:25 +0200 |
commit | b98113c72e647ac8631e5c642cfab95a9477c5dd (patch) | |
tree | b9895d64923f9f3b4b89acc6a3dc47207e5defbd | |
parent | e0d01df248653ea3b449d532c33404027f364489 (diff) | |
parent | a4e52e2f01cc1e942e2ed0f04676adc4128af1f9 (diff) | |
download | meta-updater-b98113c72e647ac8631e5c642cfab95a9477c5dd.tar.gz |
Merge pull request #378 from advancedtelematic/bugfix/lshw-libp11-openssl-etc-sumo
Bugfix/lshw libp11 openssl etc sumo
-rwxr-xr-x | recipes-sota/aktualizr/aktualizr_git.bb | 2 | ||||
-rw-r--r-- | recipes-support/libp11/files/0001-Workaround-for-a-buggy-version-of-openssl-1.0.2m.patch | 2 | ||||
-rw-r--r-- | recipes-support/lshw/files/ldflags.patch | 4 | ||||
-rw-r--r-- | recipes-support/lshw/lshw_02.17.bb (renamed from recipes-support/lshw/lshw_02.16.bb) | 6 | ||||
-rw-r--r-- | scripts/qemucommand.py | 2 |
5 files changed, 8 insertions, 8 deletions
diff --git a/recipes-sota/aktualizr/aktualizr_git.bb b/recipes-sota/aktualizr/aktualizr_git.bb index 5af36e9..b8105a0 100755 --- a/recipes-sota/aktualizr/aktualizr_git.bb +++ b/recipes-sota/aktualizr/aktualizr_git.bb | |||
@@ -26,7 +26,7 @@ SRC_URI = " \ | |||
26 | file://aktualizr-secondary.socket \ | 26 | file://aktualizr-secondary.socket \ |
27 | file://aktualizr-serialcan.service \ | 27 | file://aktualizr-serialcan.service \ |
28 | " | 28 | " |
29 | SRCREV = "a94a15e31f3b973966b1afc9081fc1b17a3b9d48" | 29 | SRCREV = "062ab7756c375ee2c913d3197cafe4ee2f97ef2a" |
30 | BRANCH ?= "master" | 30 | BRANCH ?= "master" |
31 | 31 | ||
32 | S = "${WORKDIR}/git" | 32 | S = "${WORKDIR}/git" |
diff --git a/recipes-support/libp11/files/0001-Workaround-for-a-buggy-version-of-openssl-1.0.2m.patch b/recipes-support/libp11/files/0001-Workaround-for-a-buggy-version-of-openssl-1.0.2m.patch index 902352c..55f2ed3 100644 --- a/recipes-support/libp11/files/0001-Workaround-for-a-buggy-version-of-openssl-1.0.2m.patch +++ b/recipes-support/libp11/files/0001-Workaround-for-a-buggy-version-of-openssl-1.0.2m.patch | |||
@@ -17,7 +17,7 @@ index 45d5ad3..75625e6 100644 | |||
17 | 17 | ||
18 | -#if OPENSSL_VERSION_NUMBER < 0x100020d0L || defined(LIBRESSL_VERSION_NUMBER) | 18 | -#if OPENSSL_VERSION_NUMBER < 0x100020d0L || defined(LIBRESSL_VERSION_NUMBER) |
19 | -static void EVP_PKEY_meth_get_sign(EVP_PKEY_METHOD *pmeth, | 19 | -static void EVP_PKEY_meth_get_sign(EVP_PKEY_METHOD *pmeth, |
20 | +#if OPENSSL_VERSION_NUMBER < 0x10002100L || defined(LIBRESSL_VERSION_NUMBER) | 20 | +#if OPENSSL_VERSION_NUMBER < 0x10002110L || defined(LIBRESSL_VERSION_NUMBER) |
21 | + | 21 | + |
22 | +# if (OPENSSL_VERSION_NUMBER & 0xFFFFFFF0) == 0x100020d0L | 22 | +# if (OPENSSL_VERSION_NUMBER & 0xFFFFFFF0) == 0x100020d0L |
23 | +# undef EVP_PKEY_meth_get_sign | 23 | +# undef EVP_PKEY_meth_get_sign |
diff --git a/recipes-support/lshw/files/ldflags.patch b/recipes-support/lshw/files/ldflags.patch index 83e0410..d95699d 100644 --- a/recipes-support/lshw/files/ldflags.patch +++ b/recipes-support/lshw/files/ldflags.patch | |||
@@ -1,6 +1,6 @@ | |||
1 | diff -Naur /home/anton/lshw-old/src/Makefile lshw-B.02.16/src/Makefile | 1 | diff -Naur /home/anton/lshw-old/src/Makefile lshw-B.02.17/src/Makefile |
2 | --- /home/anton/lshw-old/src/Makefile 2017-02-07 16:21:52.554738182 +0100 | 2 | --- /home/anton/lshw-old/src/Makefile 2017-02-07 16:21:52.554738182 +0100 |
3 | +++ lshw-B.02.16/src/Makefile 2017-02-07 16:22:45.578588072 +0100 | 3 | +++ lshw-B.02.17/src/Makefile 2017-02-07 16:22:45.578588072 +0100 |
4 | @@ -25,9 +25,9 @@ | 4 | @@ -25,9 +25,9 @@ |
5 | ifeq ($(SQLITE), 1) | 5 | ifeq ($(SQLITE), 1) |
6 | CXXFLAGS+= -DSQLITE $(shell pkg-config --cflags sqlite3) | 6 | CXXFLAGS+= -DSQLITE $(shell pkg-config --cflags sqlite3) |
diff --git a/recipes-support/lshw/lshw_02.16.bb b/recipes-support/lshw/lshw_02.17.bb index 99901ff..1ecc4c1 100644 --- a/recipes-support/lshw/lshw_02.16.bb +++ b/recipes-support/lshw/lshw_02.17.bb | |||
@@ -9,7 +9,7 @@ SUMMARY = "Hardware lister" | |||
9 | HOMEPAGE = "http://ezix.org/project/wiki/HardwareLiSter" | 9 | HOMEPAGE = "http://ezix.org/project/wiki/HardwareLiSter" |
10 | SECTION = "console/tools" | 10 | SECTION = "console/tools" |
11 | LICENSE = "GPLv2+" | 11 | LICENSE = "GPLv2+" |
12 | LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" | 12 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" |
13 | DEPENDS = "pciutils \ | 13 | DEPENDS = "pciutils \ |
14 | usbutils" | 14 | usbutils" |
15 | COMPATIBLE_HOST = "(i.86|x86_64|arm|aarch64).*-linux" | 15 | COMPATIBLE_HOST = "(i.86|x86_64|arm|aarch64).*-linux" |
@@ -19,8 +19,8 @@ SRC_URI="http://ezix.org/software/files/lshw-B.${PV}.tar.gz \ | |||
19 | file://ldflags.patch \ | 19 | file://ldflags.patch \ |
20 | " | 20 | " |
21 | 21 | ||
22 | SRC_URI[md5sum] = "67479167add605e8f001097c30e96d0d" | 22 | SRC_URI[md5sum] = "a5feb796cb302850eaf5b4530888e3ed" |
23 | SRC_URI[sha256sum] = "809882429555b93259785cc261dbff04c16c93d064db5f445a51945bc47157cb" | 23 | SRC_URI[sha256sum] = "eb9cc053fa0f1e78685cb695596e73931bfb55d2377e3bc3b8b94aff4c5a489c" |
24 | 24 | ||
25 | S="${WORKDIR}/lshw-B.${PV}" | 25 | S="${WORKDIR}/lshw-B.${PV}" |
26 | 26 | ||
diff --git a/scripts/qemucommand.py b/scripts/qemucommand.py index 4918314..86362f7 100644 --- a/scripts/qemucommand.py +++ b/scripts/qemucommand.py | |||
@@ -115,7 +115,7 @@ class QemuCommand(object): | |||
115 | else: | 115 | else: |
116 | cmdline.append('-nographic') | 116 | cmdline.append('-nographic') |
117 | if self.kvm: | 117 | if self.kvm: |
118 | cmdline.append('-enable-kvm') | 118 | cmdline += ['-enable-kvm', '-cpu', 'host'] |
119 | else: | 119 | else: |
120 | cmdline += ['-cpu', 'Haswell'] | 120 | cmdline += ['-cpu', 'Haswell'] |
121 | if self.overlay: | 121 | if self.overlay: |