Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


added user space configuration build system
[palacios.git] / utils / guest_creator / test.xml
1
2 <vm class="PC">
3        <memory>1024</memory>
4        <telemetry>enable</telemetry>
5        <paging>nested</paging>
6        <schedule_hz>100</schedule_hz>
7
8        <memmap>
9                <region>
10                        <start>0xa0000</start>
11                        <end>0xc0000</end>
12                        <host_addr>0xa0000</host_addr>
13                </region>
14        </memmap>
15
16        <files>
17                <file id="boot-cd" filename="/home/jarusl/image.iso" />
18                <!--<file id="harddisk" filename="firefox.img" />-->
19        </files>
20
21        <devices>
22                <device id="8259A" />
23                <device id="KEYBOARD" />
24                <device id="8254_PIT" />
25                <device id="BOCHS_DEBUG" />
26                <device id="OS_DEBUG" />
27                <device id="LAPIC" />
28                <device id="IOAPIC">
29                        <irq_bus>LAPIC</irq_bus>
30                </device>
31
32                <device id="CGA_VIDEO" />
33                <device id="TELNET_CONSOLE">
34                        <frontend id="CGA_VIDEO" />
35                        <port>19997</port>
36                </device>
37
38                <device id="PCI" />
39
40                <device id="i440FX">
41                        <bus>PCI</bus>
42                </device>
43
44                <device id="PIIX3">
45                        <bus>PCI</bus>
46                </device>
47
48                <device id="LNX_VIRTIO_SYM">
49                        <bus>PCI</bus>
50                </device>
51
52                <device id="LNX_VIRTIO_BLK">
53                        <bus>PCI</bus>
54                </device>
55
56                <device id="LNX_VIRTIO_BALLOON">
57                        <bus>PCI</bus>
58                </device>
59
60                <device id="SYM_SWAP">
61                        <frontend id="LNX_VIRTIO_BLK" />
62                </device>
63
64                <device id="IDE">
65                        <bus>PCI</bus>
66                        <controller>PIIX3</controller>
67                </device>
68
69                <device id="PCI_PASSTHROUGH">
70                        <bus>PCI</bus>
71                        <name>E1000</name>
72                        <vendor_id>0x8086</vendor>
73                        <device_id>0x100e</device_id>
74                </device>
75
76                <device id="PCI_PASSTHROUGH">
77                        <bus>PCI</bus>
78                        <name>E1000</name>
79                        <vendor_id>0x8086</vendor>
80                        <device_id>0x107c</device_id>
81                </device>
82
83                <device id="RAMDISK">
84                        <file>harddisk</file>
85                        <frontend id="LNX_VIRTIO_BLK" />
86                </device>
87
88
89                <device id="RAMDISK">
90                        <file>boot-cd</file>
91                        <frontend id="IDE">
92                           <bus>0</bus>
93                           <channel>0</channel>
94                        </frontend>
95                </device>
96
97                <device id="NVRAM">
98                        <storage>IDE</storage>
99                </device>
100
101                <device id="GENERIC">
102                        <ports>
103                                <op>PRINT_AND_IGNORE</op>
104                                <start>0x00</start>
105                                <end>0x07</end>
106                        </ports>
107                        <ports>
108                                <op>PRINT_AND_IGNORE</op>
109                                <start>0xc0</start>
110                                </end>0xc7</end>
111                        </ports>
112                </device>
113        </devices>
114
115
116 </vm>
117
118