Hook the SiS DRM up to the build

Sponsored by:	LinuxFund
This commit is contained in:
Eric Anholt 2003-09-09 00:29:02 +00:00
parent 6608b729ea
commit a1810e1513
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=119896
4 changed files with 16 additions and 2 deletions

View file

@ -376,6 +376,9 @@ dev/drm/radeon_drv.c optional radeondrm
dev/drm/radeon_irq.c optional radeondrm
dev/drm/radeon_mem.c optional radeondrm
dev/drm/radeon_state.c optional radeondrm
dev/drm/sis_drv.c optional sisdrm
dev/drm/sis_ds.c optional sisdrm
dev/drm/sis_mm.c optional sisdrm
dev/drm/tdfx_drv.c optional tdfxdrm
dev/ed/if_ed.c optional ed
dev/ed/if_ed_pccard.c optional ed card

View file

@ -418,9 +418,10 @@ options ACPI_DEBUG
# DRM options:
# mgadrm: AGP Matrox G200, G400, G450, G550
# tdfxdrm: 3dfx Voodoo 3/4/5 and Banshee
# r128drm: ATI Rage 128
# radeondrm: ATI Radeon up to 9000/9100
# sisdrm: SiS 300/305,540,630
# tdfxdrm: 3dfx Voodoo 3/4/5 and Banshee
# DRM_DEBUG: include debug printfs, very slow
#
# mga requires AGP in the kernel, and it is recommended
@ -429,6 +430,7 @@ options ACPI_DEBUG
device mgadrm
device "r128drm"
device radeondrm
device sisdrm
device tdfxdrm
options DRM_DEBUG

View file

@ -1,5 +1,5 @@
# $FreeBSD$
SUBDIR = mga r128 radeon tdfx
SUBDIR = mga r128 radeon sis tdfx
.include <bsd.subdir.mk>

View file

@ -0,0 +1,9 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../../dev/drm
KMOD= sis
NOMAN= YES
SRCS= sis_drv.c sis_ds.c sis_mm.c
SRCS+= device_if.h bus_if.h pci_if.h opt_drm.h
.include <bsd.kmod.mk>