Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] wpa_supplicant: add DRIVER option to runit service
@ 2020-04-14 11:21 matthias-t
  2020-04-14 15:04 ` [PR PATCH] [Updated] " matthias-t
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: matthias-t @ 2020-04-14 11:21 UTC (permalink / raw)
  To: ml

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

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

https://github.com/matthias-t/void-packages wpa_supplicant-driver
https://github.com/void-linux/void-packages/pull/20972

wpa_supplicant: add DRIVER option to runit service


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

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

From 2b56376a638f777ae18176d2d758d78da2bcbef3 Mon Sep 17 00:00:00 2001
From: Matthias Totschnig <matthias@totschnig.org>
Date: Tue, 14 Apr 2020 12:19:22 +0200
Subject: [PATCH] wpa_supplicant: add DRIVER option to runit service

---
 srcpkgs/wpa_supplicant/files/wpa_supplicant/run | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/srcpkgs/wpa_supplicant/files/wpa_supplicant/run b/srcpkgs/wpa_supplicant/files/wpa_supplicant/run
index f9e004b2181..d96bac26d1a 100644
--- a/srcpkgs/wpa_supplicant/files/wpa_supplicant/run
+++ b/srcpkgs/wpa_supplicant/files/wpa_supplicant/run
@@ -1,7 +1,7 @@
 #!/bin/sh
 if [ -r ./conf ]; then
 	. ./conf
-	: ${OPTS:=-M -c ${CONF_FILE:-/etc/wpa_supplicant/wpa_supplicant.conf} ${WPA_INTERFACE:+-i ${WPA_INTERFACE}} -s}
+	: ${OPTS:=-M -c ${CONF_FILE:-/etc/wpa_supplicant/wpa_supplicant.conf} ${WPA_INTERFACE:+-i ${WPA_INTERFACE}} ${DRIVER:+-D ${DRIVER}} -s}
 else
 	. ./auto
 	OPTS="${AUTO} -s"

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

* Re: [PR PATCH] [Updated] wpa_supplicant: add DRIVER option to runit service
  2020-04-14 11:21 [PR PATCH] wpa_supplicant: add DRIVER option to runit service matthias-t
@ 2020-04-14 15:04 ` matthias-t
  2020-04-14 15:05 ` matthias-t
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: matthias-t @ 2020-04-14 15:04 UTC (permalink / raw)
  To: ml

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

There is an updated pull request by matthias-t against master on the void-packages repository

https://github.com/matthias-t/void-packages wpa_supplicant-driver
https://github.com/void-linux/void-packages/pull/20972

wpa_supplicant: add DRIVER option to runit service
On old hardware were `wext` is needed, there should be a way to configure `wpa_supplicant` without resorting to setting all options manually through `OPTS`.

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

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

From 54142f096a3c0e3e84f2e0ffbf857ffeda0d34c3 Mon Sep 17 00:00:00 2001
From: Matthias Totschnig <matthias@totschnig.org>
Date: Tue, 14 Apr 2020 12:19:22 +0200
Subject: [PATCH] wpa_supplicant: add DRIVER option to runit service

---
 srcpkgs/wpa_supplicant/files/wpa_supplicant/run | 2 +-
 srcpkgs/wpa_supplicant/template                 | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/wpa_supplicant/files/wpa_supplicant/run b/srcpkgs/wpa_supplicant/files/wpa_supplicant/run
index f9e004b2181..d96bac26d1a 100644
--- a/srcpkgs/wpa_supplicant/files/wpa_supplicant/run
+++ b/srcpkgs/wpa_supplicant/files/wpa_supplicant/run
@@ -1,7 +1,7 @@
 #!/bin/sh
 if [ -r ./conf ]; then
 	. ./conf
-	: ${OPTS:=-M -c ${CONF_FILE:-/etc/wpa_supplicant/wpa_supplicant.conf} ${WPA_INTERFACE:+-i ${WPA_INTERFACE}} -s}
+	: ${OPTS:=-M -c ${CONF_FILE:-/etc/wpa_supplicant/wpa_supplicant.conf} ${WPA_INTERFACE:+-i ${WPA_INTERFACE}} ${DRIVER:+-D ${DRIVER}} -s}
 else
 	. ./auto
 	OPTS="${AUTO} -s"
diff --git a/srcpkgs/wpa_supplicant/template b/srcpkgs/wpa_supplicant/template
index 4a654889f0a..8da2652238d 100644
--- a/srcpkgs/wpa_supplicant/template
+++ b/srcpkgs/wpa_supplicant/template
@@ -1,7 +1,7 @@
 # Template file for 'wpa_supplicant'
 pkgname=wpa_supplicant
 version=2.9
-revision=1
+revision=2
 build_wrksrc="$pkgname"
 short_desc="WPA/WPA2/IEEE 802.1X Supplicant"
 maintainer="Enno Boland <gottox@voidlinux.org>"

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

* Re: wpa_supplicant: add DRIVER option to runit service
  2020-04-14 11:21 [PR PATCH] wpa_supplicant: add DRIVER option to runit service matthias-t
  2020-04-14 15:04 ` [PR PATCH] [Updated] " matthias-t
