From: Peter Seiderer <ps.report@gmx.net>
To: buildroot@buildroot.org
Subject: Re: [Buildroot] [PATCH v1 2/2] package/iwd: bump version to 1.21
Date: Mon, 10 Jan 2022 23:49:48 +0100 [thread overview]
Message-ID: <20220110234948.347edf2d@gmx.net> (raw)
In-Reply-To: <20220110213901.13597-2-ps.report@gmx.net>
On Mon, 10 Jan 2022 22:39:01 +0100, Peter Seiderer <ps.report@gmx.net> wrote:
> - add 0001-dpp-fix-implicit-declaration-of-function-explicit_bz.patch
>
> - Changelog (since 1.20, from [1]):
>
> ver 1.21:
> Fix issue with handling disconnect events issued by AP.
> Add experimental support for DPP feature.
>
> [1] 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 | 39 +++++++++++++++++++
> package/iwd/iwd.hash | 2 +-
> package/iwd/iwd.mk | 2 +-
> 3 files changed, 41 insertions(+), 2 deletions(-)
> create 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
> new file mode 100644
> index 0000000000..fc1e67fe9c
> --- /dev/null
> +++ b/package/iwd/0001-dpp-fix-implicit-declaration-of-function-explicit_bz.patch
> @@ -0,0 +1,39 @@
> +From 6805884743645d8d16186dbb0de7d9cd50cfd9a5 Mon Sep 17 00:00:00 2001
> +From: Peter Seiderer <ps.report@gmx.net>
> +Date: Mon, 10 Jan 2022 22:20:53 +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);
> + | ^~~~~~~~~~~~~~
> +
> +[Upstream: https://lists.01.org/hyperkitty/list/iwd@lists.01.org/thread/HXV2B7L3RXDIFMKFZTI72TKZRK2IMUPP]
Upstream applied: https://git.kernel.org/pub/scm/network/wireless/iwd.git/commit/?id=6ce41f621154eff0145dab41308bc145c0440f16
Regards,
Peter
> +Signed-off-by: Peter Seiderer <ps.report@gmx.net>
> +---
> + 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 58224170e6..8e34d2983f 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 7d51e2ccabe7c500e44061ac725dbd4f6b0fb518b5e3de1681063d0f15d3050f iwd-1.20.tar.xz
> +sha256 bac891df91c605271e91b73cf0015e1ba86ff784347e53fc67601366859b3851 iwd-1.21.tar.xz
>
> # License files
> sha256 ec60b993835e2c6b79e6d9226345f4e614e686eb57dc13b6420c15a33a8996e5 COPYING
> diff --git a/package/iwd/iwd.mk b/package/iwd/iwd.mk
> index 42f176b05b..a70da86ecc 100644
> --- a/package/iwd/iwd.mk
> +++ b/package/iwd/iwd.mk
> @@ -4,7 +4,7 @@
> #
> ################################################################################
>
> -IWD_VERSION = 1.20
> +IWD_VERSION = 1.21
> IWD_SOURCE = iwd-$(IWD_VERSION).tar.xz
> IWD_SITE = $(BR2_KERNEL_MIRROR)/linux/network/wireless
> IWD_LICENSE = LGPL-2.1+
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
prev parent reply other threads:[~2022-01-10 22:49 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-01-10 21:39 [Buildroot] [PATCH v1 1/2] package/ell: bump version to 0.47 Peter Seiderer
2022-01-10 21:39 ` [Buildroot] [PATCH v1 2/2] package/iwd: bump version to 1.21 Peter Seiderer
2022-01-10 22:49 ` Peter Seiderer [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220110234948.347edf2d@gmx.net \
--to=ps.report@gmx.net \
--cc=buildroot@buildroot.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox