summaryrefslogtreecommitdiff
path: root/gnu/system
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2015-07-24 01:17:19 +0200
committerLudovic Courtès <ludo@gnu.org>2015-07-24 01:19:57 +0200
commitec2406efc7abc07dc21a60d7a1c15bdafc8e233b (patch)
tree061461c0e27cb2aaa94027be301ad9e89791efa1 /gnu/system
parente9ba6357e31935aaf75c02afaf3806d77e00b1fb (diff)
downloadguix-patches-ec2406efc7abc07dc21a60d7a1c15bdafc8e233b.tar
guix-patches-ec2406efc7abc07dc21a60d7a1c15bdafc8e233b.tar.gz
vm: Use the 'umount' procedure instead of util-linux's 'umount' command.
* gnu/build/vm.scm (initialize-root-partition, initialize-hard-disk): Use the 'umount' procedure instead of invoking the 'umount' command. * gnu/system/vm.scm (qemu-image): Remove UTIL-LINUX from INPUTS.
Diffstat (limited to 'gnu/system')
-rw-r--r--gnu/system/vm.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm
index b293009127..eb27ebce3b 100644
--- a/gnu/system/vm.scm
+++ b/gnu/system/vm.scm
@@ -212,7 +212,7 @@ the image."
(guix build utils))
(let ((inputs
- '#$(append (list qemu parted grub e2fsprogs util-linux)
+ '#$(append (list qemu parted grub e2fsprogs)
(map canonical-package
(list sed grep coreutils findutils gawk))
(if register-closures? (list guix) '())))