mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: vm: Remove unused 'qemu-image' argument.
* gnu/system/vm.scm (qemu-image): Remove 'boot-expression' parameter, superseded by 'linux-arguments'.
This commit is contained in:
parent
1b89a66e1b
commit
002e5ba887
1 changed files with 2 additions and 7 deletions
|
@ -184,18 +184,13 @@ (define* (qemu-image store #:key
|
|||
(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))
|
||||
|
|
Loading…
Reference in a new issue