Hook the SiS DRM up to the build
Sponsored by: LinuxFund
This commit is contained in:
parent
6b43265580
commit
a2691786cd
@ -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
|
||||
|
@ -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
|
||||
|
@ -1,5 +1,5 @@
|
||||
# $FreeBSD$
|
||||
|
||||
SUBDIR = mga r128 radeon tdfx
|
||||
SUBDIR = mga r128 radeon sis tdfx
|
||||
|
||||
.include <bsd.subdir.mk>
|
||||
|
9
sys/modules/drm/sis/Makefile
Normal file
9
sys/modules/drm/sis/Makefile
Normal 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>
|
Loading…
Reference in New Issue
Block a user