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.


Removed spurious time configuration options
[palacios.git] / palacios / src / extensions / Kconfig
1 menu "Extensions"
2
3 config EXT_MTRRS
4         bool "Support virtualized MTTRs"
5         default n
6         help
7            Provides a virtualized set of MTTR registers
8
9 config EXT_MACH_CHECK
10         bool "Support machine-check functionality"
11         default n
12         help 
13            Provides a virtualized machine-check architecture
14
15 config DEGUB_EXT_MACH_CHECK
16     bool "Debug machine-check functionality"
17     default n
18     depends on EXT_MACH_CHECK
19     help
20         Enable virtual machine-check architecture debugging
21
22 config EXT_INSPECTOR
23         bool "VM Inspector"
24         default n
25         help
26           Provides the inspection extension
27
28 config EXT_SW_INTERRUPTS
29     bool "Enable interception and hooking of software interrupts"
30     default n
31     help
32       This feature will cause the VMM to intercept the execution
33       of software interrupts (i.e. the INTn instruction) and enable
34       any INT vector to be hooked. Extension name is "swintr_intercept"
35
36 config DEBUG_EXT_SW_INTERRUPTS
37     bool "Enable debugging of software interrupt interception code"
38     depends on EXT_SW_INTERRUPTS
39     default n
40     help
41       This will enable useful debugging printouts for software
42       intercept code
43
44 config EXT_SWINTR_PASSTHROUGH
45     bool "Hook all unhandled sofware interrupts for passthrough"
46     depends on EXT_SW_INTERRUPTS
47     default n
48     help
49       If enabled, this will cause all software interrupts 
50       (INT instruction vectors) to be hooked for passthrough.
51       May reduce performance but useful for debugging.
52
53 config EXT_SYSCALL_HIJACK
54     bool "Enable System Call Hijacking"
55     depends on EXT_SW_INTERRUPTS
56     default n
57     help
58       Enable the VMM to hijack system calls executed by the guest.
59       If enabled, the VMM will hook execution of INT 80
60
61 config DEBUG_EXT_SYSCALL_HIJACK
62     bool "Enable Syscall Hijack Debug in Palacios"
63     depends on EXT_SYSCALL_HIJACK
64     default n
65     help 
66       Enable Debugging printouts for syscall hijacking code
67       in Palacios
68
69 config EXT_SYSCALL_PASSTHROUGH
70     bool "Hook all unhandled system calls for passthrough"
71     depends on EXT_SYSCALL_HIJACK
72     default n
73     help
74       If enabled, this option will cause all system calls
75       that are not explicitly hooked to be hooked for 
76       passthrough. This is useful for debugging.
77
78 endmenu