From 2271dd778eb770f674ac4caeb16df8992c4bd5bd Mon Sep 17 00:00:00 2001 From: Maxime BORGES Date: Fri, 31 Aug 2018 13:57:57 +0200 Subject: Update lshw to 02.17 --- recipes-support/lshw/files/ldflags.patch | 4 ++-- recipes-support/lshw/lshw_02.16.bb | 36 -------------------------------- recipes-support/lshw/lshw_02.17.bb | 36 ++++++++++++++++++++++++++++++++ 3 files changed, 38 insertions(+), 38 deletions(-) delete mode 100644 recipes-support/lshw/lshw_02.16.bb create mode 100644 recipes-support/lshw/lshw_02.17.bb diff --git a/recipes-support/lshw/files/ldflags.patch b/recipes-support/lshw/files/ldflags.patch index 83e0410..53bc112 100644 --- a/recipes-support/lshw/files/ldflags.patch +++ b/recipes-support/lshw/files/ldflags.patch @@ -1,6 +1,6 @@ -diff -Naur /home/anton/lshw-old/src/Makefile lshw-B.02.16/src/Makefile +diff -Naur /home/anton/lshw-old/src/Makefile lshw-B.02.18/src/Makefile --- /home/anton/lshw-old/src/Makefile 2017-02-07 16:21:52.554738182 +0100 -+++ lshw-B.02.16/src/Makefile 2017-02-07 16:22:45.578588072 +0100 ++++ lshw-B.02.18/src/Makefile 2017-02-07 16:22:45.578588072 +0100 @@ -25,9 +25,9 @@ ifeq ($(SQLITE), 1) CXXFLAGS+= -DSQLITE $(shell pkg-config --cflags sqlite3) diff --git a/recipes-support/lshw/lshw_02.16.bb b/recipes-support/lshw/lshw_02.16.bb deleted file mode 100644 index 99901ff..0000000 --- a/recipes-support/lshw/lshw_02.16.bb +++ /dev/null @@ -1,36 +0,0 @@ -# From meta-linaro -# http://git.linaro.org/openembedded/meta-linaro.git - -DESCRIPTION = "A small tool to provide detailed information on the hardware \ -configuration of the machine. It can report exact memory configuration, \ -firmware version, mainboard configuration, CPU version and speed, cache \ -configuration, bus speed, etc. on DMI-capable or EFI systems." -SUMMARY = "Hardware lister" -HOMEPAGE = "http://ezix.org/project/wiki/HardwareLiSter" -SECTION = "console/tools" -LICENSE = "GPLv2+" -LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f" -DEPENDS = "pciutils \ - usbutils" -COMPATIBLE_HOST = "(i.86|x86_64|arm|aarch64).*-linux" - -SRC_URI="http://ezix.org/software/files/lshw-B.${PV}.tar.gz \ - file://cross-compile.patch \ - file://ldflags.patch \ - " - -SRC_URI[md5sum] = "67479167add605e8f001097c30e96d0d" -SRC_URI[sha256sum] = "809882429555b93259785cc261dbff04c16c93d064db5f445a51945bc47157cb" - -S="${WORKDIR}/lshw-B.${PV}" - -do_compile() { - # build core only - don't ship gui - oe_runmake -C src core -} - -do_install() { - oe_runmake install DESTDIR=${D} - # data files provided by dependencies - rm -rf ${D}/usr/share/lshw -} diff --git a/recipes-support/lshw/lshw_02.17.bb b/recipes-support/lshw/lshw_02.17.bb new file mode 100644 index 0000000..1ecc4c1 --- /dev/null +++ b/recipes-support/lshw/lshw_02.17.bb @@ -0,0 +1,36 @@ +# From meta-linaro +# http://git.linaro.org/openembedded/meta-linaro.git + +DESCRIPTION = "A small tool to provide detailed information on the hardware \ +configuration of the machine. It can report exact memory configuration, \ +firmware version, mainboard configuration, CPU version and speed, cache \ +configuration, bus speed, etc. on DMI-capable or EFI systems." +SUMMARY = "Hardware lister" +HOMEPAGE = "http://ezix.org/project/wiki/HardwareLiSter" +SECTION = "console/tools" +LICENSE = "GPLv2+" +LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263" +DEPENDS = "pciutils \ + usbutils" +COMPATIBLE_HOST = "(i.86|x86_64|arm|aarch64).*-linux" + +SRC_URI="http://ezix.org/software/files/lshw-B.${PV}.tar.gz \ + file://cross-compile.patch \ + file://ldflags.patch \ + " + +SRC_URI[md5sum] = "a5feb796cb302850eaf5b4530888e3ed" +SRC_URI[sha256sum] = "eb9cc053fa0f1e78685cb695596e73931bfb55d2377e3bc3b8b94aff4c5a489c" + +S="${WORKDIR}/lshw-B.${PV}" + +do_compile() { + # build core only - don't ship gui + oe_runmake -C src core +} + +do_install() { + oe_runmake install DESTDIR=${D} + # data files provided by dependencies + rm -rf ${D}/usr/share/lshw +} -- cgit v1.2.3-54-g00ecf From d365e4a5fc1347099eab095f08b7c43b59e62ffb Mon Sep 17 00:00:00 2001 From: Maxime BORGES Date: Fri, 31 Aug 2018 15:01:57 +0200 Subject: Fix version number in ldflags.patch --- recipes-support/lshw/files/ldflags.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes-support/lshw/files/ldflags.patch b/recipes-support/lshw/files/ldflags.patch index 53bc112..d95699d 100644 --- a/recipes-support/lshw/files/ldflags.patch +++ b/recipes-support/lshw/files/ldflags.patch @@ -1,6 +1,6 @@ -diff -Naur /home/anton/lshw-old/src/Makefile lshw-B.02.18/src/Makefile +diff -Naur /home/anton/lshw-old/src/Makefile lshw-B.02.17/src/Makefile --- /home/anton/lshw-old/src/Makefile 2017-02-07 16:21:52.554738182 +0100 -+++ lshw-B.02.18/src/Makefile 2017-02-07 16:22:45.578588072 +0100 ++++ lshw-B.02.17/src/Makefile 2017-02-07 16:22:45.578588072 +0100 @@ -25,9 +25,9 @@ ifeq ($(SQLITE), 1) CXXFLAGS+= -DSQLITE $(shell pkg-config --cflags sqlite3) -- cgit v1.2.3-54-g00ecf From 3177af2d225fcb89268d9a87e44d2f1339ba032b Mon Sep 17 00:00:00 2001 From: Patrick Vacek Date: Fri, 31 Aug 2018 15:26:05 +0200 Subject: libp11: Bump the version number for the openssl compatibility again. Now covers 1.0.2p. --- .../files/0001-Workaround-for-a-buggy-version-of-openssl-1.0.2m.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -#if OPENSSL_VERSION_NUMBER < 0x100020d0L || defined(LIBRESSL_VERSION_NUMBER) -static void EVP_PKEY_meth_get_sign(EVP_PKEY_METHOD *pmeth, -+#if OPENSSL_VERSION_NUMBER < 0x10002100L || defined(LIBRESSL_VERSION_NUMBER) ++#if OPENSSL_VERSION_NUMBER < 0x10002110L || defined(LIBRESSL_VERSION_NUMBER) + +# if (OPENSSL_VERSION_NUMBER & 0xFFFFFFF0) == 0x100020d0L +# undef EVP_PKEY_meth_get_sign -- cgit v1.2.3-54-g00ecf From c8b4a4c3e161f034121adf8a16ae9fef07593112 Mon Sep 17 00:00:00 2001 From: Patrick Vacek Date: Fri, 31 Aug 2018 15:28:07 +0200 Subject: aktualizr: bump to latest version (fad299b846b9c1b58a9c1f715f4c26c69610d02c). --- recipes-sota/aktualizr/aktualizr_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-sota/aktualizr/aktualizr_git.bb b/recipes-sota/aktualizr/aktualizr_git.bb index 5af36e9..323cb54 100755 --- a/recipes-sota/aktualizr/aktualizr_git.bb +++ b/recipes-sota/aktualizr/aktualizr_git.bb @@ -26,7 +26,7 @@ SRC_URI = " \ file://aktualizr-secondary.socket \ file://aktualizr-serialcan.service \ " -SRCREV = "a94a15e31f3b973966b1afc9081fc1b17a3b9d48" +SRCREV = "fad299b846b9c1b58a9c1f715f4c26c69610d02c" BRANCH ?= "master" S = "${WORKDIR}/git" -- cgit v1.2.3-54-g00ecf From c37fb0bb5b4b05e4efd93a904e0866745c150cc7 Mon Sep 17 00:00:00 2001 From: Eugene Smirnov Date: Fri, 17 Aug 2018 12:00:38 +0200 Subject: Specify cpu type -host- for KVM mode --- scripts/qemucommand.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): else: cmdline.append('-nographic') if self.kvm: - cmdline.append('-enable-kvm') + cmdline += ['-enable-kvm', '-cpu', 'host'] else: cmdline += ['-cpu', 'Haswell'] if self.overlay: -- cgit v1.2.3-54-g00ecf From a4e52e2f01cc1e942e2ed0f04676adc4128af1f9 Mon Sep 17 00:00:00 2001 From: Patrick Vacek Date: Mon, 3 Sep 2018 14:00:09 +0200 Subject: aktualizr: bump to latest (062ab7756c375ee2c913d3197cafe4ee2f97ef2a). Includes fixes for Ubuntu 18.04. --- recipes-sota/aktualizr/aktualizr_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-sota/aktualizr/aktualizr_git.bb b/recipes-sota/aktualizr/aktualizr_git.bb index 323cb54..b8105a0 100755 --- a/recipes-sota/aktualizr/aktualizr_git.bb +++ b/recipes-sota/aktualizr/aktualizr_git.bb @@ -26,7 +26,7 @@ SRC_URI = " \ file://aktualizr-secondary.socket \ file://aktualizr-serialcan.service \ " -SRCREV = "fad299b846b9c1b58a9c1f715f4c26c69610d02c" +SRCREV = "062ab7756c375ee2c913d3197cafe4ee2f97ef2a" BRANCH ?= "master" S = "${WORKDIR}/git" -- cgit v1.2.3-54-g00ecf