Kconfig 873 B

1234567891011121314151617181920212223242526272829
  1. #
  2. # Microsoft Azure network device configuration
  3. #
  4. config NET_VENDOR_MICROSOFT
  5. bool "Microsoft Network Devices"
  6. default y
  7. help
  8. If you have a network (Ethernet) device belonging to this class, say Y.
  9. Note that the answer to this question doesn't directly affect the
  10. kernel: saying N will just cause the configurator to skip the
  11. question about Microsoft network devices. If you say Y, you will be
  12. asked for your specific device in the following question.
  13. if NET_VENDOR_MICROSOFT
  14. config MICROSOFT_MANA
  15. tristate "Microsoft Azure Network Adapter (MANA) support"
  16. depends on PCI_MSI && X86_64
  17. depends on PCI_HYPERV
  18. help
  19. This driver supports Microsoft Azure Network Adapter (MANA).
  20. So far, the driver is only supported on X86_64.
  21. To compile this driver as a module, choose M here.
  22. The module will be called mana.
  23. endif #NET_VENDOR_MICROSOFT