From: Ian Campbell Date: Tue, 31 Jan 2012 16:34:39 +0000 (+0000) Subject: docs: document /etc/xen/xl.conf X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=6116cf8aef8c7f9365abb387b9f3949a133cf387;p=xen.git docs: document /etc/xen/xl.conf Signed-off-by: Ian Campbell Acked-by: Ian Jackson Committed-by: Ian Jackson --- diff --git a/docs/man/xl.conf.pod.5 b/docs/man/xl.conf.pod.5 new file mode 100644 index 0000000000..8837eb11ee --- /dev/null +++ b/docs/man/xl.conf.pod.5 @@ -0,0 +1,93 @@ +=head1 NAME + +/etc/xen/xl.conf - XL Global/Host Configuration + +=head1 DESCRIPTION + +The F file allows configuration of hostwide C toolstack +options. + +For details of per-domain configuration options please see +L. + +=head1 SYNTAX + +The config file consists of a series of C pairs. + +A value C is one of: + +=over 4 + +=item B<"STRING"> + +A string, surrounded by either single or double quotes. + +=item B + +A number, in either decimal, octal (using a C<0> prefix) or +hexadecimal (using an C<0x> prefix). + +=item B + +A C interpreted as C (C<0>) or C (any other +value). + +=item B<[ VALUE, VALUE, ... ]> + +A list of C of the above types. Lists are homogeneous and are +not nested. + +=back + +The semantics of each C defines which form of C is required. + +=head1 OPTIONS + +=over 4 + +=item B + +If enabled then C will not attempt to reduce the amount of memory +assigned to domain 0 in order to create free memory when starting a +new domain. You should set this if you use the C hypervisor +command line to reduce the amount of memory given to domain 0 by +default. + +Default: C<0> + +=item B + +Sets the path to the lock file used by xl to serialise certain +operations (primarily domain creation). + +Default: C + +=item B + +Configures the default hotplug script used by virtual network devices. + +Default: C + +=item B + +Configures the default output format used by xl when printing "machine +readable" information. The default is to use the C +L syntax. However for compatibility with the +previous C toolstack this can be configured to use the old C +(S-Expression-like) syntax instead. + +Default: C + +=back + +=head1 SEE ALSO + +=over 4 + +=item L + +=item L + +=item http://www.json.org/ + +=back