The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/modules/nxge/Makefile

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 # $FreeBSD: releng/8.2/sys/modules/nxge/Makefile 173139 2007-10-29 14:19:32Z rwatson $
    2 
    3 .PATH: ${.CURDIR}/../../dev/nxge
    4 VPATH = ${.CURDIR}/../../dev/nxge/xgehal
    5 
    6 CFLAGS_NXGE = 
    7 
    8 # Debugging/Tracing:
    9 # XGE_COMPONENT_HAL_CONFIG      0x1
   10 # XGE_COMPONENT_HAL_FIFO        0x2
   11 # XGE_COMPONENT_HAL_RING        0x4
   12 # XGE_COMPONENT_HAL_CHANNEL     0x8
   13 # XGE_COMPONENT_HAL_DEVICE      0x10
   14 # XGE_COMPONENT_HAL_MM          0x20
   15 # XGE_COMPONENT_HAL_QUEUE       0x40
   16 # XGE_COMPONENT_HAL_STATS       0x100
   17 # XGE_COMPONENT_OSDEP           0x10000000
   18 # XGE_COMPONENT_LL              0x20000000
   19 # XGE_COMPONENT_ALL             0xffffffff
   20 
   21 CFLAGS_NXGE  += -DXGE_DEBUG_MODULE_MASK=XGE_COMPONENT_LL
   22 CFLAGS_NXGE  += -DXGE_DEBUG_ERR_MASK=XGE_COMPONENT_LL
   23 #CFLAGS_NXGE  += -DXGE_DEBUG_TRACE_MASK=XGE_COMPONENT_LL
   24 
   25 # Check Memory
   26 #CFLAGS_NXGE += -DXGE_OS_MEMORY_CHECK
   27 
   28 # 2-Buffer Mode
   29 #CFLAGS_NXGE += -DXGE_FEATURE_BUFFER_MODE_2
   30 
   31 CFLAGS += $(CFLAGS_NXGE)
   32 
   33 KMOD=   if_nxge
   34 SRCS=   if_nxge.c
   35 SRCS+=  xgehal-device.c xgehal-mm.c xge-queue.c
   36 SRCS+=  xgehal-driver.c xgehal-ring.c xgehal-channel.c
   37 SRCS+=  xgehal-fifo.c xgehal-stats.c xgehal-config.c
   38 SRCS+=  xgehal-mgmt.c
   39 SRCS+=  device_if.h bus_if.h pci_if.h
   40 
   41 .include <bsd.kmod.mk>

Cache object: fb363aa7f1846a90f2f5ecb42bb5a612


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.