From 3d9887f5a6cc7f1f0ef250e16480264fe00492f5 Mon Sep 17 00:00:00 2001 From: xtraeme Date: Sun, 9 Sep 2007 05:40:22 +0000 Subject: [PATCH] Add the ug(4) LKM. Not tested but I've been using lm(4) and should work. --- sys/lkm/dev/isa/ug/Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 sys/lkm/dev/isa/ug/Makefile diff --git a/sys/lkm/dev/isa/ug/Makefile b/sys/lkm/dev/isa/ug/Makefile new file mode 100644 index 000000000000..0b242f04c470 --- /dev/null +++ b/sys/lkm/dev/isa/ug/Makefile @@ -0,0 +1,18 @@ +# $NetBSD: Makefile,v 1.1 2007/09/09 05:40:22 xtraeme Exp $ + +S= ${.CURDIR}/../../../.. +.PATH: $S/dev/isa + +KMOD= ug +SRCS+= lkm_isa.c ug_isa.c +NOMAN= # yes + +LKM_ISA_IO_PORT= 0xe0 +LKM_ISA_DRVNAME= ug +LKM_ISA_DRVNAME_CA= ug_isa + +#CPPFLAGS+= -DMULTIPROCESSOR -DDEBUG -DDIAGNOSTIC -DLOCKDEBUG +CLEANFILES+= *~ ${KMOD} +WARNS= 2 + +.include