ia64/xen-unstable
annotate extras/mini-os/domain_config @ 7027:06d84bf87159
Merge latest xen-unstable into xen-ia64-unstable
author | djm@kirby.fc.hp.com |
---|---|
date | Thu Sep 22 11:42:01 2005 -0600 (2005-09-22) |
parents | 9af349b055e5 3233e7ecfa9f |
children | c176d2e45117 |
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" |