diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-04-09 01:20:19 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-04-09 01:20:19 +0200 |
commit | 2e7b5cea8cc5e50e8c4832e96ce7b40b4f99906f (patch) | |
tree | 4d8274405a2b137de29679f42d3dea78afecfa6e /doc | |
parent | 1d6243cf70269acdaf32f1ad61beba241f130484 (diff) | |
download | guix-2e7b5cea8cc5e50e8c4832e96ce7b40b4f99906f.tar guix-2e7b5cea8cc5e50e8c4832e96ce7b40b4f99906f.tar.gz |
guix system: Add 'vm-image' action and '--image-size' option.
* guix/scripts/system.scm (%options): Add --image-size.
(%default-options): Add 'image-size'.
(guix-system)[parse-options]: Handle the 'vm-image' action.
Honor them.
(show-help): Update accordingly.
* doc/guix.texi (Invoking guix system): Add 'vm-image'.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 863fce8307..ebd1ff5416 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -2982,7 +2982,8 @@ guix system @var{options}@dots{} @var{action} @var{file} @var{file} must be the name of a file containing an @code{operating-system} declaration. @var{action} specifies how the -operating system is instantiate. Currently only one value is supported: +operating system is instantiate. Currently the following values are +supported: @table @code @item vm @@ -2991,6 +2992,11 @@ Build a virtual machine that contain the operating system declared in @var{file}, and return a script to run that virtual machine (VM). The VM shares its store with the host system. + +@item vm-image +Return a virtual machine image of the operating system declared in +@var{file} that stands alone. Use the @option{--image-size} option to +specify the size of the image. @end table @var{options} can contain any of the common build options provided by |