Skip to content

Commit 5169b25

Browse files
committed
deepin: net: wangxun: ngbe: add support for wangxun 1G
wangxun inclusion category: feature this driver is supported for wangxun WX1860 chips, and supports TSO, tx checksum, rx checksum, RSS, flow director, vlan insert, vlan strip, vlan filter offload. Signed-off-by: linyuexie1 <[email protected]>
1 parent 8f40a9b commit 5169b25

24 files changed

+29305
-919
lines changed

drivers/net/ethernet/wangxun/ngbe/Makefile

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,24 @@
66

77
obj-$(CONFIG_NGBE) += ngbe.o
88

9-
ngbe-objs := ngbe_main.o ngbe_hw.o ngbe_mdio.o ngbe_ethtool.o
9+
ngbe-objs := ngbe_main.o \
10+
ngbe_ethtool.o \
11+
ngbe_lib.o \
12+
ngbe_mbx.o \
13+
ngbe_sriov.o \
14+
ngbe_param.o \
15+
ngbe_phy.o \
16+
ngbe_hw.o \
17+
ngbe_pcierr.o \
18+
ngbe_xsk.o \
19+
ngbe_ptp.o \
20+
ngbe_sysfs.o
21+
22+
ngbe-${CONFIG_DEBUG_FS} += ngbe_debugfs.o
23+
24+
KERNELDIR ?= /lib/modules/$(shell uname -r)/build
25+
all:
26+
$(MAKE) -C $(KERNELDIR) M=$(PWD) modules
27+
clean:
28+
$(MAKE) -C $(KERNELDIR) M=$(PWD) clean
29+
rm -rf *.${MANSECTION}.gz *.ko

0 commit comments

Comments
 (0)