From c32c80a72aeb0a840f8cdae4bca7cba886e5b317 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Wed, 24 Mar 2004 20:40:33 +0000 Subject: [PATCH] agp_nvidia.c was not being linked into the module build. --- sys/dev/agp/Makefile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/sys/dev/agp/Makefile b/sys/dev/agp/Makefile index af5d5e36df..1551068e4c 100644 --- a/sys/dev/agp/Makefile +++ b/sys/dev/agp/Makefile @@ -1,11 +1,12 @@ # $FreeBSD: src/sys/modules/agp/Makefile,v 1.2.2.4 2000/09/30 02:49:36 ps Exp $ -# $DragonFly: src/sys/dev/agp/Makefile,v 1.3 2003/08/15 08:32:28 dillon Exp $ +# $DragonFly: src/sys/dev/agp/Makefile,v 1.4 2004/03/24 20:40:33 dillon Exp $ KMOD = agp -SRCS = agp.c agp_intel.c agp_via.c agp_sis.c agp_ali.c agp_amd.c -SRCS += agp_i810.c agp_if.c -SRCS += device_if.h bus_if.h agp_if.h pci_if.h -SRCS += opt_bdg.h opt_bus.h opt_pci.h +SRCS = agp.c +SRCS += agp_i810.c agp_ali.c agp_amd.c agp_nvidia.c agp_intel.c +SRCS += agp_sis.c agp_via.c +SRCS += agp_if.c device_if.h bus_if.h agp_if.h pci_if.h +SRCS += opt_bdg.h opt_bus.h opt_pci.h MFILES = kern/device_if.m kern/bus_if.m dev/agp/agp_if.m bus/pci/pci_if.m .include -- 2.41.0