summaryrefslogtreecommitdiff
path: root/gnu/system
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2013-09-05 22:14:21 +0200
committerLudovic Courtès <ludo@gnu.org>2013-09-05 22:14:21 +0200
commit002e5ba887837fd353c38eca64596859570ad820 (patch)
tree4f62e3357f8274b2d2d797b5cf8792438d3dbb93 /gnu/system
parent1b89a66e1badbb8a597db0529e468f9950119a30 (diff)
downloadguix-patches-002e5ba887837fd353c38eca64596859570ad820.tar
guix-patches-002e5ba887837fd353c38eca64596859570ad820.tar.gz
gnu: vm: Remove unused 'qemu-image' argument.
* gnu/system/vm.scm (qemu-image): Remove 'boot-expression' parameter, superseded by 'linux-arguments'.
Diffstat (limited to 'gnu/system')
-rw-r--r--gnu/system/vm.scm9
1 files changed, 2 insertions, 7 deletions
diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm
index 86430ea168..952cbe45ba 100644
--- a/gnu/system/vm.scm
+++ b/gnu/system/vm.scm
@@ -184,18 +184,13 @@ made available under the /xchg CIFS share."
(linux-arguments '())
(initrd qemu-initrd)
(inputs '())
- (inputs-to-copy '())
- (boot-expression #f))
+ (inputs-to-copy '()))
"Return a bootable, stand-alone QEMU image. The returned image is a full
disk image, with a GRUB installation whose default entry boots LINUX, with the
arguments LINUX-ARGUMENTS, and using INITRD as its initial RAM disk.
INPUTS-TO-COPY is a list of inputs (as for packages) whose closure is copied
-into the image being built.
-
-When BOOT-EXPRESSION is true, it is an expression to evaluate when the basic
-initialization is done. A typical example is `(execl ...)' to launch the init
-process."
+into the image being built."
(define input->name+derivation
(match-lambda
((name (? package? package))