diff options
author | Lars Rustand <rustand.lars@gmail.com> | 2023-09-11 19:59:02 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2023-10-06 11:52:14 +0200 |
commit | 110378934e30f9223357f3ed2fadfbffd21a64a8 (patch) | |
tree | 8a572a3a171fbec4e3e49326684490bd8ec8f441 /gnu | |
parent | 9d0da4ced3c53dd841d414e886c32c4d5ee886ec (diff) |
gnu: Add vendor-reset-linux-module.
* gnu/packages/linux.scm (vendor-reset-linux-module): New variable.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/linux.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index b08eb102fe..c993e7b9bb 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1861,6 +1861,36 @@ Linux kernel module, it also contains a modprobe configuration and udev rules, which need to be installed separately.") (license license:gpl3+))) +(define-public vendor-reset-linux-module + (let ((commit "4b466e92a2d9f76ce1082cde982c7be0be91e248") + (revision "0")) + (package + (name "vendor-reset-linux-module") + (version (git-version "0.1.0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gnif/vendor-reset") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1gaf4j20grng689c9fylcqri3j9ycnhr2bsva2z6qcdqvzl6yxbi")))) + (build-system linux-module-build-system) + (arguments + (list #:tests? #f)) ;no test suite + (home-page "https://github.com/gnif/vendor-reset") + (synopsis + "Kernel module that resets GPUs that are affected by the reset bug") + (description + "This package provides a kernel module that is capable of +resetting hardware devices into a state where they can be +re-initialized or passed through into a virtual machine (VFIO). +While it would be great to have these in the kernel as PCI quirks, +some of the reset procedures are very complex and would never be +accepted as a quirk (ie AMD Vega 10).") + (license license:gpl2)))) + ;;; ;;; Pluggable authentication modules (PAM). |