@ 2020-04-14 15:05 ` matthias-t
  2020-04-14 15:10 ` Hoshpak
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: matthias-t @ 2020-04-14 15:05 UTC (permalink / raw)
  To: ml

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

New comment by matthias-t on void-packages repository

https://github.com/void-linux/void-packages/pull/20972#issuecomment-613497392

Comment:
@Hoshpak like this?

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

* Re: wpa_supplicant: add DRIVER option to runit service
  2020-04-14 11:21 [PR PATCH] wpa_supplicant: add DRIVER option to runit service matthias-t
  2020-04-14 15:04 ` [PR PATCH] [Updated] " matthias-t
  2020-04-14 15:05 ` matthias-t
@ 2020-04-14 15:10 ` Hoshpak
  2020-04-14 15:10 ` [PR PATCH] [Merged]: " Hoshpak
  2020-04-14 15:12 ` matthias-t
  4 siblings, 0 replies; 6+ messages in thread
From: Hoshpak @ 2020-04-14 15:10 UTC (permalink / raw)
  To: ml

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

New comment by Hoshpak on void-packages repository

https://github.com/void-linux/void-packages/pull/20972#issuecomment-613500121

Comment:
exactly.

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

* Re: [PR PATCH] [Merged]: wpa_supplicant: add DRIVER option to runit service
  2020-04-14 11:21 [PR PATCH] wpa_supplicant: add DRIVER option to runit service matthias-t
                   ` (2 preceding siblings ...)
  2020-04-14 15:10 ` Hoshpak
@ 2020-04-14 15:10 ` Hoshpak
  2020-04-14 15:12 ` matthias-t
  4 siblings, 0 replies; 6+ messages in thread
From: Hoshpak @ 2020-04-14 15:10 UTC (permalink / raw)
  To: ml

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

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

wpa_supplicant: add DRIVER option to runit service
https://github.com/void-linux/void-packages/pull/20972

Description:
On old hardware were `wext` is needed, there should be a way to configure `wpa_supplicant` without resorting to setting all options manually through `OPTS`.

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

* Re: wpa_supplicant: add DRIVER option to runit service
  2020-04-14 11:21 [PR PATCH] wpa_supplicant: add DRIVER option to runit service matthias-t
                   ` (3 preceding siblings ...)
  2020-04-14 15:10 ` [PR PATCH] [Merged]: " Hoshpak
@ 2020-04-14 15:12 ` matthias-t
  4 siblings, 0 replies; 6+ messages in thread
From: matthias-t @ 2020-04-14 15:12 UTC (permalink / raw)
  To: ml

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

New comment by matthias-t on void-packages repository

https://github.com/void-linux/void-packages/pull/20972#issuecomment-613501182

Comment:
thanks!

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

end of thread, other threads:[~2020-04-14 15:12 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-14 11:21 [PR PATCH] wpa_supplicant: add DRIVER option to runit service matthias-t
2020-04-14 15:04 ` [PR PATCH] [Updated] " matthias-t
2020-04-14 15:05 ` matthias-t
2020-04-14 15:10 ` Hoshpak
2020-04-14 15:10 ` [PR PATCH] [Merged]: " Hoshpak
2020-04-14 15:12 ` matthias-t

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).