From: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
To: 57537@debbugs.gnu.org
Cc: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Subject: [bug#57537] [PATCH] gnu: Add ec
Date: Fri, 2 Sep 2022 04:00:49 +0200 [thread overview]
Message-ID: <20220902020049.15420-1-GNUtoo@cyberdimension.org> (raw)
* gnu/packages/linux.scm (ec): New variable.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
---
gnu/packages/linux.scm | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 5254b20dc4..bf71dad722 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -1375,6 +1375,44 @@ (define-public librem-ec-acpi-linux-module
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)
+ (native-inputs (list coreutils))
+ (arguments
+ '(#:make-flags (list (string-append "DESTDIR="
+ (assoc-ref %outputs "out")))
+ #:phases (modify-phases %standard-phases
+ (delete 'configure) ;no configure script
+ (add-after 'unpack 'patch-Makefile
+ (lambda _
+ (substitute* "tools/power/acpi/Makefile.config"
+ (("/bin/true")
+ (which "true")))
+ (substitute* "tools/power/acpi/Makefile.config"
+ (("/usr/bin/install")
+ (which "install"))) #t))
+ (add-after 'patch-Makefile 'enter-subdirectory
+ (lambda _
+ (chdir "tools/power/acpi/tools/ec") #t)))
+ #:tests? #f)) ;no tests
+ (home-page (package-home-page linux-libre))
+ (synopsis
+ "Low level utility for reading or writing Embedded Controller registers")
+ (description
+ "This utility can read or write specific registers or all the
+available registers of the Embedded Controllers supported by the Linux
+kernel. To work it needs to run as root, to have the ec_sys driver
+loaded, and to have the debugfs filesystem mounted at
+/sys/kernel/debug/. To make write support work, the ec_sys module
+needs to be loaded with the write_support=1 parameter. Write support
+can also be enabled after loading the module with
+the 'echo 1 > /sys/module/ec_sys/parameters/write_support' command.")
+ (license license:gpl2)))
+
(define-public lkrg
(package
(name "lkrg")
base-commit: 4d361a6b5147e3f91573e9d3c8c540a233e7e142
--
2.37.2
next reply other threads:[~2022-09-02 2:03 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-02 2:00 Denis 'GNUtoo' Carikli [this message]
2022-09-02 2:14 ` [bug#57537] [PATCH] gnu: Add ec Denis 'GNUtoo' Carikli
2022-09-02 2:32 ` [bug#57537] [PATCH v2] " Denis 'GNUtoo' Carikli
2022-09-02 4:47 ` Tobias Geerinckx-Rice via Guix-patches via
2022-09-03 20:32 ` Maxime Devos
2022-09-06 4:29 ` Denis 'GNUtoo' Carikli
2022-09-24 13:28 ` Denis 'GNUtoo' Carikli
2022-09-26 20:42 ` bug#57537: [PATCH] " Ludovic Courtès
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220902020049.15420-1-GNUtoo@cyberdimension.org \
--to=gnutoo@cyberdimension.org \
--cc=57537@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).