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.


897d3688c5adf899a2c01098c0ba162196324ea7
[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 DEBUG_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_VMWARE
29         bool "VMWare Persona"
30         default n
31         help
32           Provides a VMWare persona to allow TSC calibration
33
34 config EXT_SCHED_EDF
35         bool "EDF Real-time Scheduler"
36         default n
37         help
38           Provides a full real-time EDF scheduler for VM cores
39
40 config DEBUG_EXT_SCHED_EDF
41         bool "Debugging for EDF Real-time Scheduler"
42         default n
43         depends on DEBUG_ON && EXT_SCHED_EDF
44
45 config EXT_CPU_MAPPER_EDF
46         bool "CPU Mapper for EDF Scheduler"
47         default n
48         help
49           Provides an CPU Mapper for EDF scheduler
50
51 config DEBUG_EXT_CPU_MAPPER_EDF
52         bool "Debugging for EDF CPU Mapper"
53         default n
54         depends on DEBUG_ON && EXT_CPU_MAPPER_EDF
55
56 config TM_FUNC
57         bool "Enable Intel RTM Emulation Support"
58         default n
59         help
60           Enable Palacios to emulate Intel's hardware
61           transactional memory extensions. This is the
62           Restricted Transactional Memory (RTM) featureset,
63           part of Intel's TSX extensions.
64
65 config DEBUG_TM_FUNC
66     bool "Enable RTM debugging output"
67     depends on TM_FUNC
68     default n
69     help
70         Enable Transactional Memory debugging output
71
72 endmenu