Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 4 Jun 2003 23:54:22 -0400
From:      Barney Wolff <barney@databus.com>
To:        stable@freebsd.org
Subject:   Re: buildkernel fails in hifn
Message-ID:  <20030605035422.GA43189@pit.databus.com>

next in thread | raw e-mail | index | archive | help
/usr/src/sys/modules/hifn/Makefile appears to need an update to make it
same as HEAD.  Same with ..modules/ubsec/Makefile.  Patches:


Index: Makefile
===================================================================
RCS file: /home/ncvs/src/sys/modules/ubsec/Makefile,v
retrieving revision 1.2.2.1
diff -u -r1.2.2.1 Makefile
--- Makefile	21 Nov 2002 23:38:47 -0000	1.2.2.1
+++ Makefile	5 Jun 2003 03:48:53 -0000
@@ -2,8 +2,11 @@
 
 .PATH:	${.CURDIR}/../../dev/ubsec
 KMOD	= ubsec
-SRCS	= ubsec.c
+SRCS	= ubsec.c opt_ubsec.h
 SRCS   += device_if.h bus_if.h pci_if.h
 SRCS   += opt_bdg.h opt_bus.h crypto_if.h
 
+opt_ubsec.h:
+	echo "#define UBSEC_DEBUG 1" > opt_ubsec.h
+ 
 .include <bsd.kmod.mk>


Index: Makefile
===================================================================
RCS file: /home/ncvs/src/sys/modules/hifn/Makefile,v
retrieving revision 1.2.2.1
diff -u -r1.2.2.1 Makefile
--- Makefile	21 Nov 2002 23:38:46 -0000	1.2.2.1
+++ Makefile	5 Jun 2003 03:43:48 -0000
@@ -2,8 +2,11 @@
 
 .PATH:	${.CURDIR}/../../dev/hifn
 KMOD	= hifn
-SRCS	= hifn7751.c
+SRCS	= hifn7751.c opt_hifn.h
 SRCS   += device_if.h bus_if.h pci_if.h
 SRCS   += opt_bdg.h opt_bus.h crypto_if.h
 
+opt_hifn.h:
+	echo "#define HIFN_DEBUG 1" > opt_hifn.h
+ 
 .include <bsd.kmod.mk>

-- 
Barney Wolff         http://www.databus.com/bwresume.pdf
I'm available by contract or FT, in the NYC metro area or via the 'Net.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20030605035422.GA43189>