All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH v1 1/2] package/ell: bump version to 0.48
@ 2022-02-14 21:10 Peter Seiderer
  2022-02-14 21:10 ` [Buildroot] [PATCH v1 2/2] package/iwd: bump version to 1.24 Peter Seiderer
  2022-03-10 21:23 ` [Buildroot] [PATCH v1 1/2] package/ell: bump version to 0.48 Arnout Vandecappelle
  0 siblings, 2 replies; 4+ messages in thread
From: Peter Seiderer @ 2022-02-14 21:10 UTC (permalink / raw)
  To: buildroot

- Changelog (since 0.47, from [1]):

  ver 0.48:
    Fix issue with memory leaking from ICMPv6 RA.

[1] https://git.kernel.org/pub/scm/libs/ell/ell.git/tree/ChangeLog

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
 package/ell/ell.hash | 2 +-
 package/ell/ell.mk   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/package/ell/ell.hash b/package/ell/ell.hash
index cd724eae2d..4bde1ab677 100644
--- a/package/ell/ell.hash
+++ b/package/ell/ell.hash
@@ -1,5 +1,5 @@
 # From https://mirrors.edge.kernel.org/pub/linux/libs/ell/sha256sums.asc
-sha256  4901a0baac4eb24163ceafb44fd448430361d25d8f17d89ff29f8b0b162b3eb9  ell-0.47.tar.xz
+sha256  9894943042a5d6165d3e5cc354f92274fb1304004d02b4bee682ab6067cdbbd5  ell-0.48.tar.xz
 
 # License files
 sha256  ec60b993835e2c6b79e6d9226345f4e614e686eb57dc13b6420c15a33a8996e5  COPYING
diff --git a/package/ell/ell.mk b/package/ell/ell.mk
index 3ce64b6f2f..267b44e5f0 100644
--- a/package/ell/ell.mk
+++ b/package/ell/ell.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-ELL_VERSION = 0.47
+ELL_VERSION = 0.48
 ELL_SOURCE = ell-$(ELL_VERSION).tar.xz
 ELL_SITE = $(BR2_KERNEL_MIRROR)/linux/libs/ell
 ELL_LICENSE = LGPL-2.1+
-- 
2.34.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH v1 2/2] package/iwd: bump version to 1.24
  2022-02-14 21:10 [Buildroot] [PATCH v1 1/2] package/ell: bump version to 0.48 Peter Seiderer
@ 2022-02-14 21:10 ` Peter Seiderer
  2022-03-10 21:23 ` [Buildroot] [PATCH v1 1/2] package/ell: bump version to 0.48 Arnout Vandecappelle
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Seiderer @ 2022-02-14 21:10 UTC (permalink / raw)
  To: buildroot

- remove 001-dpp-fix-implicit-declaration-of-function-explicit_bz.patch
  (upstream applied [1])

- Changelog (since 1.21, from [2]):

  ver 1.24:
    Fix issue with handshake and missing rekeying support.
    Fix issue with BSS ranking and zero signal strength.
    Fix issue with setting OWE IE length correctly.

  ver 1.23:
    Fix issue with handling handshake offloading.
    Fix issue with at_console and D-Bus policy.

  ver 1.22:
    Fix issue with handling periodic scanning.
    Fix issue with handling scanning completion.
    Fix issue with handling scanning for OWE auto-connect.
    Add support for additional DPP features.

[1] https://git.kernel.org/pub/scm/network/wireless/iwd.git/commit/?id=6ce41f621154eff0145dab41308bc145c0440f16
[2] https://git.kernel.org/pub/scm/network/wireless/iwd.git/tree/ChangeLog

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
---
 ...-declaration-of-function-explicit_bz.patch | 41 -------------------
 package/iwd/iwd.hash                          |  2 +-
 package/iwd/iwd.mk                            |  2 +-
 3 files changed, 2 insertions(+), 43 deletions(-)
 delete mode 100644 package/iwd/0001-dpp-fix-implicit-declaration-of-function-explicit_bz.patch

diff --git a/package/iwd/0001-dpp-fix-implicit-declaration-of-function-explicit_bz.patch b/package/iwd/0001-dpp-fix-implicit-declaration-of-function-explicit_bz.patch
deleted file mode 100644
index 3e808deb88..0000000000
--- a/package/iwd/0001-dpp-fix-implicit-declaration-of-function-explicit_bz.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From 6ce41f621154eff0145dab41308bc145c0440f16 Mon Sep 17 00:00:00 2001
-From: Peter Seiderer <ps.report@gmx.net>
-Date: Mon, 10 Jan 2022 22:32:18 +0100
-Subject: [PATCH] dpp: fix implicit declaration of function explicit_bzero
- warning
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-- add missing src/missing.h include for explicit_bzero, fixes uclibc
-  compile/linking
-
-Fixes:
-
-  src/dpp.c:166:2: warning: implicit declaration of function ‘explicit_bzero’ [-Wimplicit-function-declaration]
-    166 |  explicit_bzero(dpp->r_nonce, dpp->nonce_len);
-        |  ^~~~~~~~~~~~~~
-
-[backport from upstream]
-Signed-off-by: Peter Seiderer <ps.report@gmx.net>
-[yann.morin.1998@free.fr: actual backport now upstreamn applied]
-Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
----
- src/dpp.c | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/src/dpp.c b/src/dpp.c
-index 84e89f6c..8091ded1 100644
---- a/src/dpp.c
-+++ b/src/dpp.c
-@@ -30,6 +30,7 @@
- 
- #include "linux/nl80211.h"
- 
-+#include "src/missing.h"
- #include "src/dbus.h"
- #include "src/netdev.h"
- #include "src/module.h"
--- 
-2.34.1
-
diff --git a/package/iwd/iwd.hash b/package/iwd/iwd.hash
index 8e34d2983f..1a58ec88e8 100644
--- a/package/iwd/iwd.hash
+++ b/package/iwd/iwd.hash
@@ -1,5 +1,5 @@
 # From https://mirrors.edge.kernel.org/pub/linux/network/wireless/sha256sums.asc
