Kconfig 819 B

123456789101112131415161718192021222324252627282930313233
  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 ACPI && ((X86 && X86_LOCAL_APIC && HYPERVISOR_GUEST) \
  6. || (ARM64 && !CPU_BIG_ENDIAN))
  7. select PARAVIRT
  8. select X86_HV_CALLBACK_VECTOR if X86
  9. select VMAP_PFN
  10. help
  11. Select this option to run Linux as a Hyper-V client operating
  12. system.
  13. config HYPERV_TIMER
  14. def_bool HYPERV && X86
  15. config HYPERV_UTILS
  16. tristate "Microsoft Hyper-V Utilities driver"
  17. depends on HYPERV && CONNECTOR && NLS
  18. depends on PTP_1588_CLOCK_OPTIONAL
  19. help
  20. Select this option to enable the Hyper-V Utilities.
  21. config HYPERV_BALLOON
  22. tristate "Microsoft Hyper-V Balloon driver"
  23. depends on HYPERV
  24. select PAGE_REPORTING
  25. help
  26. Select this option to enable Hyper-V Balloon driver.
  27. endmenu