mirror of
https://github.com/opnsense/src.git
synced 2026-03-01 21:01:24 -05:00
* Uses the IWM_FW_PAGING_BLOCK_CMD firmware command to tell the firmware what memory ranges to use for paging. Obtained from: dragonflybsd.git 8a5b199964f8e7bdb00039f0b48817a01b402f18
17 lines
448 B
Makefile
17 lines
448 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/iwm
|
|
|
|
KMOD= if_iwm
|
|
# Main driver
|
|
SRCS= if_iwm.c if_iwm_binding.c if_iwm_util.c if_iwm_phy_db.c
|
|
SRCS+= if_iwm_mac_ctxt.c if_iwm_phy_ctxt.c if_iwm_time_event.c
|
|
SRCS+= if_iwm_power.c if_iwm_scan.c if_iwm_led.c if_iwm_notif_wait.c
|
|
SRCS+= if_iwm_7000.c if_iwm_8000.c if_iwm_fw.c
|
|
# bus layer
|
|
SRCS+= if_iwm_pcie_trans.c
|
|
SRCS+= device_if.h bus_if.h pci_if.h opt_wlan.h
|
|
|
|
CFLAGS+= -DIWM_DEBUG
|
|
|
|
.include <bsd.kmod.mk>
|