mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-06 18:45:18 +07:00
![David Kilroy](/assets/img/avatar_default.png)
This driver uses the core orinoco modules for the bulk of the functionality. The low level hermes routines (for local bus cards) are replaced, the driver supplies its own ndo_xmit_start function, and locking is done with the _bh variant. Some recent functionality is not available to the USB cards yet (firmware loading and WPA). Out-of-tree driver originally written by Manuel Estrada Sainz. Thanks to Mark Davis for supplying hardware to test the updates. Signed-off-by: David Kilroy <kilroyd@googlemail.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
18 lines
589 B
Makefile
18 lines
589 B
Makefile
#
|
|
# Makefile for the orinoco wireless device drivers.
|
|
#
|
|
orinoco-objs := main.o fw.o hw.o mic.o scan.o wext.o hermes_dld.o hermes.o cfg.o
|
|
|
|
obj-$(CONFIG_HERMES) += orinoco.o
|
|
obj-$(CONFIG_PCMCIA_HERMES) += orinoco_cs.o
|
|
obj-$(CONFIG_APPLE_AIRPORT) += airport.o
|
|
obj-$(CONFIG_PLX_HERMES) += orinoco_plx.o
|
|
obj-$(CONFIG_PCI_HERMES) += orinoco_pci.o
|
|
obj-$(CONFIG_TMD_HERMES) += orinoco_tmd.o
|
|
obj-$(CONFIG_NORTEL_HERMES) += orinoco_nortel.o
|
|
obj-$(CONFIG_PCMCIA_SPECTRUM) += spectrum_cs.o
|
|
obj-$(CONFIG_ORINOCO_USB) += orinoco_usb.o
|
|
|
|
# Orinoco should be endian clean.
|
|
ccflags-y += -D__CHECK_ENDIAN__
|