diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2020-09-11 00:06:15 +0200 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2020-09-11 00:10:01 +0200 |
commit | 629982c050500a244e28878306ee345174b3cf0e (patch) | |
tree | 5e2b455f64cdce5b97b78d9d6f487943e1d807d8 /gnu/packages/linux.scm | |
parent | b02e52f6538f8b187d72dd22dacc052e1f8a388e (diff) | |
download | guix-629982c050500a244e28878306ee345174b3cf0e.tar.gz guix-629982c050500a244e28878306ee345174b3cf0e.zip |
gnu: Add ttyebus-linux-module.
* gnu/packages/linux.scm (ttyebus-linux-module): New variable.
Diffstat (limited to 'gnu/packages/linux.scm')
-rw-r--r-- | gnu/packages/linux.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 1f9fb7c02a..72fb3ca49d 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -7519,3 +7519,30 @@ tracing (uprobes), and tracepoints. The bpftrace language is inspired by awk and C, and predecessor tracers such as DTrace and SystemTap. bpftrace was created by Alastair Robertson.") (license license:asl2.0))) + +(define-public ttyebus-linux-module + (let ((revision "0") + (commit "fe4332a2281cf79804ef4d8516aa848ca1c58d1f")) + (package + (name "ttyebus-linux-module") + (version (git-version "1.5" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/eBUS/ttyebus.git") + (commit "fe4332a2281cf79804ef4d8516aa848ca1c58d1f"))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1i66xjs9vln5cca6wx7aiiw7jihrlsk9hjdqyczp36fvm1b1bani")))) + (supported-systems '("armhf-linux" "aarch64-linux")) + (build-system linux-module-build-system) + (arguments + `(#:tests? #f)) + (home-page "https://github.com/eBUS/ttyebus") + (synopsis "Low-latency Raspberry Pi UART driver") + (description "This package provides a Linux kernel module that will +provide a serial device @code{/dev/ttyebus} with almost no latency upon +receiving. It is dedicated to the PL011 UART of the Raspberry Pi.") + (license license:gpl3+)))) |