ia64/xen-unstable
annotate extras/mini-os/domain_config @ 13096:ad886b6bdfd6
[IA64] Update sn_sal.h to 2.6.19
Signed-off-by: Alex Williamson <alex.williamson@hp.com>
Signed-off-by: Alex Williamson <alex.williamson@hp.com>
author | awilliam@xenbuild2.aw |
---|---|
date | Wed Dec 13 12:23:53 2006 -0700 (2006-12-13) |
parents | c176d2e45117 |
children | dcab07f0776d |
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" |
kaf24@9208 | 18 |
kaf24@9208 | 19 on_crash = 'destroy' |