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/twa/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$
    2 
    3 #
    4 # In the line following this comment, a value of 0 on the right hand
    5 # side will not cause firmware to be bundled.  Change this value to 1
    6 # to bundle the firmware with the driver, which may be flashed onto
    7 # the controller, if the firmware on the controller is older than the
    8 # one bundled, and needs to be upgraded.  The size of the driver will
    9 # increase significantly (to over 500kB) if this option is selected.
   10 #
   11 TWA_FLASH_FIRMWARE?=0
   12 
   13 KMOD = twa
   14 .PATH:  ${.CURDIR}/../../dev/${KMOD}
   15 SRCS = twa_freebsd.c twa_cam.c twa.c twa_globals.c \
   16       bus_if.h device_if.h pci_if.h opt_scsi.h opt_cam.h opt_twa.h
   17 
   18 .if $(TWA_FLASH_FIRMWARE) != 0
   19 CFLAGS+=-DTWA_FLASH_FIRMWARE
   20 SRCS += twa_fwimg.c
   21 .endif
   22 
   23 #CFLAGS+=-DTWA_DEBUG=0
   24 
   25 .include <bsd.kmod.mk>

Cache object: bf9fa0fe3ed24362a45a71e21f9b76ae


[ 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.