diff options
author | kmacy <kmacy@FreeBSD.org> | 2007-05-25 09:48:20 +0000 |
---|---|---|
committer | kmacy <kmacy@FreeBSD.org> | 2007-05-25 09:48:20 +0000 |
commit | ddbd7cde72b0cb0f96600a76e0df5f3320258929 (patch) | |
tree | 3cd221393046f8f2ea1ba9fc6075dfd3cf055a68 /sys/modules/cxgb | |
parent | 7ad8d734a50015b2c55793d0f8bdb1c9c375dfd9 (diff) | |
download | FreeBSD-src-ddbd7cde72b0cb0f96600a76e0df5f3320258929.zip FreeBSD-src-ddbd7cde72b0cb0f96600a76e0df5f3320258929.tar.gz |
(MFp4)
- upgrade to reflect state of 1.0.0.86
- move from firmware rev 3.2 to 4.0.0
- import driver bits for offload functionality
- remove binary distribution clause from top level files as it
runs counter to the intent of purely supporting the hardware
MFC after: 3 days
Diffstat (limited to 'sys/modules/cxgb')
-rw-r--r-- | sys/modules/cxgb/Makefile | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/sys/modules/cxgb/Makefile b/sys/modules/cxgb/Makefile index f6147e8..fa72d2a 100644 --- a/sys/modules/cxgb/Makefile +++ b/sys/modules/cxgb/Makefile @@ -6,19 +6,21 @@ CXGB = ${.CURDIR}/../../dev/cxgb KMOD= if_cxgb SRCS= cxgb_mc5.c cxgb_vsc8211.c cxgb_ael1002.c cxgb_mv88e1xxx.c SRCS+= cxgb_xgmac.c cxgb_t3_hw.c cxgb_main.c cxgb_sge.c cxgb_lro.c -SRCS+= device_if.h bus_if.h pci_if.h +SRCS+= cxgb_offload.c cxgb_l2t.c +SRCS+= device_if.h bus_if.h pci_if.h opt_zero.h SRCS+= uipc_mvec.c -CFLAGS+= -DCONFIG_CHELSIO_T3_CORE -g -DDEFAULT_JUMBO -DCONFIG_DEFINED +CFLAGS+= -DCONFIG_CHELSIO_T3_CORE -g -DDEFAULT_JUMBO -DCONFIG_DEFINED +#CFLAGS+= -DINVARIANT_SUPPORT -DINVARIANTS -DDEBUG .if ${MACHINE_ARCH} != "ia64" # ld is broken on ia64 -t3fw-3.2.bin: ${CXGB}/t3fw-3.2.bin.gz.uu - uudecode -p < ${CXGB}/t3fw-3.2.bin.gz.uu \ +t3fw-4.0.0.bin: ${CXGB}/t3fw-4.0.0.bin.gz.uu + uudecode -p < ${CXGB}/t3fw-4.0.0.bin.gz.uu \ | gzip -dc > ${.TARGET} -FIRMWS= t3fw-3.2.bin:t3fw32 -CLEANFILES+= t3fw-3.2.bin +FIRMWS= t3fw-4.0.0.bin:t3fw400 +CLEANFILES+= t3fw-4.0.0.bin .endif |