summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorLiliana Marie Prikler <liliana.prikler@gmail.com>2026-03-26 11:57:16 +0100
committerVagrant Cascadian <vagrant@debian.org>2026-04-02 15:37:08 -0700
commit98f495ed00418bc0c53626011b7db3e419a978b9 (patch)
treed97a741f822f5935287a2a4e8b0b4b484eebe833 /gnu
parentb025c7103027943b1bef8aee5dd4cf29cdf904c1 (diff)
gnu: corefreq: Update to 2.1.0.
* gnu/packages/linux.scm (corefreq): Update to 2.1.0. [#:phases]<patch-Makefile>: Use ‘echo’ instead of ‘@echo’. <prepare>: Drop call to “make”. Fixes: guix/guix#7330 (corefreq fails to build) Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/linux.scm12
1 files changed, 5 insertions, 7 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 6621dfd901d..14600b3b7c7 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -2690,7 +2690,7 @@ and should be used with caution, especially on untested models.")
(define-public corefreq
(package
(name "corefreq")
- (version "1.98.4")
+ (version "2.1.0")
(source
(origin
(method git-fetch)
@@ -2699,7 +2699,7 @@ and should be used with caution, especially on untested models.")
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "0mxp5h23y09674syaj5gpdifr53zvgjv7g7hargwg6897883qfln"))))
+ (base32 "054rnrwvkbfmy2maxjk928fh1p346313ixhkbjwcq7qjz3idjixl"))))
;; The upstream Makefile is now such a proprietary mess that standard builds
;; as performed by our linux-module-build-system are more or less impossible
;; without heavy patching. However, we still keep it as the main build
@@ -2731,14 +2731,12 @@ and should be used with caution, especially on untested models.")
(string-append = dir "\n"))
(("^([[:space:]]+)(.* modules_install.*)"
_ indent command)
- (string-append indent "@echo skipping " command))))))
+ (string-append indent "echo skipping " command))))))
(add-before 'build 'prepare
- (lambda* (#:key source-directory make-flags #:allow-other-keys)
+ (lambda* (#:key source-directory #:allow-other-keys)
;; Lazily fix another mismatch between what the kernel module
;; build system expects and what this package provides.
- (symlink "source/build" source-directory) ;$(BUILD)
- ;; Set up symbolic links inside $(BUILD), for some reason.
- (apply invoke "make" "prepare" make-flags)))
+ (symlink "source/build" source-directory)))
(replace 'build (assoc-ref gnu:%standard-phases 'build))
(add-before 'install 'resolve-symlink
;; The build system silently fails to install from a symlink.