Kconfig 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #
  2. # KVM configuration
  3. #
  4. menuconfig VIRTUALIZATION
  5. bool "Virtualization"
  6. ---help---
  7. Say Y here to get to see options for using your Linux host to run
  8. other operating systems inside virtual machines (guests).
  9. This option alone does not add any kernel code.
  10. If you say N, all options in this submenu will be skipped and
  11. disabled.
  12. if VIRTUALIZATION
  13. config KVM
  14. bool "Kernel-based Virtual Machine (KVM) support"
  15. depends on 44x && EXPERIMENTAL
  16. select PREEMPT_NOTIFIERS
  17. select ANON_INODES
  18. # We can only run on Book E hosts so far
  19. select KVM_BOOKE_HOST
  20. ---help---
  21. Support hosting virtualized guest machines. You will also
  22. need to select one or more of the processor modules below.
  23. This module provides access to the hardware capabilities through
  24. a character device node named /dev/kvm.
  25. If unsure, say N.
  26. config KVM_BOOKE_HOST
  27. bool "KVM host support for Book E PowerPC processors"
  28. depends on KVM && 44x
  29. ---help---
  30. Provides host support for KVM on Book E PowerPC processors. Currently
  31. this works on 440 processors only.
  32. source drivers/virtio/Kconfig
  33. endif # VIRTUALIZATION