Kconfig 857 B

1234567891011121314151617181920212223242526272829
  1. config LGUEST
  2. tristate "Linux hypervisor example code"
  3. depends on X86 && EXPERIMENTAL && !X86_PAE && FUTEX && !(X86_VISWS || X86_VOYAGER)
  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. If unsure, say N. If curious, say M. If masochistic, say Y.
  12. config LGUEST_GUEST
  13. bool
  14. help
  15. The guest needs code built-in, even if the host has lguest
  16. support as a module. The drivers are tiny, so we build them
  17. in too.
  18. config LGUEST_NET
  19. tristate
  20. default y
  21. depends on LGUEST_GUEST && NET
  22. config LGUEST_BLOCK
  23. tristate
  24. default y
  25. depends on LGUEST_GUEST && BLOCK