[oe-commits] [meta-openembedded] 01/04: iwd: upgrade 1.4 -> 1.5

git at git.openembedded.org git at git.openembedded.org
Fri Mar 13 19:50:03 UTC 2020


This is an automated email from the git hooks/post-receive script.

khem pushed a commit to branch master-next
in repository meta-openembedded.

commit 93d67b30793ef5d22647d9f80656ba3449083ea5
Author: Pierre-Jean Texier <pjtexier at koncepto.io>
AuthorDate: Fri Mar 13 19:57:50 2020 +0100

    iwd: upgrade 1.4 -> 1.5
    
    Remove patch already in version
    
    Fixes:
    
    ver 1.5:
    	Fix issue with handling missing NEW_WIPHY events.
    	Fix issue with interface creation and NEW_WIPHY events.
    	Fix issue with handling LastConnectedTime property change.
    	Fix issue with PEAPv0 interoperability with Windows.
    
    Signed-off-by: Pierre-Jean Texier <pjtexier at koncepto.io>
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 .../iwd/0001-build-Support-missing-rawmemchr.patch | 62 ----------------------
 .../iwd/{iwd_1.4.bb => iwd_1.5.bb}                 | 10 ++--
 2 files changed, 4 insertions(+), 68 deletions(-)

diff --git a/meta-oe/recipes-connectivity/iwd/iwd/0001-build-Support-missing-rawmemchr.patch b/meta-oe/recipes-connectivity/iwd/iwd/0001-build-Support-missing-rawmemchr.patch
deleted file mode 100644
index 733f5fe..0000000
--- a/meta-oe/recipes-connectivity/iwd/iwd/0001-build-Support-missing-rawmemchr.patch
+++ /dev/null
@@ -1,62 +0,0 @@
-From fcdddf2b726439e049992878f90da607414a1a47 Mon Sep 17 00:00:00 2001
-From: Denis Kenzior <denkenz at gmail.com>
-Date: Mon, 3 Feb 2020 11:54:28 -0600
-Subject: [PATCH] build: Support missing rawmemchr
-
-rawmemchr is a GNU extension in glibc that does not exist in musl.
-
-Upstream-status: Backport of https://git.kernel.org/pub/scm/network/wireless/iwd.git/commit/?id=fcdddf2b726439e049992878f90da607414a1a47
-
-Signed-off-by: Robert Joslyn <robert.joslyn at redrectangle.org>
-
----
- configure.ac  |  1 +
- src/missing.h | 10 ++++++++++
- src/wiphy.c   |  1 +
- 3 files changed, 12 insertions(+)
-
-diff --git a/configure.ac b/configure.ac
-index 5ae1401cae17..2d373a47ba68 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -128,6 +128,7 @@ AC_DEFINE_UNQUOTED(WIRED_STORAGEDIR, "${wired_storagedir}",
- 			[Directory for Ethernet daemon storage files])
- 
- AC_CHECK_FUNCS(explicit_bzero)
-+AC_CHECK_FUNCS(rawmemchr)
- 
- AC_CHECK_HEADERS(linux/types.h linux/if_alg.h)
- 
-diff --git a/src/missing.h b/src/missing.h
-index 2bb210ae3c81..2cc80aee5d38 100644
---- a/src/missing.h
-+++ b/src/missing.h
-@@ -27,3 +27,13 @@ static inline void explicit_bzero(void *s, size_t n)
-         __asm__ __volatile__ ("" : : "r"(s) : "memory");
- }
- #endif
-+
-+#ifndef HAVE_RAWMEMCHR
-+static inline void *rawmemchr(const void *s, int c)
-+{
-+_Pragma("GCC diagnostic push")
-+_Pragma("GCC diagnostic ignored \"-Wstringop-overflow=\"")
-+	return memchr(s, c, (size_t) -1);
-+_Pragma("GCC diagnostic pop")
-+}
-+#endif
-diff --git a/src/wiphy.c b/src/wiphy.c
-index 1da479db2dab..511bb27f52b8 100644
---- a/src/wiphy.c
-+++ b/src/wiphy.c
-@@ -37,6 +37,7 @@
- 
- #include "linux/nl80211.h"
- 
-+#include "src/missing.h"
- #include "src/iwd.h"
- #include "src/module.h"
- #include "src/ie.h"
--- 
-2.21.0
-
diff --git a/meta-oe/recipes-connectivity/iwd/iwd_1.4.bb b/meta-oe/recipes-connectivity/iwd/iwd_1.5.bb
similarity index 85%
rename from meta-oe/recipes-connectivity/iwd/iwd_1.4.bb
rename to meta-oe/recipes-connectivity/iwd/iwd_1.5.bb
index f758781..4d4c699 100644
--- a/meta-oe/recipes-connectivity/iwd/iwd_1.4.bb
+++ b/meta-oe/recipes-connectivity/iwd/iwd_1.5.bb
@@ -5,12 +5,10 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=fb504b67c50331fc78734fed90fb0e09"
 
 DEPENDS = "ell"
 
-SRC_URI = " \
-    git://git.kernel.org/pub/scm/network/wireless/iwd.git \
-    file://0001-Makefile.am-Avoid-redirection-of-input-and-output-fi.patch \
-    file://0001-build-Support-missing-rawmemchr.patch \
-"
-SRCREV = "860fa4697f349da7791ecf22ca76f9ac0e5de261"
+SRC_URI = "git://git.kernel.org/pub/scm/network/wireless/iwd.git \
+           file://0001-Makefile.am-Avoid-redirection-of-input-and-output-fi.patch \
+           "
+SRCREV = "1ee7b985aaa294447d073bfe1242744784278a8e"
 S = "${WORKDIR}/git"
 
 inherit autotools manpages pkgconfig python3native systemd

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list