diff options
| author | Ed Maste <emaste@FreeBSD.org> | 2025-11-13 19:05:38 +0000 |
|---|---|---|
| committer | Ed Maste <emaste@FreeBSD.org> | 2025-12-18 19:06:24 +0000 |
| commit | 75177aebf0397af36b1f28f6b6e64207ec3d8188 (patch) | |
| tree | e6dde97f3ace9ac733ec7bf26f6fe384912da5dc | |
| parent | f74173b5da3df22ec49c3bf6e8d10bcffdd1f4d3 (diff) | |
aq(4): Add build infrastructure
Reviewed by: adrian
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D53839
| -rw-r--r-- | sys/conf/files | 11 | ||||
| -rw-r--r-- | sys/modules/Makefile | 1 | ||||
| -rw-r--r-- | sys/modules/aq/Makefile | 12 |
3 files changed, 24 insertions, 0 deletions
diff --git a/sys/conf/files b/sys/conf/files index aa0d05df45c7..d41e3ccc23be 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -844,6 +844,17 @@ dev/alpm/alpm.c optional alpm pci dev/amdpm/amdpm.c optional amdpm pci | nfpm pci dev/amdsmb/amdsmb.c optional amdsmb pci # +dev/aq/aq_main.c optional aq +dev/aq/aq_media.c optional aq +dev/aq/aq_irq.c optional aq +dev/aq/aq_ring.c optional aq +dev/aq/aq_hw.c optional aq +dev/aq/aq_hw_llh.c optional aq +dev/aq/aq_fw.c optional aq +dev/aq/aq_fw1x.c optional aq +dev/aq/aq_fw2x.c optional aq +dev/aq/aq_dbg.c optional aq +# dev/ata/ata_if.m optional ata | atacore dev/ata/ata-all.c optional ata | atacore dev/ata/ata-dma.c optional ata | atacore diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 88ebe601ca0e..731a959976c3 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -44,6 +44,7 @@ SUBDIR= \ ${_armv8crypto} \ ${_armv8_rng} \ ${_asmc} \ + aq \ ata \ ath \ ath_dfs \ diff --git a/sys/modules/aq/Makefile b/sys/modules/aq/Makefile new file mode 100644 index 000000000000..603bb6770ff4 --- /dev/null +++ b/sys/modules/aq/Makefile @@ -0,0 +1,12 @@ +.PATH: ${SRCTOP}/sys/dev/aq + +KMOD = if_aq +SRCS = aq_main.c aq_media.c aq_irq.c +SRCS += aq_ring.c aq_hw.c aq_hw_llh.c +SRCS += aq_fw.c aq_fw1x.c aq_fw2x.c aq_dbg.c +SRCS += device_if.h bus_if.h pci_if.h +SRCS += ifdi_if.h opt_inet.h opt_inet6.h opt_platform.h opt_rss.h +SRCS += miibus_if.h + +.include <bsd.kmod.mk> + |
