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 forgotten Kconfig file
[palacios.git] / palacios / src / devices / Kconfig
1 menu "Virtual Devices"
2
3 config APIC
4         bool "APIC"
5         default y
6         help 
7           Includes the Virtual APIC device
8
9
10 config DEBUG_APIC
11         bool "APIC Debugging"
12         default n
13         depends on APIC && DEBUG_ON 
14         help 
15           Enable debugging for the APIC
16
17
18 config BOCHS_DEBUG
19         bool "Bochs Debug Console Device"
20         default y
21         help 
22           Includes the Bochs Debug console device
23
24
25
26 config GENERIC
27         bool "Generic Device"
28         default y
29         help 
30           Includes the Virtual Generic device
31
32 config DEBUG_GENERIC
33         bool "Generic device Debugging"
34         default n
35         depends on GENERIC && DEBUG_ON 
36         help 
37           Enable debugging for Generic
38
39
40
41 config I440FX
42         bool "i440fx Northbridge"
43         depends on PCI
44         default y
45         help 
46           Includes the Virtual Northbridge
47
48
49 config IDE
50         bool "IDE"
51         default y
52         help 
53           Includes the Virtual IDE layer
54
55 config DEBUG_IDE
56         bool "IDE Debugging"
57         default n
58         depends on IDE && DEBUG_ON 
59         help 
60           Enable debugging for the IDE Layer
61
62
63 config IO_APIC
64         bool "IOAPIC"
65         depends on APIC
66         default y
67         help 
68           Includes the Virtual IO APIC
69
70 config DEBUG_IO_APIC
71         bool "IO APIC Debugging"
72         default n
73         depends on IO_APIC && DEBUG_ON 
74         help 
75           Enable debugging for the IO APIC
76
77
78
79
80 config KEYBOARD
81         bool "Keyboard"
82         default y
83         help 
84           Includes the Virtual standard PC Keyboard device
85
86 config DEBUG_KEYBOARD
87         bool "Keyboard Debugging"
88         default n
89         depends on KEYBOARD && DEBUG_ON 
90         help 
91           Enable debugging for the Keyboard
92
93
94 config LINUX_VIRTIO_BALLOON
95         bool "Linux Virtio Balloon Device"
96         default y
97         depends on PCI
98         help 
99           Includes the Linux virtio balloon device
100
101 config DEBUG_VIRTIO_BALLOON
102         bool "Linux Virtio Balloon Debugging"
103         default n
104         depends on LINUX_VIRTIO_BALLOON  && DEBUG_ON 
105         help 
106           Enable debugging for the Linux Virtio Balloon Device
107
108
109 config LINUX_VIRTIO_BLOCK
110         bool "Linux Virtio Block Device"
111         default y
112         depends on PCI
113         help 
114           Includes the Linux virtio block device
115
116 config DEBUG_VIRTIO_BLOCK
117         bool "Linux Virtio Block Debugging"
118         default n
119         depends on LINUX_VIRTIO_BLOCK  && DEBUG_ON 
120         help 
121           Enable debugging for the Linux Virtio Block Device
122
123 config LINUX_VIRTIO_SYM
124         bool "Linux Virtio Symbiotic Device"
125         default y
126         depends on PCI && SYMBIOTIC
127         help 
128           Includes the Linux virtio symbiotic device
129
130 config DEBUG_VIRTIO_SYM
131         bool "Linux Virtio Symbiotic Debugging"
132         default n
133         depends on LINUX_VIRTIO_SYM && DEBUG_ON 
134         help 
135           Enable debugging for the Linux Virtio Symbiotic Device
136
137
138
139 config NE2K
140         bool "NE2K"
141         default n
142         help
143           Includes the Virtual NE2K network card
144
145 config DEBUG_NE2k
146         bool "NE2K debugging"
147         depends on NE2k && DEBUG_ON
148         help 
149           Enable debugging for the NE2K
150
151
152 config NET_CD
153         bool "Networked CD backend"
154         default y
155         depends on SOCKET && (IDE || LINUX_VIRTIO_BLOCK)
156         help 
157           Includes the Network CD backend
158
159 config NET_HD
160         bool "Networked HD backend"
161         default y
162         depends on SOCKET && (IDE || LINUX_VIRTIO_BLOCK)
163         help 
164           Includes the Network HD backend
165
166
167 config NVRAM
168         bool "NVRAM"
169         default y
170         help
171           Includes the Virtual CMOS NVRAM Device
172
173 config DEBUG_NVRAM
174         bool "NVRAM debugging"
175         depends on NVRAM && DEBUG_ON
176         help 
177           Enable debugging for the NVRAM
178
179
180
181 config OS_DEBUG
182         bool "OS Debug Console Device"
183         default y
184         help 
185           Includes the OS Debug console device
186
187
188 config PIIX3
189         bool "PIIX3 Southbridge"
190         default y
191         help
192           Includes the Virtual Piix3 Southbridge
193
194
195 config PCI
196         bool "PCI"
197         default y
198         help
199           Includes the Virtual PCI Bus
200
201 config DEBUG_PCI
202         bool "PCI debugging"
203         depends on PCI && DEBUG_ON
204         help 
205           Enable debugging for the PCI  
206
207
208
209 config PIC
210         bool "8259A PIC"
211         default y
212         help
213           Includes the Virtual 8259a PIC Device
214
215 config DEBUG_PIC
216         bool "PIC debugging"
217         depends on PIC && DEBUG_ON
218         help 
219           Enable debugging for the PIC  
220
221
222 config PIT
223         bool "PIT"
224         default y
225         help
226           Includes the Virtual 8254 PIT Device
227
228 config DEBUG_PIT
229         bool "PIT debugging"
230         depends on PIT && DEBUG_ON
231         help 
232           Enable debugging for the PIT  
233
234
235
236
237 config RAM_CD
238         bool "RAM based CD backend"
239         default y
240         depends on IDE || LINUX_VIRTIO_BLOCK
241         help 
242           Includes the RAM based CD backend
243
244 config RAM_HD
245         bool "RAM based HD backend"
246         default y
247         depends on IDE || LINUX_VIRTIO_BLOCK
248         help 
249           Includes the RAM based HD backend
250
251
252
253
254 config SYM_SWAP
255         bool "Symbiotic Swap disk"
256         default y
257         depends on SYMBIOTIC && (LINUX_VIRTIO_BLOCK || IDE)
258         help 
259           Includes the symbiotic ram based swap disk
260
261 endmenu