mirror of
https://github.com/opnsense/src.git
synced 2026-02-25 11:00:15 -05:00
Along with the snd_sb8 and snd_sb16 drivers. They supported ISA
Creative Sound Blaster and compatible sound cards.
Note that isa/sb.h is not removed, as it is still used by some PCI
sound card drivers.
ISA sound card drivers are deprecated as discussed on the current[1] and
stable[2] mailing lists. Deprecation notices were added in e39ec8933b
and MFCd to stable branches.
Driver removals are being committed individually so that specific
drivers can be restored if necessary (either in FreeBSD or by downstream
projects).
[1] https://lists.freebsd.org/archives/freebsd-current/2022-March/001680.html
[2] https://lists.freebsd.org/archives/freebsd-stable/2022-March/000585.html
Reviewed by: mav
Relnotes: Yes
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D34671
27 lines
653 B
Makefile
27 lines
653 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= als4000 atiixp cs4281 ${_csa} emu10k1 emu10kx
|
|
SUBDIR+= envy24 envy24ht es137x fm801 hda hdspe ich
|
|
SUBDIR+= ${_maestro3} neomagic solo spicds t4dwave via8233
|
|
SUBDIR+= via82c686 vibes driver uaudio
|
|
|
|
.if ${MK_SOURCELESS_UCODE} != "no"
|
|
_csa= csa
|
|
_maestro3= maestro3
|
|
.endif
|
|
|
|
.if ${MACHINE_CPUARCH} == "i386" || ${MACHINE_CPUARCH} == "amd64"
|
|
SUBDIR+= cmi
|
|
.endif
|
|
|
|
.if ${MACHINE_CPUARCH} == "powerpc"
|
|
SUBDIR+= ai2s davbus
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|