diff options
author | Mathieu Othacehe <m.othacehe@gmail.com> | 2017-12-01 14:09:38 +0100 |
---|---|---|
committer | Mathieu Othacehe <m.othacehe@gmail.com> | 2017-12-04 18:26:59 +0100 |
commit | 4307397b5e060b54d69b7d2818654504ebde9c1d (patch) | |
tree | 220be063b26be9ce8cfa4a94bc016cf3450f85d8 /gnu/system/vm.scm | |
parent | 39b27f4eae36d155faf466c59629afb5843030e6 (diff) | |
download | guix-4307397b5e060b54d69b7d2818654504ebde9c1d.tar guix-4307397b5e060b54d69b7d2818654504ebde9c1d.tar.gz |
bootloader: extlinux: Stop using dd binary.
* gnu/bootloader/extlinux.scm (dd): Remove it,
(install-extlinux): replace dd call by Guile I/O procedures.
* gnu/system/vm.scm (qemu-image): Add (ice-9 binary-ports) to used-modules
list to provide "get-bytevector-n" and "put-bytevector".
* guix/scripts/system.scm (bootloader-installer-derivation): Ditto.
Diffstat (limited to 'gnu/system/vm.scm')
-rw-r--r-- | gnu/system/vm.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm index b68cce3eb5..d754ac76f0 100644 --- a/gnu/system/vm.scm +++ b/gnu/system/vm.scm @@ -278,7 +278,8 @@ the image." #~(begin (use-modules (gnu build vm) (guix build utils) - (srfi srfi-26)) + (srfi srfi-26) + (ice-9 binary-ports)) (let ((inputs '#$(append (list qemu parted e2fsprogs dosfstools) |