Kconfig 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Virtualization support drivers
  4. #
  5. menuconfig VIRT_DRIVERS
  6. bool "Virtualization drivers"
  7. help
  8. Say Y here to get to see options for device drivers that support
  9. virtualization environments.
  10. If you say N, all options in this submenu will be skipped and disabled.
  11. if VIRT_DRIVERS
  12. config VMGENID
  13. tristate "Virtual Machine Generation ID driver"
  14. default y
  15. help
  16. Say Y here to use the hypervisor-provided Virtual Machine Generation ID
  17. to reseed the RNG when the VM is cloned. This is highly recommended if
  18. you intend to do any rollback / cloning / snapshotting of VMs.
  19. Prefer Y to M so that this protection is activated very early.
  20. config FSL_HV_MANAGER
  21. tristate "Freescale hypervisor management driver"
  22. depends on FSL_SOC
  23. select EPAPR_PARAVIRT
  24. help
  25. The Freescale hypervisor management driver provides several services
  26. to drivers and applications related to the Freescale hypervisor:
  27. 1) An ioctl interface for querying and managing partitions.
  28. 2) A file interface to reading incoming doorbells.
  29. 3) An interrupt handler for shutting down the partition upon
  30. receiving the shutdown doorbell from a manager partition.
  31. 4) A kernel interface for receiving callbacks when a managed
  32. partition shuts down.
  33. source "drivers/virt/vboxguest/Kconfig"
  34. source "drivers/virt/nitro_enclaves/Kconfig"
  35. source "drivers/virt/acrn/Kconfig"
  36. source "drivers/virt/coco/Kconfig"
  37. endif