diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-01-05 17:51:43 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-01-08 20:12:02 +0100 |
commit | 55e1d39b47dcb0a5c6b20552f1ab12db60ffda3e (patch) | |
tree | c3668e77e9ec41ab55c5fae68bddeea8b78413ee /gnu | |
parent | d1ce1125b80b0dfba4b665293a6bb0c611025584 (diff) |
gnu: Add iucode-tool.
* gnu/packages/linux.scm (iucode-tool): New public variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/linux.scm | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 1cefb662e8..fb5e1ccbbb 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -15,7 +15,7 @@ ;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2016 David Craven <david@craven.ch> ;;; Copyright © 2016 John Darrington <jmd@gnu.org> -;;; Copyright © 2016, 2017 Marius Bakke <mbakke@fastmail.com> +;;; Copyright © 2016, 2017, 2018 Marius Bakke <mbakke@fastmail.com> ;;; Copyright © 2016 Rene Saavedra <rennes@openmailbox.org> ;;; Copyright © 2016 Carlos Sánchez de La Lama <csanchezdll@gmail.com> ;;; Copyright © 2016, 2017 ng0 <ng0@infotropique.org> @@ -2427,6 +2427,26 @@ you to access information from temperature, voltage, and fan speed sensors. It works with most newer systems.") (license license:gpl2+))) +(define-public iucode-tool + (package + (name "iucode-tool") + (version "2.2") + (source (origin + (method url-fetch) + (uri (string-append "https://gitlab.com/iucode-tool/releases" + "/raw/latest/iucode-tool_" version ".tar.xz")) + (sha256 + (base32 + "0w99k1aq1xw148ffk1xykqf60rdbphb1jknw98jcmadq4pwxl44q")))) + (build-system gnu-build-system) + (home-page "https://gitlab.com/iucode-tool/iucode-tool/wikis/home") + (synopsis "Manipulate Intel microcode bundles") + (description + "@command{iucode_tool} is a utility to work with microcode packages for +Intel processors. It can convert between formats, extract specific versions, +create a firmware image suitable for the Linux kernel, and more.") + (license license:gpl2+))) + (define-public i2c-tools (package (name "i2c-tools") |