]> git.ipfire.org Git - thirdparty/openwrt.git/commitdiff
kernel: remove expired i40evf drivers 19197/head
authorxiao bo <peterwillcn@gmail.com>
Sun, 22 Jun 2025 01:29:15 +0000 (09:29 +0800)
committerRobert Marko <robimarko@gmail.com>
Sun, 22 Jun 2025 07:46:45 +0000 (09:46 +0200)
In the development history of Intel's drivers, the i40evf driver was later
renamed the iavf driver. For example, some documents mention that
IntelĀ® Network Connections Software Version 24.0 renamed the i40evf
and ixlv drivers to iavf. In subsequent versions, the i40evf driver was
gradually removed, and its functions were taken over by the iavf driver.
In the Linux system, relevant configuration instructions also exist. For
instance, the User Guide for X722 Onboard Network Card states that the
i40evf driver module should be disabled, and the iavf driver should be
installed and used.

blamed commit: https://github.com/openwrt/openwrt/commit/5d81b28a829ac20fb60991e71ee7a7c53d14fd58

Signed-off-by: xiao bo <peterwillcn@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/19197
Signed-off-by: Robert Marko <robimarko@gmail.com>
package/kernel/linux/modules/netdevices.mk

index e6f37de9917ace03287d4de9238a20a05df02448..3a3e21116e94a6a9e4b5568dcdf350e8f4263e96 100644 (file)
@@ -1253,11 +1253,9 @@ define KernelPackage/iavf
   TITLE:=Intel(R) Ethernet Adaptive Virtual Function support
   DEPENDS:=@PCI_SUPPORT +!LINUX_6_6:kmod-libie
   KCONFIG:= \
-       CONFIG_I40EVF \
        CONFIG_IAVF
   FILES:= \
        $(LINUX_DIR)/drivers/net/ethernet/intel/iavf/iavf.ko
-  AUTOLOAD:=$(call AutoProbe,i40evf iavf)
   AUTOLOAD:=$(call AutoProbe,iavf)
 endef