ia64/xen-unstable
annotate extras/mini-os/domain_config @ 6602:fc12b08bf4fe
Mini-os fixes from Simon Kagstrom.
author | kaf24@firebug.cl.cam.ac.uk |
---|---|
date | Fri Sep 02 10:04:42 2005 +0000 (2005-09-02) |
parents | |
children | 291e816acbf4 |
rev | line source |
---|---|
kaf24@6602 | 1 # -*- mode: python; -*- |
kaf24@6602 | 2 #============================================================================ |
kaf24@6602 | 3 # Python configuration setup for 'xm create'. |
kaf24@6602 | 4 # This script sets the parameters used when a domain is created using 'xm create'. |
kaf24@6602 | 5 # You use a separate script for each domain you want to create, or |
kaf24@6602 | 6 # you can set the parameters for the domain on the xm command line. |
kaf24@6602 | 7 #============================================================================ |
kaf24@6602 | 8 |
kaf24@6602 | 9 #---------------------------------------------------------------------------- |
kaf24@6602 | 10 # Kernel image file. |
kaf24@6602 | 11 kernel = "mini-os.elf" |
kaf24@6602 | 12 |
kaf24@6602 | 13 # Initial memory allocation (in megabytes) for the new domain. |
kaf24@6602 | 14 memory = 32 |
kaf24@6602 | 15 |
kaf24@6602 | 16 # A name for your domain. All domains must have different names. |
kaf24@6602 | 17 name = "Mini-OS" |