Kconfig 691 B

1234567891011121314151617181920212223242526272829
  1. # SPDX-License-Identifier: GPL-2.0
  2. menu "Microsoft Hyper-V guest support"
  3. config HYPERV
  4. tristate "Microsoft Hyper-V client drivers"
  5. depends on X86 && ACPI && X86_LOCAL_APIC && HYPERVISOR_GUEST
  6. select PARAVIRT
  7. select X86_HV_CALLBACK_VECTOR
  8. help
  9. Select this option to run Linux as a Hyper-V client operating
  10. system.
  11. config HYPERV_TIMER
  12. def_bool HYPERV
  13. config HYPERV_UTILS
  14. tristate "Microsoft Hyper-V Utilities driver"
  15. depends on HYPERV && CONNECTOR && NLS
  16. help
  17. Select this option to enable the Hyper-V Utilities.
  18. config HYPERV_BALLOON
  19. tristate "Microsoft Hyper-V Balloon driver"
  20. depends on HYPERV
  21. help
  22. Select this option to enable Hyper-V Balloon driver.
  23. endmenu