gnu: acpi-call-linux-module: Update to 3.17-0.70b9c80.
* gnu/packages/linux.scm (acpi-call-linux-module): Update to 3.17-0.70b9c80. [arguments]: Remove ‘fix-for-linux-4.12’ phase.
This commit is contained in:
parent
4d36a27887
commit
ae1cda76f5
1 changed files with 34 additions and 38 deletions
|
@ -965,29 +965,25 @@ It has been modified to remove all non-free binary blobs.")
|
||||||
;;;
|
;;;
|
||||||
|
|
||||||
(define-public acpi-call-linux-module
|
(define-public acpi-call-linux-module
|
||||||
|
(let ((commit "70b9c80bd700e6a4d10797eaac9fd34b7e8cbd4a")
|
||||||
|
(revision "0"))
|
||||||
(package
|
(package
|
||||||
(name "acpi-call-linux-module")
|
(name "acpi-call-linux-module")
|
||||||
(version "3.17")
|
(version (git-version "3.17" revision commit))
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/teleshoes/acpi_call.git")
|
(url "https://github.com/teleshoes/acpi_call.git")
|
||||||
(commit version)))
|
(commit commit)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "04mbv4lasm3vv1j4ndxhnz4hvp5wg8f5fc9q6qxv0nhvwjynmsl3"))))
|
(base32 "09c1vw6vcrkqxbwhpgfgpj4d1grzn4qq6ka8pwwzm7cvm405xj7x"))))
|
||||||
(build-system linux-module-build-system)
|
(build-system linux-module-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no tests
|
`(#:tests? #f ; no tests
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'fix-for-linux-4.12
|
|
||||||
(lambda _
|
|
||||||
(substitute* "acpi_call.c"
|
|
||||||
(("asm/uaccess\\.h")
|
|
||||||
"linux/uaccess.h"))
|
|
||||||
#t))
|
|
||||||
(add-after 'install 'install-documentation
|
(add-after 'install 'install-documentation
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
|
@ -1009,7 +1005,7 @@ and @code{ACPI_BUFFER}.
|
||||||
|
|
||||||
It grants direct and undocumented access to your hardware that may cause damage
|
It grants direct and undocumented access to your hardware that may cause damage
|
||||||
and should be used with caution, especially on untested models.")
|
and should be used with caution, especially on untested models.")
|
||||||
(license license:gpl3+))) ; see README.md (no licence headers)
|
(license license:gpl3+)))) ; see README.md (no licence headers)
|
||||||
|
|
||||||
(define-public rtl8812au-aircrack-ng-linux-module
|
(define-public rtl8812au-aircrack-ng-linux-module
|
||||||
(let ((commit "945d6ed6505c32f0993b1dba576388e92e78101b")
|
(let ((commit "945d6ed6505c32f0993b1dba576388e92e78101b")
|
||||||
|
|
Reference in a new issue