git: 75177aebf039 - main - aq(4): Add build infrastructure
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 18 Dec 2025 19:07:33 UTC
The branch main has been updated by emaste:
URL: https://cgit.FreeBSD.org/src/commit/?id=75177aebf0397af36b1f28f6b6e64207ec3d8188
commit 75177aebf0397af36b1f28f6b6e64207ec3d8188
Author: Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2025-11-13 19:05:38 +0000
Commit: Ed Maste <emaste@FreeBSD.org>
CommitDate: 2025-12-18 19:06:24 +0000
aq(4): Add build infrastructure
Reviewed by: adrian
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D53839
---
sys/conf/files | 11 +++++++++++
sys/modules/Makefile | 1 +
sys/modules/aq/Makefile | 12 ++++++++++++
3 files changed, 24 insertions(+)
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>
+