diff options
author | Manolis Ragkousis <manolis837@gmail.com> | 2014-09-29 18:52:57 +0300 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-09-30 13:38:01 +0200 |
commit | eff5f452b0499036276e119980fd5d30e2832b38 (patch) | |
tree | f0384a034cedbbb6054628bf14bd77b162010e98 /gnu/packages/admin.scm | |
parent | 6d7328b2f19d2a13d18e34cc875f6c8b5218ac1d (diff) | |
download | guix-eff5f452b0499036276e119980fd5d30e2832b38.tar guix-eff5f452b0499036276e119980fd5d30e2832b38.tar.gz |
gnu: Move flashrom and avrdude to (gnu packages flashing-tools).
* gnu/packages/admin.scm (flashrom): Move this and...
* gnu/packages/avrdude.scm (avrdude): ... this to...
* gnu/packages/flashing-tools.scm: ... this. New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Adjust accordingly.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/admin.scm')
-rw-r--r-- | gnu/packages/admin.scm | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index f6ff32c8a2..a5b84af61a 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -794,50 +794,6 @@ status for the CPU sockets, expansion slots (e.g. AGP, PCI, ISA) and memory module slots, and the list of I/O ports (e.g. serial, parallel, USB).") (license gpl2+))) -(define-public flashrom - (package - (name "flashrom") - (version "0.9.7") - (source (origin - (method url-fetch) - (uri (string-append - "http://download.flashrom.org/releases/flashrom-" - version ".tar.bz2")) - (sha256 - (base32 - "1s9pc4yls2s1gcg2ar4q75nym2z5v6lxq36bl6lq26br00nj2mas")) - (patches (list (search-patch "flashrom-use-libftdi1.patch"))))) - (build-system gnu-build-system) - (inputs `(("dmidecode" ,dmidecode) - ("pciutils" ,pciutils) - ("libusb" ,libusb) - ("libftdi" ,libftdi))) - (native-inputs `(("pkg-config" ,pkg-config))) - (arguments - '(#:make-flags (list "CC=gcc" (string-append "PREFIX=" %output)) - #:tests? #f ; no 'check' target - #:phases - (alist-delete - 'configure - (alist-cons-before - 'build 'patch-exec-paths - (lambda* (#:key inputs #:allow-other-keys) - (substitute* "dmi.c" - (("\"dmidecode\"") - (format #f "~S" - (string-append (assoc-ref inputs "dmidecode") - "/sbin/dmidecode"))))) - %standard-phases)))) - (home-page "http://flashrom.org/") - (synopsis "Identify, read, write, erase, and verify ROM/flash chips") - (description - "flashrom is a utility for identifying, reading, writing, -verifying and erasing flash chips. It is designed to flash -BIOS/EFI/coreboot/firmware/optionROM images on mainboards, -network/graphics/storage controller cards, and various other -programmer devices.") - (license gpl2))) - (define-public acpica (package (name "acpica") |