Rusty Russell | 709e892 | 2007-07-19 01:49:27 -0700 | [diff] [blame] | 1 | config LGUEST |
| 2 | tristate "Linux hypervisor example code" |
Rusty Russell | d3d1c4b | 2007-10-22 10:55:21 +1000 | [diff] [blame] | 3 | depends on X86 && EXPERIMENTAL && !X86_PAE && FUTEX && !(X86_VISWS || X86_VOYAGER) |
Rusty Russell | 709e892 | 2007-07-19 01:49:27 -0700 | [diff] [blame] | 4 | select HVC_DRIVER |
| 5 | ---help--- |
| 6 | This is a very simple module which allows you to run |
| 7 | multiple instances of the same Linux kernel, using the |
| 8 | "lguest" command found in the Documentation/lguest directory. |
| 9 | Note that "lguest" is pronounced to rhyme with "fell quest", |
| 10 | not "rustyvisor". See Documentation/lguest/lguest.txt. |
| 11 | |
| 12 | If unsure, say N. If curious, say M. If masochistic, say Y. |
| 13 | |
| 14 | config LGUEST_GUEST |
| 15 | bool |
| 16 | help |
| 17 | The guest needs code built-in, even if the host has lguest |
| 18 | support as a module. The drivers are tiny, so we build them |
| 19 | in too. |
Rusty Russell | 05ff097 | 2007-07-30 10:25:22 +1000 | [diff] [blame] | 20 | |
| 21 | config LGUEST_NET |
| 22 | tristate |
Rusty Russell | cc1ff43 | 2007-08-06 10:48:18 +1000 | [diff] [blame] | 23 | default y |
Rusty Russell | 05ff097 | 2007-07-30 10:25:22 +1000 | [diff] [blame] | 24 | depends on LGUEST_GUEST && NET |
| 25 | |
| 26 | config LGUEST_BLOCK |
| 27 | tristate |
Rusty Russell | cc1ff43 | 2007-08-06 10:48:18 +1000 | [diff] [blame] | 28 | default y |
Rusty Russell | 05ff097 | 2007-07-30 10:25:22 +1000 | [diff] [blame] | 29 | depends on LGUEST_GUEST && BLOCK |