Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] iwd: update to 1.9.
@ 2020-09-05 13:18 pbui
  2020-09-05 15:03 ` ericonr
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: pbui @ 2020-09-05 13:18 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 310 bytes --]

There is a new pull request by pbui against master on the void-packages repository

https://github.com/pbui/void-packages iwd
https://github.com/void-linux/void-packages/pull/24687

iwd: update to 1.9.
Also update ell.

A patch file from https://github.com/void-linux/void-packages/pull/24687.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-iwd-24687.patch --]
[-- Type: text/x-diff, Size: 2162 bytes --]

From f97f83fe0efa81f33c9352d407dd0564a56c1f8a Mon Sep 17 00:00:00 2001
From: Peter Bui <pbui@github.bx612.space>
Date: Sat, 5 Sep 2020 09:11:18 -0400
Subject: [PATCH 1/2] ell: update to 0.33.

---
 srcpkgs/ell/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/ell/template b/srcpkgs/ell/template
index 4db8ecd157e..bdf4f40c3b2 100644
--- a/srcpkgs/ell/template
+++ b/srcpkgs/ell/template
@@ -1,6 +1,6 @@
 # Template file for 'ell'
 pkgname=ell
-version=0.32
+version=0.33
 revision=1
 build_style=gnu-configure
 configure_args="--enable-glib"
@@ -11,7 +11,7 @@ maintainer="Peter Bui <pbui@github.bx612.space>"
 license="GPL-2.0-only"
 homepage="https://01.org/ell"
 distfiles="${KERNEL_SITE}/libs/${pkgname}/${pkgname}-${version}.tar.xz"
-checksum=42fdb9e24ff561a101389d51445cab1ff7d55f5385dc22a05b0493088cf99e30
+checksum=d9e40e641164150394b74b719b9726fc734f24b2cde679cf5f3be6915c34eded
 
 ell-devel_package() {
 	depends="ell-${version}_${revision}"

From 0f532080551f15023761a98c9d03845610590ddd Mon Sep 17 00:00:00 2001
From: Peter Bui <pbui@github.bx612.space>
Date: Sat, 5 Sep 2020 09:12:51 -0400
Subject: [PATCH 2/2] iwd: update to 1.9.

---
 srcpkgs/iwd/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/iwd/template b/srcpkgs/iwd/template
index ec82b36ab3d..a3cc274154a 100644
--- a/srcpkgs/iwd/template
+++ b/srcpkgs/iwd/template
@@ -1,7 +1,7 @@
 # Template file for 'iwd'
 pkgname=iwd
-version=1.8
-revision=2
+version=1.9
+revision=1
 build_style=gnu-configure
 configure_args="--disable-systemd-service --enable-pie
  --enable-external-ell --enable-dbus-policy --enable-wired"
@@ -15,7 +15,7 @@ license="LGPL-2.1-or-later"
 homepage="https://iwd.wiki.kernel.org/"
 changelog="https://git.kernel.org/pub/scm/network/wireless/iwd.git/plain/ChangeLog"
 distfiles="${KERNEL_SITE}/network/wireless/${pkgname}-${version}.tar.xz"
-checksum=3c5074576f12a6f0f601aaa0f13863379ae4956f32d9d0937542025a4c136a8f
+checksum=1e6803885280da343805ad9997d604e1719c434266b83f1afffe210d55dfaea9
 make_dirs="/var/lib/iwd 0600 root root
  /var/lib/ead 0600 root root
  /etc/iwd 755 root root"

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

* Re: iwd: update to 1.9.
  2020-09-05 13:18 [PR PATCH] iwd: update to 1.9 pbui
@ 2020-09-05 15:03 ` ericonr
  2020-09-05 15:34 ` pbui
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: ericonr @ 2020-09-05 15:03 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 712 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/24687#issuecomment-687622908

Comment:
Upstream recommends not setting `UseDefaultInterface` in the config, and instead configuring `udev` to not rename network interfaces. (our workaround in https://docs.voidlinux.org/config/network/iwd.html is _not_ the recommended solution).

They have a drop-in `.link` file for udev, but I haven't managed to get the time to test if it solves the issue for us, since the file goes in some systemd-y folders. And enabling it in the build isn't easy, because it checks for systemd in the system.

What do you think, should we try to follow upstream recommendation here?

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

* Re: iwd: update to 1.9.
  2020-09-05 13:18 [PR PATCH] iwd: update to 1.9 pbui
  2020-09-05 15:03 ` ericonr
@ 2020-09-05 15:34 ` pbui
  2020-09-06 12:21 ` [PR PATCH] [Merged]: " ahesford
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: pbui @ 2020-09-05 15:34 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 305 bytes --]

New comment by pbui on void-packages repository

https://github.com/void-linux/void-packages/pull/24687#issuecomment-687626455

Comment:
As discussed on IRC, I think we should keep our current recommended workaround since we do not have systemd and thus cannot take advantage of the drop-in `.link` file.

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

* Re: [PR PATCH] [Merged]: iwd: update to 1.9.
  2020-09-05 13:18 [PR PATCH] iwd: update to 1.9 pbui
  2020-09-05 15:03 ` ericonr
  2020-09-05 15:34 ` pbui
@ 2020-09-06 12:21 ` ahesford
  2020-09-22  5:20 ` nathanblair
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: ahesford @ 2020-09-06 12:21 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 169 bytes --]

There's a merged pull request on the void-packages repository

iwd: update to 1.9.
https://github.com/void-linux/void-packages/pull/24687

Description:
Also update ell.

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

