modules: Add kmod-ixgbevf kernel module for Intel(R) 10GbE Virtual Ethernet support
These adapters support SR-IOV. Thus the host can assign Virtual Functions (VFs) to different VMs by the PCI-E Passthrough (e.g. VFIO for KVM), to gain different advantages (performance, VF to VF communications, host kernel offload, etc.). Signed-off-by: Chris Blakely <cpblakely@gmail.com>
This commit is contained in:
parent
c382237ac3
commit
6fe9090605
1 changed files with 19 additions and 0 deletions
|
@ -559,6 +559,25 @@ endef
|
|||
$(eval $(call KernelPackage,ixgbe))
|
||||
|
||||
|
||||
define KernelPackage/ixgbevf
|
||||
SUBMENU:=$(NETWORK_DEVICES_MENU)
|
||||
TITLE:=Intel(R) 82599 Virtual Function Ethernet support
|
||||
DEPENDS:=@PCI_SUPPORT +kmod-ixgbe
|
||||
KCONFIG:=CONFIG_IXGBEVF \
|
||||
CONFIG_IXGBE_VXLAN=n \
|
||||
CONFIG_IXGBE_HWMON=n \
|
||||
CONFIG_IXGBE_DCA=n
|
||||
FILES:=$(LINUX_DIR)/drivers/net/ethernet/intel/ixgbevf/ixgbevf.ko
|
||||
AUTOLOAD:=$(call AutoLoad,35,ixgbevf)
|
||||
endef
|
||||
|
||||
define KernelPackage/ixgbevf/description
|
||||
Kernel modules for Intel(R) 82599 Virtual Function Ethernet adapters.
|
||||
endef
|
||||
|
||||
$(eval $(call KernelPackage,ixgbevf))
|
||||
|
||||
|
||||
define KernelPackage/b44
|
||||
TITLE:=Broadcom 44xx driver
|
||||
KCONFIG:=CONFIG_B44
|
||||
|
|
Loading…
Reference in a new issue