2021-04-16 13:11:59 -07:00
|
|
|
#
|
|
|
|
# Microsoft Azure network device configuration
|
|
|
|
#
|
|
|
|
|
|
|
|
config NET_VENDOR_MICROSOFT
|
|
|
|
bool "Microsoft Network Devices"
|
|
|
|
default y
|
|
|
|
help
|
|
|
|
If you have a network (Ethernet) device belonging to this class, say Y.
|
|
|
|
|
|
|
|
Note that the answer to this question doesn't directly affect the
|
|
|
|
kernel: saying N will just cause the configurator to skip the
|
|
|
|
question about Microsoft network devices. If you say Y, you will be
|
|
|
|
asked for your specific device in the following question.
|
|
|
|
|
|
|
|
if NET_VENDOR_MICROSOFT
|
|
|
|
|
|
|
|
config MICROSOFT_MANA
|
|
|
|
tristate "Microsoft Azure Network Adapter (MANA) support"
|
2024-05-13 13:29:01 -07:00
|
|
|
depends on PCI_MSI
|
2024-06-17 13:17:26 -07:00
|
|
|
depends on X86_64 || (ARM64 && !CPU_BIG_ENDIAN)
|
2021-04-22 15:34:34 +02:00
|
|
|
depends on PCI_HYPERV
|
2022-11-03 12:16:19 -07:00
|
|
|
select AUXILIARY_BUS
|
2023-12-15 12:33:53 -08:00
|
|
|
select PAGE_POOL
|
2025-06-25 04:35:55 -07:00
|
|
|
select NET_SHAPER
|
2021-04-16 13:11:59 -07:00
|
|
|
help
|
|
|
|
This driver supports Microsoft Azure Network Adapter (MANA).
|
|
|
|
So far, the driver is only supported on X86_64.
|
|
|
|
|
|
|
|
To compile this driver as a module, choose M here.
|
|
|
|
The module will be called mana.
|
|
|
|
|
|
|
|
endif #NET_VENDOR_MICROSOFT
|