diff options
author | Navdeep Parhar <np@FreeBSD.org> | 2022-03-02 22:30:15 +0000 |
---|---|---|
committer | Navdeep Parhar <np@FreeBSD.org> | 2022-03-05 00:37:45 +0000 |
commit | 8240114045af1547e5a1fe4c4dc3199b3c11358d (patch) | |
tree | 714f0a84205a6a9df9d25728ff8ffcf4c0bc2cdd | |
parent | 84195600d1189c7b44984b1b68537955d7bc9f65 (diff) |
cxgbe(4): Enable the hardware TCP Offload Module (t4_tom) on aarch64.
Sponsored by: Chelsio Communications
(cherry picked from commit 13a0d225bede5107cbf061e25cf3b85aeb18f5b6)
-rw-r--r-- | sys/modules/cxgbe/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/cxgbe/Makefile b/sys/modules/cxgbe/Makefile index e3265d5ba5da..f7cba54925fc 100644 --- a/sys/modules/cxgbe/Makefile +++ b/sys/modules/cxgbe/Makefile @@ -19,7 +19,7 @@ SUBDIR+= ${_iw_cxgbe} SUBDIR+= ${_cxgbei} SUBDIR+= ccr -.if ${MACHINE_CPUARCH} == "amd64" +.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "aarch64" _tom= tom _cxgbei= cxgbei .if ${MK_OFED} != "no" || defined(ALL_MODULES) |