mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-22 21:21:02 +07:00
c8846e1015
This driver is for a newer generation of 2x2 MediaTek 802.11n chipsets. MT7603E is a PCIe chip. MT7628 and MT7688 are MIPS SoC devices with built-in WLAN. MT7688 is limited to 1x1 This driver fully supports AP, station, mesh, ad-hoc and monitor mode. Signed-off-by: Felix Fietkau <nbd@nbd.name>
26 lines
731 B
Makefile
26 lines
731 B
Makefile
obj-$(CONFIG_MT76_CORE) += mt76.o
|
|
obj-$(CONFIG_MT76_USB) += mt76-usb.o
|
|
obj-$(CONFIG_MT76x02_LIB) += mt76x02-lib.o
|
|
obj-$(CONFIG_MT76x02_USB) += mt76x02-usb.o
|
|
|
|
mt76-y := \
|
|
mmio.o util.o trace.o dma.o mac80211.o debugfs.o eeprom.o \
|
|
tx.o agg-rx.o mcu.o
|
|
|
|
mt76-usb-y := usb.o usb_trace.o
|
|
|
|
CFLAGS_trace.o := -I$(src)
|
|
CFLAGS_usb_trace.o := -I$(src)
|
|
CFLAGS_mt76x02_trace.o := -I$(src)
|
|
|
|
mt76x02-lib-y := mt76x02_util.o mt76x02_mac.o mt76x02_mcu.o \
|
|
mt76x02_eeprom.o mt76x02_phy.o mt76x02_mmio.o \
|
|
mt76x02_txrx.o mt76x02_trace.o mt76x02_debugfs.o \
|
|
mt76x02_dfs.o
|
|
|
|
mt76x02-usb-y := mt76x02_usb_mcu.o mt76x02_usb_core.o
|
|
|
|
obj-$(CONFIG_MT76x0_COMMON) += mt76x0/
|
|
obj-$(CONFIG_MT76x2_COMMON) += mt76x2/
|
|
obj-$(CONFIG_MT7603E) += mt7603/
|