From 7bbcbed6ec72604ddd2679892e7fff41322ff76c Mon Sep 17 00:00:00 2001 From: human 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"