-sha256  bac891df91c605271e91b73cf0015e1ba86ff784347e53fc67601366859b3851  iwd-1.21.tar.xz
+sha256  61b5e48380cd3a6d0529f725eb6974157f1410af165f5d266b87add0bf395224  iwd-1.24.tar.xz
 
 # License files
 sha256  ec60b993835e2c6b79e6d9226345f4e614e686eb57dc13b6420c15a33a8996e5  COPYING
diff --git a/package/iwd/iwd.mk b/package/iwd/iwd.mk
index a70da86ecc..548b508edb 100644
--- a/package/iwd/iwd.mk
+++ b/package/iwd/iwd.mk
@@ -4,7 +4,7 @@
 #
 ################################################################################
 
-IWD_VERSION = 1.21
+IWD_VERSION = 1.24
 IWD_SOURCE = iwd-$(IWD_VERSION).tar.xz
 IWD_SITE = $(BR2_KERNEL_MIRROR)/linux/network/wireless
 IWD_LICENSE = LGPL-2.1+
-- 
2.34.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [Buildroot] [PATCH v1 1/2] package/ell: bump version to 0.48
  2022-02-14 21:10 [Buildroot] [PATCH v1 1/2] package/ell: bump version to 0.48 Peter Seiderer
  2022-02-14 21:10 ` [Buildroot] [PATCH v1 2/2] package/iwd: bump version to 1.24 Peter Seiderer
@ 2022-03-10 21:23 ` Arnout Vandecappelle
  2022-03-18  8:52   ` Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Arnout Vandecappelle @ 2022-03-10 21:23 UTC (permalink / raw)
  To: Peter Seiderer, buildroot



On 14/02/2022 22:10, Peter Seiderer wrote:
> - Changelog (since 0.47, from [1]):
> 
>    ver 0.48:
>      Fix issue with memory leaking from ICMPv6 RA.
> 
> [1] https://git.kernel.org/pub/scm/libs/ell/ell.git/tree/ChangeLog
> 
> Signed-off-by: Peter Seiderer <ps.report@gmx.net>

  Both applied to master, thanks.

  Regards,
  Arnout

> ---
>   package/ell/ell.hash | 2 +-
>   package/ell/ell.mk   | 2 +-
>   2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/package/ell/ell.hash b/package/ell/ell.hash
> index cd724eae2d..4bde1ab677 100644
> --- a/package/ell/ell.hash
> +++ b/package/ell/ell.hash
> @@ -1,5 +1,5 @@
>   # From https://mirrors.edge.kernel.org/pub/linux/libs/ell/sha256sums.asc
> -sha256  4901a0baac4eb24163ceafb44fd448430361d25d8f17d89ff29f8b0b162b3eb9  ell-0.47.tar.xz
> +sha256  9894943042a5d6165d3e5cc354f92274fb1304004d02b4bee682ab6067cdbbd5  ell-0.48.tar.xz
>   
>   # License files
>   sha256  ec60b993835e2c6b79e6d9226345f4e614e686eb57dc13b6420c15a33a8996e5  COPYING
> diff --git a/package/ell/ell.mk b/package/ell/ell.mk
> index 3ce64b6f2f..267b44e5f0 100644
> --- a/package/ell/ell.mk
> +++ b/package/ell/ell.mk
> @@ -4,7 +4,7 @@
>   #
>   ################################################################################
>   
> -ELL_VERSION = 0.47
> +ELL_VERSION = 0.48
>   ELL_SOURCE = ell-$(ELL_VERSION).tar.xz
>   ELL_SITE = $(BR2_KERNEL_MIRROR)/linux/libs/ell
>   ELL_LICENSE = LGPL-2.1+
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Buildroot] [PATCH v1 1/2] package/ell: bump version to 0.48
  2022-03-10 21:23 ` [Buildroot] [PATCH v1 1/2] package/ell: bump version to 0.48 Arnout Vandecappelle
@ 2022-03-18  8:52   ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2022-03-18  8:52 UTC (permalink / raw)
  To: Arnout Vandecappelle; +Cc: Peter Seiderer, buildroot

>>>>> "Arnout" == Arnout Vandecappelle <arnout@mind.be> writes:

 > On 14/02/2022 22:10, Peter Seiderer wrote:
 >> - Changelog (since 0.47, from [1]):
 >> ver 0.48:
 >> Fix issue with memory leaking from ICMPv6 RA.
 >> [1] https://git.kernel.org/pub/scm/libs/ell/ell.git/tree/ChangeLog
 >> Signed-off-by: Peter Seiderer <ps.report@gmx.net>

 >  Both applied to master, thanks.

And to 2022.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-03-18  8:52 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-14 21:10 [Buildroot] [PATCH v1 1/2] package/ell: bump version to 0.48 Peter Seiderer
2022-02-14 21:10 ` [Buildroot] [PATCH v1 2/2] package/iwd: bump version to 1.24 Peter Seiderer
2022-03-10 21:23 ` [Buildroot] [PATCH v1 1/2] package/ell: bump version to 0.48 Arnout Vandecappelle
2022-03-18  8:52   ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.