mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-22 16:38:09 +01:00
nongnu: sof-firmware: Update to 1.7.
Fixes https://gitlab.com/nonguix/nonguix/-/issues/109 * nongnu/packages/linux.scm (sof-firmware): Update to 1.7. Co-authored-by: Risto Stevcev <me@risto.codes> Signed-off-by: Jonathan Brielmaier <jonathan.brielmaier@web.de>
This commit is contained in:
parent
7b47869f37
commit
8eb1c4174e
1 changed files with 7 additions and 26 deletions
|
@ -6,6 +6,8 @@
|
||||||
;;; Copyright © 2020, 2021 Jonathan Brielmaier <jonathan.brielmaier@web.de>
|
;;; Copyright © 2020, 2021 Jonathan Brielmaier <jonathan.brielmaier@web.de>
|
||||||
;;; Copyright © 2021 Mathieu Othacehe <m.othacehe@gmail.com>
|
;;; Copyright © 2021 Mathieu Othacehe <m.othacehe@gmail.com>
|
||||||
;;; Copyright © 2021 Brice Waegeneire <brice@waegenei.re>
|
;;; Copyright © 2021 Brice Waegeneire <brice@waegenei.re>
|
||||||
|
;;; Copyright © 2021 Risto Stevcev <me@risto.codes>
|
||||||
|
;;; Copyright © 2021 aerique <aerique@xs4all.nl>
|
||||||
;;;
|
;;;
|
||||||
;;; This program is free software: you can redistribute it and/or modify
|
;;; This program is free software: you can redistribute it and/or modify
|
||||||
;;; it under the terms of the GNU General Public License as published by
|
;;; it under the terms of the GNU General Public License as published by
|
||||||
|
@ -783,42 +785,21 @@ documented in the respective processor revision guides.")
|
||||||
(define-public sof-firmware
|
(define-public sof-firmware
|
||||||
(package
|
(package
|
||||||
(name "sof-firmware")
|
(name "sof-firmware")
|
||||||
(version "1.6.1")
|
(version "1.7")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/thesofproject/sof-bin")
|
(url "https://github.com/thesofproject/sof-bin")
|
||||||
(commit (string-append "stable-v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1zg5fki8skmmx84p4ws8x2m13bm13fb3kvlhz7zsnmdg6ra06az6"))))
|
(base32 "1fb4rxgg3haxqg2gcm89g7af6v0a0h83c1ar2fyfa8h8pcf7hik7"))))
|
||||||
(build-system copy-build-system)
|
(build-system copy-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:install-plan
|
`(#:install-plan
|
||||||
(let* ((base
|
(list (list (string-append "sof-v" ,version) "lib/firmware/intel/sof")
|
||||||
(string-append "lib/firmware/intel/sof/v" ,version))
|
(list (string-append "sof-tplg-v" ,version) "lib/firmware/intel/sof-tplg"))))
|
||||||
(dest "lib/firmware/intel/sof")
|
|
||||||
(tplg
|
|
||||||
(string-append "lib/firmware/intel/sof-tplg-v" ,version))
|
|
||||||
(dest-tplg "lib/firmware/intel/sof-tplg")
|
|
||||||
(fw-file (lambda* (file #:optional subdir)
|
|
||||||
(list (string-append base "/"
|
|
||||||
(or subdir "")
|
|
||||||
file "-v" ,version ".ri")
|
|
||||||
(string-append dest "/" file ".ri"))))
|
|
||||||
(unsigned fw-file)
|
|
||||||
(intel-signed (lambda (file)
|
|
||||||
(fw-file file "intel-signed/"))))
|
|
||||||
(list (unsigned "sof-bdw")
|
|
||||||
(unsigned "sof-byt")
|
|
||||||
(unsigned "sof-cht")
|
|
||||||
(intel-signed "sof-apl")
|
|
||||||
(intel-signed "sof-cnl")
|
|
||||||
(intel-signed "sof-ehl")
|
|
||||||
(intel-signed "sof-icl")
|
|
||||||
(intel-signed "sof-tgl")
|
|
||||||
(list tplg dest-tplg)))))
|
|
||||||
(home-page "https://www.sofproject.org")
|
(home-page "https://www.sofproject.org")
|
||||||
(synopsis "Sound Open Firmware")
|
(synopsis "Sound Open Firmware")
|
||||||
(description "This package contains Linux firmwares and topology files for
|
(description "This package contains Linux firmwares and topology files for
|
||||||
|
|
Loading…
Reference in a new issue