[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
12/18: gnu: Add ec.
From: |
guix-commits |
Subject: |
12/18: gnu: Add ec. |
Date: |
Mon, 26 Sep 2022 17:32:10 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 22c6d4dc142b61a218ee46c0181d69eb3f242e75
Author: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
AuthorDate: Sat Sep 24 15:28:15 2022 +0200
gnu: Add ec.
* gnu/packages/linux.scm (ec): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/linux.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 1838c9a2fa..74fb35e55f 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -64,6 +64,7 @@
;;; Copyright © 2022 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;; Copyright © 2022 Rene Saavedra <nanuui@protonmail.com>
;;; Copyright © 2022 muradm <mail@muradm.net>
+;;; Copyright © 2022 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
;;;
;;; This file is part of GNU Guix.
@@ -1342,6 +1343,31 @@ battery charging thresholds, keyboard backlight, fans
and thermal monitors,
and the notification, WiFi, and Bluetooth LED.")
(license license:gpl2)))
+(define-public ec
+ (package
+ (name "ec")
+ (version (package-version linux-libre))
+ (source (package-source linux-libre))
+ (build-system gnu-build-system)
+ (arguments
+ (list #:make-flags #~(list (string-append "sbindir="
+ #$output "/sbin")
+ "INSTALL=install" "STRIPCMD=true")
+ #:phases #~(modify-phases %standard-phases
+ (add-after 'unpack 'enter-subdirectory
+ (lambda _
+ (chdir "tools/power/acpi/tools/ec")))
+ (delete 'configure)) ;no configure script
+ #:tests? #f)) ;no tests
+ (home-page (package-home-page linux-libre))
+ (synopsis
+ "Utility for reading or writing @acronym{EC, Embedded Controller}
registers")
+ (description
+ "This utility can read or write specific registers or all the available
+registers of the @acronym{EC, Embedded Controller} supported by the
+@code{ec_sys} Linux driver.")
+ (license license:gpl2)))
+
(define-public lkrg
(package
(name "lkrg")
- branch master updated (28a50eeac7 -> f15a141cf3), guix-commits, 2022/09/26
- 02/18: etc: Add tempel snippet move., guix-commits, 2022/09/26
- 01/18: machine: ssh: Parameterize '%current-system' early on., guix-commits, 2022/09/26
- 06/18: download: Switch savannah mirrors to HTTPS URLs., guix-commits, 2022/09/26
- 09/18: gnu-maintenance: Simplify latest-kernel.org-release., guix-commits, 2022/09/26
- 13/18: gnu: Add texlive-babel-polish., guix-commits, 2022/09/26
- 14/18: gnu: gnome-boxes: Patch 'qemu-img' file name., guix-commits, 2022/09/26
- 12/18: gnu: Add ec.,
guix-commits <=
- 05/18: gnu-maintenance: Produce mirror:// URIs in latest-html-release., guix-commits, 2022/09/26
- 10/18: gnu-maintenance: Remove unused procedures., guix-commits, 2022/09/26
- 11/18: gnu-maintenance: Test latest-html-release., guix-commits, 2022/09/26
- 15/18: debug-link: Clarify what CRC is., guix-commits, 2022/09/26
- 16/18: services: nginx: Don't emit empty fields, guix-commits, 2022/09/26
- 17/18: gnu: busybox: Fix cross-compilation., guix-commits, 2022/09/26
- 18/18: file-systems: Add cgroup2 to %pseudo-file-system-types., guix-commits, 2022/09/26
- 04/18: gnu-maintenance: Produce mirror:// URIs in latest-ftp-release., guix-commits, 2022/09/26
- 07/18: gnu-maintenance: Simplify latest-savannah-release., guix-commits, 2022/09/26
- 08/18: download: Add a kernel.org mirror., guix-commits, 2022/09/26