mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-22 16:38:09 +01:00
5a0490f23d
Adding linux@6.5 but not changing the default linux to this version until upstream does as well. * nongnu/packages/linux.scm (linux-6.5): New variable. Co-authored-by: John Kehayias <john.kehayias@protonmail.com> Signed-off-by: John Kehayias <john.kehayias@protonmail.com>
1148 lines
49 KiB
Scheme
1148 lines
49 KiB
Scheme
;;; SPDX-License-Identifier: GPL-3.0-or-later
|
||
;;; Copyright © 2019, 2020 Alex Griffin <a@ajgrf.com>
|
||
;;; Copyright © 2019 Pierre Neidhardt <mail@ambrevar.xyz>
|
||
;;; Copyright © 2019 Giacomo Leidi <goodoldpaul@autistici.org>
|
||
;;; Copyright © 2019 Timotej Lazar <timotej.lazar@araneo.si>
|
||
;;; Copyright © 2020, 2021 James Smith <jsubuntuxp@disroot.org>
|
||
;;; Copyright © 2020, 2021, 2022 Jonathan Brielmaier <jonathan.brielmaier@web.de>
|
||
;;; Copyright © 2020, 2022 Michael Rohleder <mike@rohleder.de>
|
||
;;; Copyright © 2020, 2021, 2022 Tobias Geerinckx-Rice <me@tobias.gr>
|
||
;;; Copyright © 2020, 2021, 2022 Zhu Zihao <all_but_last@163.com>
|
||
;;; Copyright © 2021 Mathieu Othacehe <m.othacehe@gmail.com>
|
||
;;; Copyright © 2021 Brice Waegeneire <brice@waegenei.re>
|
||
;;; Copyright © 2021 Risto Stevcev <me@risto.codes>
|
||
;;; Copyright © 2021 aerique <aerique@xs4all.nl>
|
||
;;; Copyright © 2022 Josselin Poiret <dev@jpoiret.xyz>
|
||
;;; Copyright © 2022 John Kehayias <john.kehayias@protonmail.com>
|
||
;;; Copyright © 2022 Petr Hodina <phodina@protonmail.com>
|
||
;;; Copyright © 2022 Remco van 't Veer <remco@remworks.net>
|
||
;;; Copyright © 2022 Simen Endsjø <simendsjo@gmail.com>
|
||
;;; Copyright © 2022 Leo Famulari <leo@famulari.name>
|
||
;;; Copyright © 2023 Krzysztof Baranowski <pharcosyle@gmail.com>
|
||
;;; Copyright © 2023 Morgan Smith <Morgan.J.Smith@outlook.com>
|
||
;;; Copyright © 2023 Jelle Licht <jlicht@fsfe.org>
|
||
;;; Copyright © 2023 Adam Kandur <rndd@tuta.io>
|
||
;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space>
|
||
|
||
(define-module (nongnu packages linux)
|
||
#:use-module (gnu packages)
|
||
#:use-module (gnu packages base)
|
||
#:use-module (gnu packages compression)
|
||
#:use-module (gnu packages cpio)
|
||
#:use-module (gnu packages linux)
|
||
#:use-module (guix licenses)
|
||
#:use-module (guix packages)
|
||
#:use-module (guix utils)
|
||
#:use-module (guix download)
|
||
#:use-module (guix gexp)
|
||
#:use-module (guix git-download)
|
||
#:use-module (guix build-system copy)
|
||
#:use-module (guix build-system gnu)
|
||
#:use-module (guix build-system linux-module)
|
||
#:use-module (guix build-system trivial)
|
||
#:use-module (ice-9 match)
|
||
#:use-module (nonguix licenses)
|
||
#:use-module (srfi srfi-1)
|
||
#:export (corrupt-linux))
|
||
|
||
(define %default-extra-linux-options
|
||
(@@ (gnu packages linux) %default-extra-linux-options))
|
||
|
||
(define config->string
|
||
(@@ (gnu packages linux) config->string))
|
||
|
||
(define (linux-url version)
|
||
"Return a URL for Linux VERSION."
|
||
(string-append "mirror://kernel.org"
|
||
"/linux/kernel/v" (version-major version) ".x"
|
||
"/linux-" version ".tar.xz"))
|
||
|
||
(define* (corrupt-linux freedo
|
||
#:key
|
||
(name "linux")
|
||
(configs '())
|
||
(defconfig #f))
|
||
|
||
;; TODO: This very directly depends on guix internals.
|
||
;; Throw it all out when we manage kernel hashes.
|
||
(define gexp-inputs (@@ (guix gexp) gexp-inputs))
|
||
|
||
(define extract-gexp-inputs
|
||
(compose gexp-inputs force origin-uri))
|
||
|
||
(define (find-source-hash sources url)
|
||
(let ((versioned-origin
|
||
(find (lambda (source)
|
||
(let ((uri (origin-uri source)))
|
||
(and (string? uri) (string=? uri url)))) sources)))
|
||
(if versioned-origin
|
||
(origin-hash versioned-origin)
|
||
#f)))
|
||
|
||
(let* ((version (package-version freedo))
|
||
(url (linux-url version))
|
||
(pristine-source (package-source freedo))
|
||
(inputs (map gexp-input-thing (extract-gexp-inputs pristine-source)))
|
||
(sources (filter origin? inputs))
|
||
(hash (find-source-hash sources url)))
|
||
(package
|
||
(inherit
|
||
(customize-linux
|
||
#:name name
|
||
#:source (origin
|
||
(method url-fetch)
|
||
(uri url)
|
||
(hash hash))
|
||
#:configs configs
|
||
#:defconfig defconfig))
|
||
(version version)
|
||
(home-page "https://www.kernel.org/")
|
||
(synopsis "Linux kernel with nonfree binary blobs included")
|
||
(description
|
||
"The unmodified Linux kernel, including nonfree blobs, for running Guix System
|
||
on hardware which requires nonfree software to function."))))
|
||
|
||
(define-public linux-6.5
|
||
(corrupt-linux linux-libre-6.5))
|
||
|
||
(define-public linux-6.4
|
||
(corrupt-linux linux-libre-6.4))
|
||
|
||
(define-public linux-6.1
|
||
(corrupt-linux linux-libre-6.1))
|
||
|
||
(define-public linux-5.15
|
||
(corrupt-linux linux-libre-5.15))
|
||
|
||
(define-public linux-5.10
|
||
(corrupt-linux linux-libre-5.10))
|
||
|
||
(define-public linux-5.4
|
||
(corrupt-linux linux-libre-5.4))
|
||
|
||
(define-public linux-4.19
|
||
(corrupt-linux linux-libre-4.19))
|
||
|
||
(define-public linux-4.14
|
||
(corrupt-linux linux-libre-4.14))
|
||
|
||
(define-public linux linux-6.4)
|
||
;; linux-lts points to the *newest* released long-term support version.
|
||
(define-public linux-lts linux-6.1)
|
||
|
||
(define-public linux-arm64-generic-5.10
|
||
(corrupt-linux linux-libre-arm64-generic-5.10 #:name "linux-arm64-generic"))
|
||
|
||
(define-public linux-arm64-generic-5.4
|
||
(corrupt-linux linux-libre-arm64-generic-5.4 #:name "linux-arm64-generic"))
|
||
|
||
(define-public linux-arm64-generic
|
||
(corrupt-linux linux-libre-arm64-generic #:name "linux-arm64-generic"))
|
||
|
||
|
||
;;;
|
||
;;; Linux-XanMod
|
||
;;;
|
||
|
||
(define (make-linux-xanmod-source version xanmod-revision hash-string)
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (string-append "https://gitlab.com/xanmod/linux/-/archive/"
|
||
version "-" xanmod-revision ".tar.bz2"))
|
||
(sha256 hash-string)))
|
||
|
||
(define* (make-linux-xanmod version xanmod-revision source
|
||
#:key
|
||
(name "linux-xanmod")
|
||
(xanmod-defconfig "config_x86-64-v1"))
|
||
(let ((defconfig xanmod-defconfig) ;to be used in phases.
|
||
(base (customize-linux #:name name
|
||
#:source source
|
||
#:defconfig xanmod-defconfig
|
||
;; EXTRAVERSION is used instead.
|
||
#:configs (config->string
|
||
'(("CONFIG_LOCALVERSION" . "")))
|
||
#:extra-version xanmod-revision)))
|
||
(package
|
||
(inherit base)
|
||
(version version)
|
||
(arguments
|
||
(substitute-keyword-arguments (package-arguments base)
|
||
((#:phases phases)
|
||
#~(modify-phases #$phases
|
||
;; EXTRAVERSION is used instead.
|
||
(add-after 'unpack 'remove-localversion
|
||
(lambda _
|
||
(when (file-exists? "localversion")
|
||
(delete-file "localversion"))))
|
||
(add-before 'configure 'add-xanmod-defconfig
|
||
(lambda _
|
||
(rename-file
|
||
(string-append "CONFIGS/xanmod/gcc/" #$defconfig)
|
||
".config")
|
||
|
||
;; Adapted from `make-linux-libre*'.
|
||
(chmod ".config" #o666)
|
||
(let ((port (open-file ".config" "a"))
|
||
(extra-configuration
|
||
#$(config->string
|
||
;; FIXME: There might be other support missing.
|
||
(append '(("CONFIG_BLK_DEV_NVME" . #t)
|
||
("CONFIG_CRYPTO_XTS" . m)
|
||
("CONFIG_VIRTIO_CONSOLE" . m))
|
||
%default-extra-linux-options))))
|
||
(display extra-configuration port)
|
||
(close-port port))
|
||
(invoke "make" "oldconfig")
|
||
|
||
(rename-file
|
||
".config"
|
||
(string-append "arch/x86/configs/" #$defconfig))))))))
|
||
(native-inputs
|
||
(modify-inputs (package-native-inputs base)
|
||
;; cpio is needed for CONFIG_IKHEADERS.
|
||
(append cpio zstd)))
|
||
(home-page "https://xanmod.org/")
|
||
(supported-systems '("x86_64-linux"))
|
||
(synopsis
|
||
"Linux kernel distribution with custom settings and new features")
|
||
(description
|
||
"This package provides XanMod kernel, a general-purpose Linux kernel
|
||
distribution with custom settings and new features. It's built to provide a
|
||
stable, responsive and smooth desktop experience."))))
|
||
|
||
;; Linux-XanMod sources
|
||
(define-public linux-xanmod-version "6.4.3")
|
||
(define-public linux-xanmod-revision "xanmod1")
|
||
(define-public linux-xanmod-source
|
||
(make-linux-xanmod-source
|
||
linux-xanmod-version
|
||
linux-xanmod-revision
|
||
(base32 "0z6f7lnwbw2y7wwfr253d6gg4kz0l62s71pj266hb9c0dj15xl0r")))
|
||
|
||
(define-public linux-xanmod-lts-version "6.1.38")
|
||
(define-public linux-xanmod-lts-revision "xanmod1")
|
||
(define-public linux-xanmod-lts-source
|
||
(make-linux-xanmod-source
|
||
linux-xanmod-lts-version
|
||
linux-xanmod-lts-revision
|
||
(base32 "0c56jmvzzn8jakxffifnrj6pixywrlcwq6sxriylqxfq96bb8can")))
|
||
|
||
;; Linux-XanMod packages
|
||
(define-public linux-xanmod
|
||
(make-linux-xanmod linux-xanmod-version
|
||
linux-xanmod-revision
|
||
linux-xanmod-source))
|
||
|
||
(define-public linux-xanmod-lts
|
||
(make-linux-xanmod linux-xanmod-lts-version
|
||
linux-xanmod-lts-revision
|
||
linux-xanmod-lts-source))
|
||
|
||
|
||
;;;
|
||
;;; Firmwares
|
||
;;;
|
||
|
||
(define-public linux-firmware
|
||
(package
|
||
(name "linux-firmware")
|
||
(version "20230919")
|
||
(source (origin
|
||
(method url-fetch)
|
||
(uri (string-append "mirror://kernel.org/linux/kernel/firmware/"
|
||
"linux-firmware-" version ".tar.xz"))
|
||
(sha256
|
||
(base32
|
||
"1bc4y0w2xa9r3wb7bprdmy6vqj7swxbc9p542zhc9bxx086xmylp"))))
|
||
(build-system gnu-build-system)
|
||
(arguments
|
||
`(#:tests? #f
|
||
#:make-flags (list (string-append "DESTDIR=" (assoc-ref %outputs "out")))
|
||
#:phases
|
||
(modify-phases %standard-phases
|
||
(delete 'validate-runpath))))
|
||
(home-page
|
||
"https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git")
|
||
(synopsis "Nonfree firmware blobs for Linux")
|
||
(description "Nonfree firmware blobs for enabling support for various
|
||
hardware in the Linux kernel. This is a large package which may be overkill
|
||
if your hardware is supported by one of the smaller firmware packages.")
|
||
(license
|
||
(nonfree
|
||
(string-append "https://git.kernel.org/pub/scm/linux/kernel/git/"
|
||
"firmware/linux-firmware.git/plain/WHENCE")))))
|
||
|
||
(define (select-firmware keep)
|
||
"Modify linux-firmware copy list to retain only files matching KEEP regex."
|
||
`(lambda _
|
||
(use-modules (ice-9 regex))
|
||
(substitute* "WHENCE"
|
||
(("^(File|Link): *([^ ]*)(.*)" _ type file rest)
|
||
(string-append (if (string-match ,keep file) type "Skip") ": " file rest)))))
|
||
|
||
(define-public amdgpu-firmware
|
||
(package
|
||
(inherit linux-firmware)
|
||
(name "amdgpu-firmware")
|
||
(arguments
|
||
`(#:license-file-regexp "LICENSE.amdgpu"
|
||
,@(substitute-keyword-arguments (package-arguments linux-firmware)
|
||
((#:phases phases)
|
||
`(modify-phases ,phases
|
||
(add-after 'unpack 'select-firmware
|
||
,(select-firmware "^amdgpu/")))))))
|
||
(home-page "http://support.amd.com/en-us/download/linux")
|
||
(synopsis "Nonfree firmware for AMD graphics chips")
|
||
(description "Nonfree firmware for AMD graphics chips. While most AMD
|
||
graphics cards can be run with the free Mesa, many modern cards require a
|
||
nonfree kernel module to run properly and support features like hibernation and
|
||
advanced 3D.")
|
||
(license
|
||
(nonfree
|
||
(string-append
|
||
"https://git.kernel.org/pub/scm/linux/kernel/git/firmware"
|
||
"/linux-firmware.git/plain/LICENSE.amdgpu")))))
|
||
|
||
(define-public radeon-firmware
|
||
(package
|
||
(inherit amdgpu-firmware)
|
||
(name "radeon-firmware")
|
||
(arguments
|
||
`(#:license-file-regexp "LICENSE.radeon"
|
||
,@(substitute-keyword-arguments (package-arguments linux-firmware)
|
||
((#:phases phases)
|
||
`(modify-phases ,phases
|
||
(add-after 'unpack 'select-firmware
|
||
,(select-firmware "^radeon/")))))))
|
||
(synopsis "Nonfree firmware for older AMD graphics chips")
|
||
(description "Nonfree firmware for AMD graphics chips. While most AMD
|
||
graphics cards can be run with the free Mesa, some cards require a nonfree
|
||
kernel module to run properly and support features like hibernation and
|
||
advanced 3D.")))
|
||
|
||
(define-public raspberrypi-firmware
|
||
(package
|
||
(name "raspberrypi-firmware")
|
||
(version "1.20220331")
|
||
(source (origin
|
||
(method git-fetch)
|
||
(uri (git-reference
|
||
(url "https://github.com/raspberrypi/firmware")
|
||
(commit version)))
|
||
(modules '((guix build utils)
|
||
(ice-9 ftw)
|
||
(srfi srfi-26)))
|
||
(snippet
|
||
'(begin
|
||
(for-each (lambda (name)
|
||
(delete-file-recursively name))
|
||
`("documentation" "extra" ".github" "hardfp" "modules" "opt" "README.md"
|
||
,@(map (lambda (name)
|
||
(string-append "boot/" name))
|
||
(scandir "boot" (cut (file-name-predicate "^(kernel.*|COPYING\\.linux)$") <> #f)))))))
|
||
(file-name (git-file-name name version))
|
||
(sha256
|
||
(base32
|
||
"1hd1vkghkgdlmw04fap28f68nsf7d7i8dq6h9r4xa0h9y4f6j6ag"))))
|
||
(arguments
|
||
'(#:install-plan
|
||
'(("boot/" "."))))
|
||
(build-system copy-build-system)
|
||
(synopsis "Firmware for the Raspberry Pi boards")
|
||
(description "Pre-compiled binaries of the current Raspberry Pi kernel
|
||
and modules, userspace libraries, and bootloader/GPU firmware.")
|
||
(home-page "https://github.com/raspberrypi/firmware")
|
||
(supported-systems '("armhf-linux" "aarch64-linux"))
|
||
(license
|
||
(list gpl2
|
||
(nonfree
|
||
(string-append "file://boot/LICENCE.broadcom"))
|
||
(nonfree
|
||
(string-append "file://opt/vc/LICENCE"))))))
|
||
|
||
(define-public atheros-firmware
|
||
(package
|
||
(inherit linux-firmware)
|
||
(name "atheros-firmware")
|
||
(arguments
|
||
`(#:license-file-regexp "LICEN[CS]E.*[Aa]th"
|
||
,@(substitute-keyword-arguments (package-arguments linux-firmware)
|
||
((#:phases phases)
|
||
`(modify-phases ,phases
|
||
(add-after 'unpack 'select-firmware
|
||
,(select-firmware "^(ar[3579]|ath[1369]|htc_[79]|qca/|wil6)")))))))
|
||
(synopsis "Nonfree firmware blobs for Atheros wireless cards")
|
||
(description "Nonfree firmware blobs for Atheros wireless cards. This
|
||
package contains nonfree firmware for the following chips:
|
||
@itemize
|
||
@item Atheros AR3012 rev 01020001 patch (ar3k/AthrBT_0x01020001.dfu)
|
||
@item Atheros AR3012 rev 01020200 patch (ar3k/AthrBT_0x01020200.dfu)
|
||
@item Atheros AR3012 rev 01020201 patch, version 170 (ar3k/AthrBT_0x01020201.dfu)
|
||
@item Atheros AR3012 rev 11020000 patch (ar3k/AthrBT_0x11020000.dfu)
|
||
@item Atheros AR3012 rev 11020100 patch (ar3k/AthrBT_0x11020100.dfu)
|
||
@item Atheros AR3012 rev 31010000 patch (ar3k/AthrBT_0x31010000.dfu)
|
||
@item Atheros AR3012 rev 31010100 patch (ar3k/AthrBT_0x31010100.dfu)
|
||
@item Atheros AR3012 rev 41020000 patch (ar3k/AthrBT_0x41020000.dfu)
|
||
@item Atheros AR3012 rev 01020001 config (ar3k/ramps_0x01020001_26.dfu)
|
||
@item Atheros AR3012 rev 01020200 26 MHz config (ar3k/ramps_0x01020200_26.dfu)
|
||
@item Atheros AR3012 rev 01020200 40 MHz config (ar3k/ramps_0x01020200_40.dfu)
|
||
@item Atheros AR3012 rev 01020201 26 MHz config (ar3k/ramps_0x01020201_26.dfu)
|
||
@item Atheros AR3012 rev 01020201 40 MHz config (ar3k/ramps_0x01020201_40.dfu)
|
||
@item Atheros AR3012 rev 11020000 config (ar3k/ramps_0x11020000_40.dfu)
|
||
@item Atheros AR3012 rev 11020100 config (ar3k/ramps_0x11020100_40.dfu)
|
||
@item Atheros AR3012 rev 31010000 config (ar3k/ramps_0x31010000_40.dfu)
|
||
@item Atheros AR3012 rev 31010100 config (ar3k/ramps_0x31010100_40.dfu)
|
||
@item Atheros AR3012 rev 41020000 config (ar3k/ramps_0x41020000_40.dfu)
|
||
@item Atheros AR5523 firmware (ar5523.bin)
|
||
@item Atheros AR7010 rev 1.0 firmware (ar7010.fw)
|
||
@item Atheros AR7010 rev 1.1 firmware (ar7010_1_1.fw)
|
||
@item Atheros AR9271 firmware (ar9271.fw)
|
||
@item Qualcomm Atheros QCA4019 rev 1.0 board configuration
|
||
(ath10k/QCA4019/hw1.0/board-2.bin)
|
||
@item Qualcomm Atheros QCA4019 rev 1.0 firmware, version 10.4-3.6-00140
|
||
(ath10k/QCA4019/hw1.0/firmware-5.bin)
|
||
@item Qualcomm Atheros QCA6174 rev 2.1 board configuration, version 1
|
||
(ath10k/QCA6174/hw2.1/board.bin)
|
||
@item Qualcomm Atheros QCA6174 rev 2.1 board configuration, version 2
|
||
(ath10k/QCA6174/hw2.1/board-2.bin)
|
||
@item Qualcomm Atheros QCA6174 rev 2.1 firmware, version
|
||
SW_RM.1.1.1-00157-QCARMSWPZ-1 (ath10k/QCA6174/hw2.1/firmware-5.bin)
|
||
@item Qualcomm Atheros QCA6174 rev 3.0 board configuration, version 1
|
||
(ath10k/QCA6174/hw3.0/board.bin)
|
||
@item Qualcomm Atheros QCA6174 rev 3.0 board configuration
|
||
(ath10k/QCA6174/hw3.0/board-2.bin)
|
||
@item Qualcomm Atheros QCA6174 rev 3.0 firmware, version
|
||
WLAN.RM.2.0-00180-QCARMSWPZ-1 (ath10k/QCA6174/hw3.0/firmware-4.bin)
|
||
@item Qualcomm Atheros QCA6174 rev 3.0 firmware, version
|
||
WLAN.RM.4.4.1-00079-QCARMSWPZ-1 (ath10k/QCA6174/hw3.0/firmware-6.bin)
|
||
@item Qualcomm Atheros QCA9377 rev 1.0 board configuration, version 1
|
||
(ath10k/QCA9377/hw1.0/board.bin)
|
||
@item Qualcomm Atheros QCA9377 rev 1.0 board configuration, version 2
|
||
(ath10k/QCA9377/hw1.0/board-2.bin)
|
||
@item Qualcomm Atheros QCA9377 rev 1.0 firmware, version WLAN.TF.1.0-00267-1
|
||
(ath10k/QCA9377/hw1.0/firmware-5.bin)
|
||
@item Qualcomm Atheros QCA9377 rev 1.0 firmware, version
|
||
WLAN.TF.2.1-00021-QCARMSWP-1 (ath10k/QCA9377/hw1.0/firmware-6.bin)
|
||
@item Qualcomm Atheros QCA9887 rev 1.0 board configuration, version 1
|
||
(ath10k/QCA9887/hw1.0/board.bin)
|
||
@item Qualcomm Atheros QCA9887 rev 1.0 firmware, version 10.2.4-1.0-00041
|
||
(ath10k/QCA9887/hw1.0/firmware-5.bin)
|
||
@item Qualcomm Atheros QCA9888 rev 2.0 board configuration, version 2
|
||
(ath10k/QCA9888/hw2.0/board-2.bin)
|
||
@item Qualcomm Atheros QCA9888 rev 2.0 firmware, version 10.4-3.9.0.2-00024
|
||
(ath10k/QCA9888/hw2.0/firmware-5.bin)
|
||
@item Qualcomm Atheros QCA988X board configuration, version 1
|
||
(ath10k/QCA988X/hw2.0/board.bin)
|
||
@item Qualcomm Atheros QCA988X firmware, version 10.2.4.45
|
||
(ath10k/QCA988X/hw2.0/firmware-4.bin)
|
||
@item Qualcomm Atheros QCA988X firmware, version 10.2.4-1.0-00043
|
||
(ath10k/QCA988X/hw2.0/firmware-5.bin)
|
||
@item Qualcomm Atheros QCA9984 rev 1.0 board configuration, version 2
|
||
(ath10k/QCA9984/hw1.0/board-2.bin)
|
||
@item Qualcomm Atheros QCA9984 rev 1.0 firmware, version 10.4-3.9.0.2-00021
|
||
(ath10k/QCA9984/hw1.0/firmware-5.bin)
|
||
@item Qualcomm Atheros QCA99X0 board configuration, version 1
|
||
(ath10k/QCA99X0/hw2.0/board.bin)
|
||
@item Qualcomm Atheros QCA99X0 firmware, version 10.4.1.00030-1
|
||
(ath10k/QCA99X0/hw2.0/firmware-5.bin)
|
||
@item Atheros AR3011 firmware (ath3k-1.fw)
|
||
@item ath6k/AR6003.1/hw2.1.1/athwlan.bin
|
||
@item ath6k/AR6003.1/hw2.1.1/bdata.SD31.bin
|
||
@item ath6k/AR6003.1/hw2.1.1/bdata.SD32.bin
|
||
@item ath6k/AR6003.1/hw2.1.1/bdata.WB31.bin
|
||
@item ath6k/AR6003.1/hw2.1.1/data.patch.bin
|
||
@item ath6k/AR6003.1/hw2.1.1/endpointping.bin
|
||
@item ath6k/AR6003.1/hw2.1.1/otp.bin
|
||
@item ath6k/AR6003/hw1.0/athwlan.bin.z77
|
||
@item ath6k/AR6003/hw1.0/bdata.SD31.bin
|
||
@item ath6k/AR6003/hw1.0/bdata.SD32.bin
|
||
@item ath6k/AR6003/hw1.0/bdata.WB31.bin
|
||
@item ath6k/AR6003/hw1.0/data.patch.bin
|
||
@item ath6k/AR6003/hw1.0/otp.bin.z77
|
||
@item ath6k/AR6003/hw2.0/athwlan.bin.z77
|
||
@item ath6k/AR6003/hw2.0/bdata.SD31.bin
|
||
@item ath6k/AR6003/hw2.0/bdata.SD32.bin
|
||
@item ath6k/AR6003/hw2.0/bdata.WB31.bin
|
||
@item ath6k/AR6003/hw2.0/data.patch.bin
|
||
@item ath6k/AR6003/hw2.0/otp.bin.z77
|
||
@item ath6k/AR6003/hw2.1.1/athwlan.bin
|
||
@item ath6k/AR6003/hw2.1.1/bdata.SD31.bin
|
||
@item ath6k/AR6003/hw2.1.1/bdata.SD32.bin
|
||
@item ath6k/AR6003/hw2.1.1/bdata.WB31.bin
|
||
@item ath6k/AR6003/hw2.1.1/data.patch.bin
|
||
@item ath6k/AR6003/hw2.1.1/endpointping.bin
|
||
@item ath6k/AR6003/hw2.1.1/fw-2.bin
|
||
@item ath6k/AR6003/hw2.1.1/fw-3.bin
|
||
@item ath6k/AR6003/hw2.1.1/otp.bin
|
||
@item ath6k/AR6004/hw1.2/bdata.bin
|
||
@item ath6k/AR6004/hw1.2/fw-2.bin
|
||
@item ath6k/AR6004/hw1.3/bdata.bin
|
||
@item ath6k/AR6004/hw1.3/fw-3.bin
|
||
@item Atheros AR7010 firmware, version 1.4.0 (ath9k_htc/htc_7010-1.4.0.fw)
|
||
@item Atheros AR9271 firmware, version 1.4.0 (ath9k_htc/htc_9271-1.4.0.fw)
|
||
@item Atheros AR7010 firmware, version 1.3.1 (htc_7010.fw)
|
||
@item Atheros AR9271 firmware, version 1.3.1 (htc_9271.fw)
|
||
@item Qualcomm WCN3990 Bluetooth firmware (qca/crbtfw21.tlv)
|
||
@item Qualcomm WCN3990 Bluetooth NVM configuration (qca/crnv21.bin)
|
||
@item Qualcomm Atheros QCA61x4 version 3.0 UART BT NVM configuration
|
||
(qca/nvm_00130300.bin)
|
||
@item Qualcomm Atheros QCA61x4 version 3.2 UART BT NVM configuration
|
||
(qca/nvm_00130302.bin)
|
||
@item Qualcomm Atheros QCA6174 BT NVM configuration (qca/nvm_00440302.bin)
|
||
@item Qualcomm Atheros QCA61x4 version 2.0 USB BT NVM configuration
|
||
(qca/nvm_usb_00000200.bin)
|
||
@item Qualcomm Atheros QCA61x4 version 2.1 USB BT NVM configuration
|
||
(qca/nvm_usb_00000201.bin)
|
||
@item Qualcomm Atheros QCA61x4 version 3.0 USB BT NVM configuration
|
||
(qca/nvm_usb_00000300.bin)
|
||
@item Qualcomm Atheros QCA61x4 version 3.2 USB BT NVM configuration
|
||
(qca/nvm_usb_00000302.bin)
|
||
@item Qualcomm Atheros QCA61x4 version 3.0 UART BT rampatch
|
||
(qca/rampatch_00130300.bin)
|
||
@item Qualcomm Atheros QCA61x4 version 3.2 UART BT rampatch
|
||
(qca/rampatch_00130302.bin)
|
||
@item Qualcomm Atheros QCA6174 BT rampatch (qca/rampatch_00440302.bin)
|
||
@item Qualcomm Atheros QCA61x4 version 2.0 USB BT rampatch
|
||
(qca/rampatch_usb_00000200.bin)
|
||
@item Qualcomm Atheros QCA61x4 version 2.1 USB BT rampatch
|
||
(qca/rampatch_usb_00000201.bin)
|
||
@item Qualcomm Atheros QCA61x4 version 3.0 USB BT rampatch
|
||
(qca/rampatch_usb_00000300.bin)
|
||
@item Qualcomm Atheros QCA61x4 version 3.2 USB BT rampatch
|
||
(qca/rampatch_usb_00000302.bin)
|
||
@item Qualcomm Atheros Wil62x0 default board parameters, version 5.2.0.18
|
||
(wil6210.brd)
|
||
@item Qualcomm Atheros Wil62x0 firmware, version 5.2.0.18 (wil6210.fw)
|
||
@end itemize")
|
||
(license
|
||
(list
|
||
(nonfree
|
||
(string-append
|
||
"https://git.kernel.org/pub/scm/linux/kernel/git/firmware"
|
||
"/linux-firmware.git/plain/LICENCE.atheros_firmware"))
|
||
(non-copyleft
|
||
(string-append
|
||
"https://git.kernel.org/pub/scm/linux/kernel/git/firmware"
|
||
"/linux-firmware.git/plain/LICENCE.open-ath9k-htc-firmware"))
|
||
(nonfree
|
||
(string-append
|
||
"https://git.kernel.org/pub/scm/linux/kernel/git/firmware"
|
||
"/linux-firmware.git/plain/LICENSE.QualcommAtheros_ar3k"))
|
||
(nonfree
|
||
(string-append
|
||
"https://git.kernel.org/pub/scm/linux/kernel/git/firmware"
|
||
"/linux-firmware.git/plain/LICENSE.QualcommAtheros_ath10k"))))))
|
||
|
||
(define-public ath3k-firmware
|
||
(deprecated-package "ath3k-firmware" atheros-firmware))
|
||
|
||
(define-public ibt-hw-firmware
|
||
(package
|
||
(inherit linux-firmware)
|
||
(name "ibt-hw-firmware")
|
||
(arguments
|
||
`(#:license-file-regexp "LICENCE.ibt_firmware"
|
||
,@(substitute-keyword-arguments (package-arguments linux-firmware)
|
||
((#:phases phases)
|
||
`(modify-phases ,phases
|
||
(add-after 'unpack 'select-firmware
|
||
,(select-firmware "^intel/ibt-")))))))
|
||
(home-page "http://www.intel.com/support/wireless/wlan/sb/CS-016675.htm")
|
||
(synopsis "Non-free firmware for Intel bluetooth chips")
|
||
(description "This firmware is required by the btintel kernel module to
|
||
support many modern bluetooth Intel wireless cards (commonly found in
|
||
laptops).")
|
||
(license
|
||
(nonfree (string-append
|
||
"https://git.kernel.org/pub/scm/linux/kernel/git/firmware"
|
||
"/linux-firmware.git/plain/LICENCE.ibt_firmware")))))
|
||
|
||
(define-public iwlwifi-firmware
|
||
(package
|
||
(inherit linux-firmware)
|
||
(name "iwlwifi-firmware")
|
||
(arguments
|
||
`(#:license-file-regexp "LICENCE.iwlwifi_firmware"
|
||
,@(substitute-keyword-arguments (package-arguments linux-firmware)
|
||
((#:phases phases)
|
||
`(modify-phases ,phases
|
||
(add-after 'unpack 'select-firmware
|
||
,(select-firmware "^iwlwifi-")))))))
|
||
(home-page "https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi")
|
||
(synopsis "Nonfree firmware for Intel wifi chips")
|
||
(description "The proprietary iwlwifi kernel module is required by many
|
||
modern Intel wifi cards (commonly found in laptops). This blob enables
|
||
support for 5GHz and 802.11ac, among others.")
|
||
(license
|
||
(nonfree (string-append
|
||
"https://git.kernel.org/pub/scm/linux/kernel/git/firmware"
|
||
"/linux-firmware.git/plain/LICENCE.iwlwifi_firmware")))))
|
||
|
||
(define-public i915-firmware
|
||
(package
|
||
(inherit linux-firmware)
|
||
(name "i915-firmware")
|
||
(arguments
|
||
`(#:license-file-regexp "LICENCE.i915"
|
||
,@(substitute-keyword-arguments (package-arguments linux-firmware)
|
||
((#:phases phases)
|
||
`(modify-phases ,phases
|
||
(add-after 'unpack 'select-firmware
|
||
,(select-firmware "^i915/")))))))
|
||
(home-page "https://01.org/linuxgraphics/gfx-docs/drm/gpu/i915.html")
|
||
(synopsis "Nonfree firmware for Intel integrated graphics")
|
||
(description "This package contains the various firmware for Intel
|
||
integrated graphics chipsets, including GuC, HuC and DMC.")
|
||
(license
|
||
(nonfree (string-append
|
||
"https://git.kernel.org/pub/scm/linux/kernel/git/firmware"
|
||
"/linux-firmware.git/plain/LICENCE.i915")))))
|
||
|
||
(define-public realtek-firmware
|
||
(package
|
||
(inherit linux-firmware)
|
||
(name "realtek-firmware")
|
||
(arguments
|
||
`(#:license-file-regexp "LICENCE.rtlwifi_firmware.txt"
|
||
,@(substitute-keyword-arguments (package-arguments linux-firmware)
|
||
((#:phases phases)
|
||
`(modify-phases ,phases
|
||
(add-after 'unpack 'select-firmware
|
||
,(select-firmware
|
||
"^(rtlwifi|rtl_nic|rtl_bt|rtw88|rtw89)/")))))))
|
||
(home-page "https://wireless.wiki.kernel.org/en/users/drivers/rtl819x")
|
||
(synopsis "Nonfree firmware for Realtek ethernet, wifi, and bluetooth chips")
|
||
(description
|
||
"Nonfree firmware for Realtek ethernet, wifi, and Bluetooth chips. This
|
||
package contains nonfree firmware for the following chips:
|
||
@itemize
|
||
@item Realtek RTL8188EE firmware (rtlwifi/rtl8188efw.bin)
|
||
@item Realtek RTL8188EU firmware (rtlwifi/rtl8188eufw.bin)
|
||
@item Realtek RTL8192CE/RTL8188CE firmware (rtlwifi/rtl8192cfw.bin)
|
||
@item Realtek RTL8192CE/RTL8188CE B-cut firmware (rtlwifi/rtl8192cfwU_B.bin)
|
||
@item Realtek RTL8188CE A-cut firmware, version 4.816.2011 (rtlwifi/rtl8192cfwU.bin)
|
||
@item Realtek RTL8192CU/RTL8188CU UMC A-cut firmware (rtlwifi/rtl8192cufw_A.bin)
|
||
@item Realtek RTL8192CU/RTL8188CU UMC B-cut firmware (rtlwifi/rtl8192cufw_B.bin)
|
||
@item Realtek RTL8192CU/RTL8188CU TMSC firmware (rtlwifi/rtl8192cufw_TMSC.bin)
|
||
@item Realtek RTL8192CU/RTL8188CU fallback firmware (rtlwifi/rtl8192cufw.bin)
|
||
@item Realtek RTL8192DE firmware (rtlwifi/rtl8192defw.bin)
|
||
@item Realtek RTL8192EE wifi firmware (rtlwifi/rtl8192eefw.bin)
|
||
@item Realtek RTL8192EU non-WoWLAN firmware (rtlwifi/rtl8192eu_nic.bin)
|
||
@item Realtek RTL8192EU WoWLAN firmware (rtlwifi/rtl8192eu_wowlan.bin)
|
||
@item Realtek RTL8192SE/RTL8191SE firmware, version 4.816.2011 (rtlwifi/rtl8192sefw.bin)
|
||
@item Realtek RTL8192SU/RTL8712U firmware (rtlwifi/rtl8712u.bin)
|
||
@item Realtek RTL8723AU rev A wifi-with-BT firmware (rtlwifi/rtl8723aufw_A.bin)
|
||
@item Realtek RTL8723AU rev B wifi-with-BT firmware (rtlwifi/rtl8723aufw_B.bin)
|
||
@item Realtek RTL8723AU rev B wifi-only firmware (rtlwifi/rtl8723aufw_B_NoBT.bin)
|
||
@item Realtek RTL8723BE firmware, version 36 (rtlwifi/rtl8723befw_36.bin)
|
||
@item Realtek RTL8723BE firmware (rtlwifi/rtl8723befw.bin)
|
||
@item Realtek RTL8723BS BT firmware (rtlwifi/rtl8723bs_bt.bin)
|
||
@item Realtek RTL8723BS wifi non-WoWLAN firmware (rtlwifi/rtl8723bs_nic.bin)
|
||
@item Realtek RTL8723BS wifi WoWLAN firmware (rtlwifi/rtl8723bs_wowlan.bin)
|
||
@item Realtek RTL8723BU non-WoWLAN firmware (rtlwifi/rtl8723bu_nic.bin)
|
||
@item Realtek RTL8723BU WoWLAN firmware (rtlwifi/rtl8723bu_wowlan.bin)
|
||
@item Realtek RTL8723DE firmware (rtlwifi/rtl8723defw.bin)
|
||
@item Realtek RTL8723AE rev B firmware (rtlwifi/rtl8723fw_B.bin)
|
||
@item Realtek RTL8723AE rev A firmware (rtlwifi/rtl8723fw.bin)
|
||
@item Realtek RTL8821AE firmware, version 29 (rtlwifi/rtl8821aefw_29.bin)
|
||
@item Realtek RTL8821AE firmware (rtlwifi/rtl8821aefw_wowlan.bin)
|
||
@item Realtek RTL8821AE firmware (rtlwifi/rtl8821aefw.bin)
|
||
@item Realtek RTL8822BE firmware (rtlwifi/rtl8822befw.bin)
|
||
@item Realtek RTL8105E-1 firmware (rtl_nic/rtl8105e-1.fw)
|
||
@item Realtek RTL8106E-1 firmware, version 0.0.1 (rtl_nic/rtl8106e-1.fw)
|
||
@item Realtek RTL8106E-2 firmware, version 0.0.1 (rtl_nic/rtl8106e-2.fw)
|
||
@item Realtek RTL8107E-1 firmware, version 0.0.2 (rtl_nic/rtl8107e-1.fw)
|
||
@item Realtek RTL8107E-2 firmware, version 0.0.2 (rtl_nic/rtl8107e-2.fw)
|
||
@item Realtek RTL8111D-1/RTL8168D-1 firmware (rtl_nic/rtl8168d-1.fw)
|
||
@item Realtek RTL8111D-2/RTL8168D-2 firmware (rtl_nic/rtl8168d-2.fw)
|
||
@item Realtek RTL8168E-1 firmware (rtl_nic/rtl8168e-1.fw)
|
||
@item Realtek RTL8168E-2 firmware (rtl_nic/rtl8168e-2.fw)
|
||
@item Realtek RTL8168E-3 firmware, version 0.0.4 (rtl_nic/rtl8168e-3.fw)
|
||
@item Realtek RTL8168F-1 firmware, version 0.0.5 (rtl_nic/rtl8168f-1.fw)
|
||
@item Realtek RTL8168F-2 firmware, version 0.0.4 (rtl_nic/rtl8168f-2.fw)
|
||
@item Realtek RTL8168G-1 firmware, version 0.0.3 (rtl_nic/rtl8168g-1.fw)
|
||
@item Realtek RTL8168G-2 firmware, version 0.0.1 (rtl_nic/rtl8168g-2.fw)
|
||
@item Realtek RTL8168G-3 firmware, version 0.0.1 (rtl_nic/rtl8168g-3.fw)
|
||
@item Realtek RTL8168H-1 firmware, version 0.0.2 (rtl_nic/rtl8168h-1.fw)
|
||
@item Realtek RTL8168H-2 firmware, version 0.0.2 (rtl_nic/rtl8168h-2.fw)
|
||
@item Realtek RTL8402-1 firmware, version 0.0.1 (rtl_nic/rtl8402-1.fw)
|
||
@item Realtek RTL8411-1 firmware, version 0.0.3 (rtl_nic/rtl8411-1.fw)
|
||
@item Realtek RTL8411-2 firmware, version 0.0.1 (rtl_nic/rtl8411-2.fw)
|
||
@item Realtek RTL8192EE Bluetooth firmware (rtl_bt/rtl8192ee_fw.bin)
|
||
@item Realtek RTL8812AE Bluetooth firmware (rtl_bt/rtl8812ae_fw.bin)
|
||
@item Realtek RTL8761A Bluetooth firmware (rtl_bt/rtl8761a_fw.bin)
|
||
@item Realtek RTL8821A Bluetooth firmware (rtl_bt/rtl8821a_fw.bin)
|
||
@item Realtek RTL8192EU Bluetooth firmware (rtl_bt/rtl8192eu_fw.bin)
|
||
@item Realtek RTL8723AU rev A Bluetooth firmware (rtl_bt/rtl8723a_fw.bin)
|
||
@item Realtek RTL8723BU rev B Bluetooth firmware (rtl_bt/rtl8723b_fw.bin)
|
||
@item Realtek RTL8723D Bluetooth config (rtl_bt/rtl8723d_config.bin)
|
||
@item Realtek RTL8723D Bluetooth firmware (rtl_bt/rtl8723d_fw.bin)
|
||
@item Realtek RTL8821C Bluetooth config (rtl_bt/rtl8821c_config.bin)
|
||
@item Realtek RTL8821C Bluetooth firmware (rtl_bt/rtl8821c_fw.bin)
|
||
@item Realtek RTL8822B Bluetooth config (rtl_bt/rtl8822b_config.bin)
|
||
@item Realtek RTL8822B Bluetooth firmware (rtl_bt/rtl8822b_fw.bin)
|
||
@item Realtek RTL8822CU Bluetooth firmware (rtl_bt/rtl8822cu_fw.bin)
|
||
@end itemize")
|
||
(license
|
||
(nonfree
|
||
(string-append
|
||
"https://git.kernel.org/pub/scm/linux/kernel/git/firmware"
|
||
"/linux-firmware.git/plain/LICENCE.rtlwifi_firmware.txt")))))
|
||
|
||
(define-public rtlwifi-firmware
|
||
(deprecated-package "rtlwifi-firmware" realtek-firmware))
|
||
|
||
(define-public rtl-nic-firmware
|
||
(deprecated-package "rtl-nic-firmware" realtek-firmware))
|
||
|
||
(define-public rtl-bt-firmware
|
||
(deprecated-package "rtl-bt-firmware" realtek-firmware))
|
||
|
||
(define-public rtl8192eu-linux-module
|
||
(let ((commit "865656c3a1d1aee8c4ba459ce7608756d17c712f")
|
||
(revision "5"))
|
||
(package
|
||
(name "rtl8192eu-linux-module")
|
||
(version (git-version "0.0.0" revision commit))
|
||
(source
|
||
(origin
|
||
(method git-fetch)
|
||
(uri (git-reference
|
||
(url "https://github.com/clnhub/rtl8192eu-linux")
|
||
(commit commit)))
|
||
(file-name (git-file-name name version))
|
||
(sha256
|
||
(base32
|
||
"08nq0wlrpzm8n2g14c4jlxs0crr6s5ls1n14bc17zmpy9vlarhfx"))))
|
||
(build-system linux-module-build-system)
|
||
(arguments
|
||
`(#:make-flags
|
||
(list "CC=gcc"
|
||
(string-append "KSRC="
|
||
(assoc-ref %build-inputs "linux-module-builder")
|
||
"/lib/modules/build"))
|
||
#:phases
|
||
(modify-phases %standard-phases
|
||
(replace 'build
|
||
(lambda* (#:key (make-flags '()) #:allow-other-keys)
|
||
(apply invoke "make" make-flags))))
|
||
#:tests? #f)) ; no test suite
|
||
(home-page "https://github.com/clnhub/rtl8192eu-linux")
|
||
(synopsis "Linux driver for Realtek RTL8192EU wireless network adapters")
|
||
(description "This is Realtek's RTL8192EU Linux driver for wireless
|
||
network adapters.")
|
||
;; Rejected by Guix beause it contains a binary blob in:
|
||
;; hal/rtl8192e/hal8192e_fw.c
|
||
(license gpl2))))
|
||
|
||
(define-public rtl8821ce-linux-module
|
||
(let ((commit "a478095a45d8aa957b45be4f9173c414efcacc6f")
|
||
(revision "10"))
|
||
(package
|
||
(name "rtl8821ce-linux-module")
|
||
(version (git-version "0.0.0" revision commit))
|
||
(source
|
||
(origin
|
||
(method git-fetch)
|
||
(uri (git-reference
|
||
(url "https://github.com/tomaspinho/rtl8821ce")
|
||
(commit commit)))
|
||
(file-name (git-file-name name version))
|
||
(sha256
|
||
(base32
|
||
"00cn87jjrcxjqr3n8jv4w3n64zksmzz05fdr1gdvnbx1ab5739f6"))))
|
||
(build-system linux-module-build-system)
|
||
(arguments
|
||
(list #:make-flags
|
||
#~(list (string-append "CC=" #$(cc-for-target))
|
||
(string-append "KSRC="
|
||
(assoc-ref %build-inputs
|
||
"linux-module-builder")
|
||
"/lib/modules/build"))
|
||
#:phases
|
||
#~(modify-phases %standard-phases
|
||
(replace 'build
|
||
(lambda* (#:key (make-flags '()) (parallel-build? #t)
|
||
#:allow-other-keys)
|
||
(apply invoke "make"
|
||
`(,@(if parallel-build?
|
||
`("-j" ,(number->string (parallel-job-count)))
|
||
'())
|
||
,@make-flags)))))
|
||
#:tests? #f)) ; no test suite
|
||
(home-page "https://github.com/tomaspinho/rtl8821ce")
|
||
(synopsis "Linux driver for Realtek RTL8821CE wireless network adapters")
|
||
(description "This is Realtek's RTL8821CE Linux driver for wireless
|
||
network adapters.")
|
||
;; Rejected by Guix beause it contains a binary blob in:
|
||
;; hal/rtl8821c/hal8821c_fw.c
|
||
(license gpl2))))
|
||
|
||
(define-public rtl8812au-aircrack-ng-linux-module
|
||
(let ((commit "35308f4dd73e77fa572c48867cce737449dd8548")
|
||
(revision "11"))
|
||
(package
|
||
(inherit rtl8821ce-linux-module)
|
||
(name "rtl8812au-aircrack-ng-linux-module")
|
||
(version (git-version "5.6.4.2" revision commit))
|
||
(source
|
||
(origin
|
||
(method git-fetch)
|
||
(uri (git-reference
|
||
(url "https://github.com/aircrack-ng/rtl8812au")
|
||
(commit commit)))
|
||
(file-name (git-file-name name version))
|
||
(sha256
|
||
(base32 "1clqrgmq5fhzybbiapmdbhg5qfx9k21r0hqa9pqmyinaqhvfnhfj"))
|
||
(modules '((guix build utils)))
|
||
(snippet
|
||
#~(begin
|
||
;; Remove bundled tarballs, APKs, word lists, speadsheets,
|
||
;; and other unnecessary unlicenced things.
|
||
(for-each delete-file-recursively (list "android"
|
||
"docs"
|
||
"tools"))))))
|
||
(supported-systems '("x86_64-linux" "i686-linux"))
|
||
(home-page "https://github.com/aircrack-ng/rtl8812au")
|
||
(synopsis "Linux driver for Realtek USB wireless network adapters")
|
||
(description
|
||
"This is Realtek's rtl8812au Linux driver for USB 802.11n wireless
|
||
network adapters, modified by the aircrack-ng project to support monitor mode
|
||
and frame injection. It provides a @code{88XXau} kernel module that supports
|
||
RTL8812AU, RTL8821AU, and RTL8814AU chips.")
|
||
;; Rejected by Guix beause it contains a binary blob in:
|
||
;; hal/rtl8812a/hal8812a_fw.c
|
||
(license gpl2+))))
|
||
|
||
(define-public r8168-linux-module
|
||
(package
|
||
(name "r8168-linux-module")
|
||
(version "8.051.02")
|
||
(source (origin
|
||
(method git-fetch)
|
||
(uri (git-reference
|
||
(url "https://github.com/mtorromeo/r8168")
|
||
(commit version)))
|
||
(file-name (git-file-name name version))
|
||
(sha256
|
||
(base32
|
||
"16mpr0np6xbmzdnwg4p3q6yli2gh032k98g4vplya33hrn50vh52"))))
|
||
(arguments
|
||
(list #:tests? #f
|
||
#:phases #~(modify-phases %standard-phases
|
||
(add-after 'unpack 'enter-src-directory
|
||
(lambda _
|
||
(chdir "src")))
|
||
;; Needed to compile module for linux >= 6.1
|
||
(add-before 'build 'fix-build
|
||
(lambda _
|
||
(substitute* "r8168.h"
|
||
(("netif_napi_add\\(ndev, &priv->napi, function, weight\\)")
|
||
"netif_napi_add(ndev, &priv->napi, function)")))))))
|
||
(build-system linux-module-build-system)
|
||
(home-page "https://github.com/mtorromeo/r8168")
|
||
(synopsis "Linux driver for Realtek PCIe network adapters")
|
||
(description
|
||
"Linux driver for Realtek PCIe network adapters. If the r8169 kernel module is
|
||
giving you trouble, you can try this module.")
|
||
(license gpl2)))
|
||
|
||
(define broadcom-sta-version "6.30.223.271")
|
||
|
||
(define (broadcom-sta-patch name commit hash)
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (string-append "https://raw.githubusercontent.com/NixOS/nixpkgs/"
|
||
commit
|
||
"/pkgs/os-specific/linux/broadcom-sta/"
|
||
name
|
||
".patch"))
|
||
(sha256
|
||
(base32
|
||
hash))))
|
||
|
||
(define broadcom-sta-x86_64-source
|
||
(origin
|
||
(method url-fetch/tarbomb)
|
||
(uri (string-append "https://docs.broadcom.com/docs-and-downloads/"
|
||
"docs/linux_sta/hybrid-v35_64-nodebug-pcoem-"
|
||
(string-replace-substring broadcom-sta-version "." "_")
|
||
".tar.gz"))
|
||
(patches
|
||
;; Keep these in sync with the list at
|
||
;; https://github.com/NixOS/nixpkgs/tree/master/pkgs/os-specific/linux/broadcom-sta.
|
||
;; Nixpkgs is good about keeping broadcom patches up to date so updating
|
||
;; for a new kernel release should be as simple as chaging the commit to
|
||
;; the newest available and adding any new patches.
|
||
(let ((commit "355042e2ff5933b245e804c5eaff4ec3f340e71b"))
|
||
(list
|
||
(broadcom-sta-patch "i686-build-failure" commit "1522w2gb698svlkb2b4lijbd740agvs2ibpz4g0jlv8v31cybkf4")
|
||
(broadcom-sta-patch "license" commit "0rwlhafcmpp97cknqwv8gwf8sbxgqavgci1ywfkdxiylh4mhcvhr")
|
||
(broadcom-sta-patch "linux-4.7" commit "1nn1p6j77s9zfpxy5gl6qg1kha45pc7ww0yfkn5dmhazi288wamf")
|
||
(broadcom-sta-patch "linux-4.8" commit "0bjx4ayi30jbdm3sh38p52d6dnb3c44mqzqi8g51hhbn1kghkmq9")
|
||
(broadcom-sta-patch "linux-4.11" commit "1s3n87v9cn3qicd5v4wzj20psl4gcn1ghz0fnsq60n05rriicywp")
|
||
(broadcom-sta-patch "linux-4.12" commit "1kj7sfnw9hxjxzqm48565vniq7fkhapaqadfpw6l9bcnpf53xld3")
|
||
(broadcom-sta-patch "linux-4.15" commit "0bvk7nrvqa066dpn6vvb6x00yrxa37iqv87135kay9mllmkjd70b")
|
||
(broadcom-sta-patch "linux-5.1" commit "1kykpzhs19dwww6grav3qxsd28kn8y84i4b4csx2y5m2j629ncn0")
|
||
(broadcom-sta-patch "linux-5.6" commit "0v1jkaf60jgjkrjfcmx1gin4b65cdv39glqy7l3cswkmzb60lz4l")
|
||
(broadcom-sta-patch "linux-5.9" commit "1sgmbaahydk4j3i1jf8q1fz3a210fmakrpz0w1n9v3dcn23ladah")
|
||
(broadcom-sta-patch "linux-5.17" commit "1qsllvykhs3nvjwv8d6bgsm2sc9a1lxf8yqf6fa99p60ggd253ps")
|
||
(broadcom-sta-patch "linux-5.18" commit "1img0a0vqnkmq4c21aywq2ajyigzcfhbbpg1hw9nx7cbj9hf6d0l")
|
||
(broadcom-sta-patch "linux-6.0" commit "0rv74j5giafzl19f01yvfa5rgvsdvcimxzhks2fp44wpnxq241nb")
|
||
(broadcom-sta-patch "linux-6.1" commit "1pvx1h7iimcbfqdc13n1980ngxk9q6iyip8svn293x4h7jn472kf")
|
||
(broadcom-sta-patch "pedantic-fix" commit "1kxmw1iyxnfwad75h981sak5qk16p81xy1f2qxss2d0v97vkfkl5")
|
||
(broadcom-sta-patch "null-pointer-fix" commit "15c2vxgf7v5wy4s8w9jk7irf3fxxghy05gxmav1ss73a2azajdx7")
|
||
(broadcom-sta-patch "gcc" commit "0jcqk2vapyy2pbsjv9n8b3qp6vqz17d6s07cr04cx7075q7yhz5h"))))
|
||
(sha256
|
||
(base32
|
||
"1gj485qqr190idilacpxwgqyw21il03zph2rddizgj7fbd6pfyaz"))))
|
||
|
||
(define broadcom-sta-i686-source
|
||
(origin
|
||
(inherit broadcom-sta-x86_64-source)
|
||
(uri (string-append "https://docs.broadcom.com/docs-and-downloads/"
|
||
"docs/linux_sta/hybrid-v35-nodebug-pcoem-"
|
||
(string-replace-substring broadcom-sta-version "." "_")
|
||
".tar.gz"))
|
||
(sha256
|
||
(base32
|
||
"1kaqa2dw3nb8k23ffvx46g8jj3wdhz8xa6jp1v3wb35cjfr712sg"))))
|
||
|
||
(define-public broadcom-sta
|
||
(package
|
||
(name "broadcom-sta")
|
||
(version broadcom-sta-version)
|
||
(source
|
||
(match (or (%current-target-system) (%current-system))
|
||
("x86_64-linux" broadcom-sta-x86_64-source)
|
||
(_ broadcom-sta-i686-source)))
|
||
(build-system linux-module-build-system)
|
||
(arguments
|
||
`(#:linux ,linux
|
||
#:tests? #f))
|
||
(supported-systems '("i686-linux" "x86_64-linux"))
|
||
(home-page "https://www.broadcom.com/support/802.11")
|
||
(synopsis "Broadcom 802.11 Linux STA wireless driver")
|
||
(description "This package contains Broadcom's IEEE 802.11a/b/g/n/ac hybrid
|
||
Linux device driver for the following chipsets:
|
||
@itemize
|
||
@item BCM4311
|
||
@item BCM4312
|
||
@item BCM4313
|
||
@item BCM4321
|
||
@item BCM4322
|
||
@item BCM43224
|
||
@item BCM43225
|
||
@item BCM43227
|
||
@item BCM43228
|
||
@item BCM43142
|
||
@item BCM4331
|
||
@item BCM4352
|
||
@item BCM4360
|
||
@end itemize")
|
||
(license (nonfree "https://www.broadcom.com/support/802.11"))))
|
||
|
||
(define-public broadcom-bt-firmware
|
||
(package
|
||
(name "broadcom-bt-firmware")
|
||
(version "12.0.1.1012")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri
|
||
(string-append
|
||
"http://download.windowsupdate.com/c/msdownload/update/driver/drvs/2017/04/"
|
||
"852bb503-de7b-4810-a7dd-cbab62742f09_7cf83a4c194116648d17707ae37d564f9c70bec2"
|
||
".cab"))
|
||
(file-name (string-append name "-" version ".cab"))
|
||
(sha256
|
||
(base32
|
||
"1b1qjwxjk4y91l3iz157kms8601n0mmiik32cs6w9b1q4sl4pxx9"))))
|
||
(build-system trivial-build-system)
|
||
(arguments
|
||
`(#:modules ((guix build utils))
|
||
#:builder
|
||
(begin
|
||
(use-modules (guix build utils)
|
||
(ice-9 rdelim)
|
||
(ice-9 regex))
|
||
(let ((PATH (string-append (assoc-ref %build-inputs "cabextract") "/bin:"
|
||
(assoc-ref %build-inputs "bluez") "/bin"))
|
||
(source (assoc-ref %build-inputs "source"))
|
||
(firmware-dir (string-append %output "/lib/firmware/brcm/")))
|
||
(setenv "PATH" PATH)
|
||
(system* "cabextract" source)
|
||
(mkdir-p firmware-dir)
|
||
;; process the inf file to get the correct filenames
|
||
(with-input-from-file "bcbtums.inf"
|
||
(lambda ()
|
||
(do ((line (read-line) (read-line))
|
||
(devices '()))
|
||
((eof-object? line) #t)
|
||
;; these two `lets' are like awk patterns matching against
|
||
;; records. link devices in this file with its vids and pids
|
||
(let ((rcrd (string-match "%.*%=(.*),.*VID_(....).*PID_(....)"
|
||
line)))
|
||
(when rcrd
|
||
(set! devices
|
||
(assoc-set! devices (match:substring rcrd 1)
|
||
`((vid . ,(match:substring rcrd 2))
|
||
(pid . ,(match:substring rcrd 3)))))))
|
||
;; find the hex file associated with each device, build the
|
||
;; output file name
|
||
(let ((rcrd (string-match "\\[(RAMUSB.*)\\.CopyList\\]" line)))
|
||
(when rcrd
|
||
(let* ((key (match:substring rcrd 1))
|
||
(hex-file (begin (do ((line (read-line) (read-line)))
|
||
((string-match "^([0-9A-Z_.]+\\.hex)" line)
|
||
(string-drop-right line 1)))))
|
||
(chipset (car (string-tokenize
|
||
hex-file
|
||
char-set:letter+digit)))
|
||
(vid (assoc-ref (assoc-ref devices key) 'vid))
|
||
(pid (assoc-ref (assoc-ref devices key) 'pid))
|
||
(hcd-file (string-append chipset "-"
|
||
(string-downcase vid) "-"
|
||
(string-downcase pid)
|
||
".hcd")))
|
||
;; finally convert the file, phew!
|
||
(system* "hex2hcd"
|
||
"-o" (string-append firmware-dir hcd-file)
|
||
hex-file)))))))))))
|
||
(native-inputs
|
||
`(("bluez" ,bluez)
|
||
("cabextract" ,cabextract)))
|
||
(home-page "http://www.broadcom.com/support/bluetooth")
|
||
(synopsis "Broadcom bluetooth firmware")
|
||
(description
|
||
"This package contains nonfree firmware for the following bluetooth
|
||
chipsets from Broadcom:
|
||
@itemize
|
||
@item BCM4335C0
|
||
@item BCM4350C5
|
||
@item BCM4356A2
|
||
@item BCM4371C2
|
||
@item BCM20702A1
|
||
@item BCM20702B0
|
||
@item BCM20703A1
|
||
@item BCM43142A0
|
||
@end itemize")
|
||
(license
|
||
(undistributable
|
||
(string-append
|
||
"https://raw.githubusercontent.com/winterheart/broadcom-bt-firmware"
|
||
"/b60fa04881bf8f9b9d578f57d1dfa596cae2a82e"
|
||
"/LICENSE.broadcom_bcm20702")))))
|
||
|
||
(define-public facetimehd
|
||
(package
|
||
(name "facetimehd")
|
||
(version "0.5.18")
|
||
(source
|
||
(origin
|
||
(method git-fetch)
|
||
(uri (git-reference
|
||
(url "https://github.com/patjak/facetimehd")
|
||
(commit version)))
|
||
(file-name (git-file-name "facetimehd" version))
|
||
(sha256
|
||
(base32
|
||
"1598pzjnbij3knvqmk2yslj26wmqiqjqgqgcw9p9jx6z7bdjvvsh"))))
|
||
(build-system linux-module-build-system)
|
||
(arguments
|
||
'(#:tests? #f))
|
||
(synopsis "Linux driver for the FacetimeHD (Broadcom 1570) PCIe webcam")
|
||
(description "Linux driver for the FacetimeHD webcam. According to Apple the
|
||
following models contain a Facetime HD camera and should be compatible with this
|
||
driver:
|
||
@itemize
|
||
@item iMac (21,5\", since mid 2011)
|
||
@item iMac (27\", since mid 2011)
|
||
@item MacBook Air (since mid 2011)
|
||
@item MacBook Pro (15\", since early 2011)
|
||
@item MacBook Pro (17\", since early 2011)
|
||
@item MacBook Pro (13\", since early 2011)
|
||
@item Thunderbolt display
|
||
@end itemize")
|
||
(home-page "https://github.com/patjak/facetimehd")
|
||
(license gpl2)
|
||
(supported-systems '("i686-linux" "x86_64-linux"))))
|
||
|
||
(define-public intel-microcode
|
||
(package
|
||
(name "intel-microcode")
|
||
(version "20230808")
|
||
(source
|
||
(origin
|
||
(method git-fetch)
|
||
(uri (git-reference
|
||
(url (string-append
|
||
"https://github.com/intel/"
|
||
"Intel-Linux-Processor-Microcode-Data-Files.git"))
|
||
(commit (string-append "microcode-" version))))
|
||
(file-name (git-file-name name version))
|
||
(sha256
|
||
(base32 "1n0w6q46xag7a9iddl3v1gh1rzv9h6kiyy739ac6vg3v8lazh9n7"))))
|
||
(build-system copy-build-system)
|
||
(arguments
|
||
(list #:install-plan
|
||
#~(let ((doc (string-append "share/doc/" #$name "-" #$version "/")))
|
||
`(("intel-ucode" "lib/firmware/")
|
||
("README.md" ,doc)
|
||
("releasenote.md" ,doc)
|
||
("security.md" ,doc)))))
|
||
(home-page
|
||
"https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files")
|
||
(synopsis "Processor microcode firmware for Intel CPUs")
|
||
(description "Updated system processor microcode for Intel i686 and Intel
|
||
x86-64 processors. Intel releases microcode updates to correct processor
|
||
behavior as documented in the respective processor specification updates. The
|
||
@code{iucode-tool} package can be used to determine the appropriate file for
|
||
your CPU.")
|
||
(license (nonfree "file://license"))))
|
||
|
||
(define-public amd-microcode
|
||
(package
|
||
(inherit linux-firmware)
|
||
(name "amd-microcode")
|
||
(arguments
|
||
`(#:license-file-regexp "LICENSE.amd-ucode"
|
||
,@(substitute-keyword-arguments (package-arguments linux-firmware)
|
||
((#:phases phases)
|
||
`(modify-phases ,phases
|
||
(add-after 'unpack 'select-firmware
|
||
,(select-firmware "^amd-ucode/")))))))
|
||
(synopsis "Processor microcode firmware for AMD CPUs")
|
||
(description "Updated system processor microcode for AMD x86-64
|
||
processors. AMD releases microcode updates to correct processor behavior as
|
||
documented in the respective processor revision guides.")
|
||
(license
|
||
(nonfree
|
||
(string-append "https://git.kernel.org/pub/scm/linux/kernel/git/"
|
||
"firmware/linux-firmware.git/plain/LICENSE.amd-ucode")))))
|
||
|
||
(define-public sof-firmware
|
||
(package
|
||
(name "sof-firmware")
|
||
(version "2.2.3")
|
||
(source
|
||
(origin
|
||
(method url-fetch)
|
||
(uri (string-append "https://github.com/thesofproject/sof-bin/releases/download/v"
|
||
version "/sof-bin-v" version ".tar.gz"))
|
||
(sha256
|
||
(base32
|
||
"0hnvzbjgib8f0m2gw345vk0p4h9ba34g7vciih1jgcz2y5kgs7sr"))))
|
||
(build-system copy-build-system)
|
||
(arguments
|
||
`(#:install-plan
|
||
(list (list (string-append "sof-v" ,version) "lib/firmware/intel/sof")
|
||
(list (string-append "sof-tplg-v" ,version) "lib/firmware/intel/sof-tplg"))))
|
||
(home-page "https://www.sofproject.org")
|
||
(synopsis "Sound Open Firmware")
|
||
(description "This package contains Linux firmwares and topology files for
|
||
audio DSPs that can be found on the Intel Skylake architecture. This
|
||
firmware can be built from source but need to be signed by Intel in order to be
|
||
loaded by Linux.")
|
||
(license bsd-3)))
|