freebsd-dev/sys/modules/drm/Makefile
Emmanuel Vadot 4d5bf0bb88 drm(old): Remove i915 and radeon drivers
They cannot be used anymore with the userland bits we provide.
Furthermore, their KMS versions support the same hardware.

Submitted by:	dumbbell
Reviewed by:	emaste, manu
Sponsored by:	AsiaBSDCon
Differential Revision:	https://reviews.freebsd.org/D5614
2017-03-11 03:01:18 +00:00

25 lines
370 B
Makefile

# $FreeBSD$
SYSDIR?=${SRCTOP}/sys
.include "${SYSDIR}/conf/kern.opts.mk"
# Modules that include binary-only blobs of microcode should be selectable by
# MK_SOURCELESS_UCODE option (see below).
SUBDIR = \
drm \
mach64 \
${_mga} \
${_r128} \
savage \
sis \
tdfx \
via
.if ${MK_SOURCELESS_UCODE} != "no"
_mga= mga
_r128= r128
.endif
.include <bsd.subdir.mk>