Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] linux-tools: correct required modules for usbipd
@ 2020-10-07  1:06 huglovefan
  2020-12-31 18:21 ` ericonr
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: huglovefan @ 2020-10-07  1:06 UTC (permalink / raw)
  To: ml

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

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

https://github.com/huglovefan/void-packages master
https://github.com/void-linux/void-packages/pull/25400

linux-tools: correct required modules for usbipd
the service file was last touched in 2014 so probably the module was refactored since then

it now needs `vhci-hcd` for attaching remote devices and `usbip-host` for exporting local ones

all linux versions packaged by void have these modules

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

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

From 7bbcbed6ec72604ddd2679892e7fff41322ff76c Mon Sep 17 00:00:00 2001
From: human <human@neet.fi>
Date: Wed, 7 Oct 2020 03:49:09 +0300
Subject: [PATCH] linux-tools: correct required modules for usbipd

---
 srcpkgs/linux-tools/files/usbipd/run | 3 ++-
 srcpkgs/linux-tools/template         | 2 +-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/linux-tools/files/usbipd/run b/srcpkgs/linux-tools/files/usbipd/run
index 1be237e9d63..9deca9bdfae 100755
--- a/srcpkgs/linux-tools/files/usbipd/run
+++ b/srcpkgs/linux-tools/files/usbipd/run
@@ -1,3 +1,4 @@
 #!/bin/sh
-modprobe -q usbip || exit 1
+modprobe -q usbip-host || exit 1
+modprobe -q vhci-hcd || exit 1
 exec usbipd
diff --git a/srcpkgs/linux-tools/template b/srcpkgs/linux-tools/template
index ead8123db21..7313e0288bc 100644
--- a/srcpkgs/linux-tools/template
+++ b/srcpkgs/linux-tools/template
@@ -1,7 +1,7 @@
 # Template file for 'linux-tools'
 pkgname=linux-tools
 version=5.4.42
-revision=1
+revision=2
 wrksrc="linux-${version}"
 build_style=meta
 hostmakedepends="asciidoc automake flex gettext libtool perl python3 xmlto"

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

* Re: linux-tools: correct required modules for usbipd
  2020-10-07  1:06 [PR PATCH] linux-tools: correct required modules for usbipd huglovefan
@ 2020-12-31 18:21 ` ericonr
  2021-01-29  3:56 ` ericonr
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: ericonr @ 2020-12-31 18:21 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/25400#issuecomment-753021122

Comment:
I'm doing #27581, but I'm not sure I should pull in these changes... Having it like that means that the service won't work anymore for older kernels either. Maybe we could create a config file for `/etc/modules-load.d` ?

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

* Re: linux-tools: correct required modules for usbipd
  2020-10-07  1:06 [PR PATCH] linux-tools: correct required modules for usbipd huglovefan
  2020-12-31 18:21 ` ericonr
@ 2021-01-29  3:56 ` ericonr
  2021-03-25  2:03 ` ericonr
  2021-03-25  2:03 ` [PR PATCH] [Closed]: " ericonr
  3 siblings, 0 replies; 5+ messages in thread
From: ericonr @ 2021-01-29  3:56 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/25400#issuecomment-769558049

Comment:
Ping

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

* Re: linux-tools: correct required modules for usbipd
  2020-10-07  1:06 [PR PATCH] linux-tools: correct required modules for usbipd huglovefan
  2020-12-31 18:21 ` ericonr
  2021-01-29  3:56 ` ericonr
@ 2021-03-25  2:03 ` ericonr
  2021-03-25  2:03 ` [PR PATCH] [Closed]: " ericonr
  3 siblings, 0 replies; 5+ messages in thread
From: ericonr @ 2021-03-25  2:03 UTC (permalink / raw)
  To: ml

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

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/25400#issuecomment-806305097

Comment:
Closed in 7bada7202d5985ec5e399336a86d1eb0f1dc5f29

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

* Re: [PR PATCH] [Closed]: linux-tools: correct required modules for usbipd
  2020-10-07  1:06 [PR PATCH] linux-tools: correct required modules for usbipd huglovefan
                   ` (2 preceding siblings ...)
  2021-03-25  2:03 ` ericonr
@ 2021-03-25  2:03 ` ericonr
  3 siblings, 0 replies; 5+ messages in thread
From: ericonr @ 2021-03-25  2:03 UTC (permalink / raw)
  To: ml

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

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

linux-tools: correct required modules for usbipd
https://github.com/void-linux/void-packages/pull/25400

Description:
the service file was last touched in 2014 so probably the module was refactored since then

it now needs `vhci-hcd` for attaching remote devices and `usbip-host` for exporting local ones

all linux versions packaged by void have these modules

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

end of thread, other threads:[~2021-03-25  2:03 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-07  1:06 [PR PATCH] linux-tools: correct required modules for usbipd huglovefan
2020-12-31 18:21 ` ericonr
2021-01-29  3:56 ` ericonr
2021-03-25  2:03 ` ericonr
2021-03-25  2:03 ` [PR PATCH] [Closed]: " ericonr

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