* Re: iwd: update to 1.9.
  2020-09-05 13:18 [PR PATCH] iwd: update to 1.9 pbui
                   ` (2 preceding siblings ...)
  2020-09-06 12:21 ` [PR PATCH] [Merged]: " ahesford
@ 2020-09-22  5:20 ` nathanblair
  2020-09-22  5:27 ` nathanblair
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: nathanblair @ 2020-09-22  5:20 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 440 bytes --]

New comment by nathanblair on void-packages repository

https://github.com/void-linux/void-packages/pull/24687#issuecomment-696513443

Comment:
This is broken for me with the `linux` mainline kernel (`5.8`) in the `musl` repos.

Starting it (via `/usr/libexec/iwd`) throws a complaint about not having the `CONFIG_CRYPTO_USER_API_SKCIPHER` option and a few others enabled in the kernel.

Does anyone know of a kernel that is supported?

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

* Re: iwd: update to 1.9.
  2020-09-05 13:18 [PR PATCH] iwd: update to 1.9 pbui
                   ` (3 preceding siblings ...)
  2020-09-22  5:20 ` nathanblair
@ 2020-09-22  5:27 ` nathanblair
  2020-09-22  5:54 ` ericonr
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: nathanblair @ 2020-09-22  5:27 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 626 bytes --]

New comment by nathanblair on void-packages repository

https://github.com/void-linux/void-packages/pull/24687#issuecomment-696513443

Comment:
This is broken for me with `linux` kernel (`5.4.66`) in the `musl` repos.

Starting it (via `/usr/libexec/iwd`) throws a complaint about not having the `CONFIG_CRYPTO_USER_API_SKCIPHER` option and a few others enabled in the kernel.

Does anyone know of a kernel that is supported?

I need to try updating to the latest 5.8 kernel I believe. I thought I had done that 😆 Now I'm going stuck between a rock and a hard place as I don't have internet to download the kernel :(

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

* Re: iwd: update to 1.9.
  2020-09-05 13:18 [PR PATCH] iwd: update to 1.9 pbui
                   ` (4 preceding siblings ...)
  2020-09-22  5:27 ` nathanblair
@ 2020-09-22  5:54 ` ericonr
  2020-09-22 11:03 ` ahesford
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: ericonr @ 2020-09-22  5:54 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 267 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/24687#issuecomment-696522175

Comment:
Try downgrading the package or using an older kernel. Alternatively, download the kernel package offline and transfer via USB.

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

* Re: iwd: update to 1.9.
  2020-09-05 13:18 [PR PATCH] iwd: update to 1.9 pbui
                   ` (5 preceding siblings ...)
  2020-09-22  5:54 ` ericonr
@ 2020-09-22 11:03 ` ahesford
  2020-09-22 15:06 ` sgn
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: ahesford @ 2020-09-22 11:03 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 191 bytes --]

New comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/24687#issuecomment-696651269

Comment:
I use `iwd` with `linux5.8` and have no problems.

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

* Re: iwd: update to 1.9.
  2020-09-05 13:18 [PR PATCH] iwd: update to 1.9 pbui
                   ` (6 preceding siblings ...)
  2020-09-22 11:03 ` ahesford
@ 2020-09-22 15:06 ` sgn
  2020-09-22 15:08 ` sgn
  2020-09-22 15:09 ` sgn
  9 siblings, 0 replies; 11+ messages in thread
From: sgn @ 2020-09-22 15:06 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 185 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/24687#issuecomment-696782215

Comment:
All 5.8 have `CONFIG_CRYPTO_USER_API_SKCIPHER=m`

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

* Re: iwd: update to 1.9.
  2020-09-05 13:18 [PR PATCH] iwd: update to 1.9 pbui
                   ` (7 preceding siblings ...)
  2020-09-22 15:06 ` sgn
@ 2020-09-22 15:08 ` sgn
  2020-09-22 15:09 ` sgn
  9 siblings, 0 replies; 11+ messages in thread
From: sgn @ 2020-09-22 15:08 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 254 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/24687#issuecomment-696782215

Comment:
All 5.8 have `CONFIG_CRYPTO_USER_API_SKCIPHER=m`

---
Edit: all 5.4 have `CONFIG_CRYPTO_USER_API_SKCIPHER=m`, too.

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

* Re: iwd: update to 1.9.
  2020-09-05 13:18 [PR PATCH] iwd: update to 1.9 pbui
                   ` (8 preceding siblings ...)
  2020-09-22 15:08 ` sgn
@ 2020-09-22 15:09 ` sgn
  9 siblings, 0 replies; 11+ messages in thread
From: sgn @ 2020-09-22 15:09 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 298 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/24687#issuecomment-696782215

Comment:
All 5.8 have `CONFIG_CRYPTO_USER_API_SKCIPHER=m`

---
Edit: all 5.4 have `CONFIG_CRYPTO_USER_API_SKCIPHER=m`, too.

And, `wpa_supplicant` is in base-system?

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

end of thread, other threads:[~2020-09-22 15:09 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-05 13:18 [PR PATCH] iwd: update to 1.9 pbui
2020-09-05 15:03 ` ericonr
2020-09-05 15:34 ` pbui
2020-09-06 12:21 ` [PR PATCH] [Merged]: " ahesford
2020-09-22  5:20 ` nathanblair
2020-09-22  5:27 ` nathanblair
2020-09-22  5:54 ` ericonr
2020-09-22 11:03 ` ahesford
2020-09-22 15:06 ` sgn
2020-09-22 15:08 ` sgn
2020-09-22 15:09 ` sgn

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).