mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 07:11:05 +01:00
Add config + files information for new Linux soundcard driver
This commit is contained in:
parent
85c856e747
commit
ce551cce65
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=650
@ -4,7 +4,7 @@
|
||||
#
|
||||
# This kernel is NOT MEANT to be runnable!
|
||||
#
|
||||
# $Id: LINT,v 1.16 1993/10/18 22:46:58 rgrimes Exp $
|
||||
# $Id: LINT,v 1.17 1993/10/19 19:49:24 nate Exp $
|
||||
#
|
||||
|
||||
machine "i386"
|
||||
@ -116,6 +116,25 @@ disk wd0 at wd0 drive 0
|
||||
disk wd1 at wd0 drive 1
|
||||
device wt0 at isa? port 0x300 bio irq 5 drq 1 vector wtintr
|
||||
|
||||
# To enable sound card support, uncomment one or more of the following lines.
|
||||
# Unit numbers are:
|
||||
# 1 for Yamaha FM synth
|
||||
# 2 for SB/SB Pro DSP
|
||||
# 3 for PAS PCM and Midi
|
||||
# 4 for GUS
|
||||
# 5 for MPU-401
|
||||
#
|
||||
# If you have ProAudioSpectrum, uncomment units 3, 2 and 1
|
||||
# If you have SoundBlaster, uncomment 2 and 1.
|
||||
# If you have GravisUltrasound, uncomment 4
|
||||
# If you have MPU-401, uncomment 5
|
||||
#
|
||||
#device snd5 at isa? port 0x330 irq 6 drq 0 vector mpuintr
|
||||
#device snd4 at isa? port 0x220 irq 15 drq 6 vector gusintr
|
||||
#device snd3 at isa? port 0x388 irq 12 drq 3 vector pasintr
|
||||
#device snd2 at isa? port 0x220 irq 7 drq 1 vector sbintr
|
||||
#device snd1 at isa? port 0x388 irq 0 drq 0 vector sbintr
|
||||
#
|
||||
#
|
||||
# options that have not been resolved yet
|
||||
#
|
||||
|
@ -1,7 +1,7 @@
|
||||
# This file tells config what files go into building a kernel,
|
||||
# files marked standard are always included.
|
||||
#
|
||||
# $Id: files.i386,v 1.15 1993/10/11 06:19:40 rgrimes Exp $
|
||||
# $Id: files.i386,v 1.16 1993/10/14 17:09:55 rgrimes Exp $
|
||||
#
|
||||
i386/i386/autoconf.c standard device-driver
|
||||
i386/i386/cons.c standard
|
||||
@ -43,3 +43,26 @@ i386/isa/tw.c optional tw device-driver
|
||||
i386/isa/ultra14f.c optional uha device-driver
|
||||
i386/isa/wd.c optional wd device-driver
|
||||
i386/isa/wt.c optional wt device-driver
|
||||
i386/isa/sound/soundcard.c optional snd device-driver
|
||||
i386/isa/sound/dev_table.c optional snd device-driver
|
||||
i386/isa/sound/adlib_card.c optional snd device-driver
|
||||
i386/isa/sound/audio.c optional snd device-driver
|
||||
i386/isa/sound/dmabuf.c optional snd device-driver
|
||||
i386/isa/sound/dsp.c optional snd device-driver
|
||||
i386/isa/sound/gus_card.c optional snd device-driver
|
||||
i386/isa/sound/gus_wave.c optional snd device-driver
|
||||
i386/isa/sound/gus_midi.c optional snd device-driver
|
||||
i386/isa/sound/gus_vol.c optional snd device-driver
|
||||
i386/isa/sound/midibuf.c optional snd device-driver
|
||||
i386/isa/sound/mpu401.c optional snd device-driver
|
||||
i386/isa/sound/opl3.c optional snd device-driver
|
||||
i386/isa/sound/pas2_card.c optional snd device-driver
|
||||
i386/isa/sound/pas2_midi.c optional snd device-driver
|
||||
i386/isa/sound/pas2_mixer.c optional snd device-driver
|
||||
i386/isa/sound/pas2_pcm.c optional snd device-driver
|
||||
i386/isa/sound/pro_midi.c optional snd device-driver
|
||||
i386/isa/sound/sb_card.c optional snd device-driver
|
||||
i386/isa/sound/sb_dsp.c optional snd device-driver
|
||||
i386/isa/sound/sequencer.c optional snd device-driver
|
||||
i386/isa/sound/midi.c optional snd device-driver
|
||||
i386/isa/sound/patmgr.c optional snd device-driver
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
# This kernel is NOT MEANT to be runnable!
|
||||
#
|
||||
# $Id: LINT,v 1.16 1993/10/18 22:46:58 rgrimes Exp $
|
||||
# $Id: LINT,v 1.17 1993/10/19 19:49:24 nate Exp $
|
||||
#
|
||||
|
||||
machine "i386"
|
||||
@ -116,6 +116,25 @@ disk wd0 at wd0 drive 0
|
||||
disk wd1 at wd0 drive 1
|
||||
device wt0 at isa? port 0x300 bio irq 5 drq 1 vector wtintr
|
||||
|
||||
# To enable sound card support, uncomment one or more of the following lines.
|
||||
# Unit numbers are:
|
||||
# 1 for Yamaha FM synth
|
||||
# 2 for SB/SB Pro DSP
|
||||
# 3 for PAS PCM and Midi
|
||||
# 4 for GUS
|
||||
# 5 for MPU-401
|
||||
#
|
||||
# If you have ProAudioSpectrum, uncomment units 3, 2 and 1
|
||||
# If you have SoundBlaster, uncomment 2 and 1.
|
||||
# If you have GravisUltrasound, uncomment 4
|
||||
# If you have MPU-401, uncomment 5
|
||||
#
|
||||
#device snd5 at isa? port 0x330 irq 6 drq 0 vector mpuintr
|
||||
#device snd4 at isa? port 0x220 irq 15 drq 6 vector gusintr
|
||||
#device snd3 at isa? port 0x388 irq 12 drq 3 vector pasintr
|
||||
#device snd2 at isa? port 0x220 irq 7 drq 1 vector sbintr
|
||||
#device snd1 at isa? port 0x388 irq 0 drq 0 vector sbintr
|
||||
#
|
||||
#
|
||||
# options that have not been resolved yet
|
||||
#
|
||||
|
@ -4,7 +4,7 @@
|
||||
#
|
||||
# This kernel is NOT MEANT to be runnable!
|
||||
#
|
||||
# $Id: LINT,v 1.16 1993/10/18 22:46:58 rgrimes Exp $
|
||||
# $Id: LINT,v 1.17 1993/10/19 19:49:24 nate Exp $
|
||||
#
|
||||
|
||||
machine "i386"
|
||||
@ -116,6 +116,25 @@ disk wd0 at wd0 drive 0
|
||||
disk wd1 at wd0 drive 1
|
||||
device wt0 at isa? port 0x300 bio irq 5 drq 1 vector wtintr
|
||||
|
||||
# To enable sound card support, uncomment one or more of the following lines.
|
||||
# Unit numbers are:
|
||||
# 1 for Yamaha FM synth
|
||||
# 2 for SB/SB Pro DSP
|
||||
# 3 for PAS PCM and Midi
|
||||
# 4 for GUS
|
||||
# 5 for MPU-401
|
||||
#
|
||||
# If you have ProAudioSpectrum, uncomment units 3, 2 and 1
|
||||
# If you have SoundBlaster, uncomment 2 and 1.
|
||||
# If you have GravisUltrasound, uncomment 4
|
||||
# If you have MPU-401, uncomment 5
|
||||
#
|
||||
#device snd5 at isa? port 0x330 irq 6 drq 0 vector mpuintr
|
||||
#device snd4 at isa? port 0x220 irq 15 drq 6 vector gusintr
|
||||
#device snd3 at isa? port 0x388 irq 12 drq 3 vector pasintr
|
||||
#device snd2 at isa? port 0x220 irq 7 drq 1 vector sbintr
|
||||
#device snd1 at isa? port 0x388 irq 0 drq 0 vector sbintr
|
||||
#
|
||||
#
|
||||
# options that have not been resolved yet
|
||||
#
|
||||
|
@ -1,7 +1,7 @@
|
||||
# This file tells config what files go into building a kernel,
|
||||
# files marked standard are always included.
|
||||
#
|
||||
# $Id: files.i386,v 1.15 1993/10/11 06:19:40 rgrimes Exp $
|
||||
# $Id: files.i386,v 1.16 1993/10/14 17:09:55 rgrimes Exp $
|
||||
#
|
||||
i386/i386/autoconf.c standard device-driver
|
||||
i386/i386/cons.c standard
|
||||
@ -43,3 +43,26 @@ i386/isa/tw.c optional tw device-driver
|
||||
i386/isa/ultra14f.c optional uha device-driver
|
||||
i386/isa/wd.c optional wd device-driver
|
||||
i386/isa/wt.c optional wt device-driver
|
||||
i386/isa/sound/soundcard.c optional snd device-driver
|
||||
i386/isa/sound/dev_table.c optional snd device-driver
|
||||
i386/isa/sound/adlib_card.c optional snd device-driver
|
||||
i386/isa/sound/audio.c optional snd device-driver
|
||||
i386/isa/sound/dmabuf.c optional snd device-driver
|
||||
i386/isa/sound/dsp.c optional snd device-driver
|
||||
i386/isa/sound/gus_card.c optional snd device-driver
|
||||
i386/isa/sound/gus_wave.c optional snd device-driver
|
||||
i386/isa/sound/gus_midi.c optional snd device-driver
|
||||
i386/isa/sound/gus_vol.c optional snd device-driver
|
||||
i386/isa/sound/midibuf.c optional snd device-driver
|
||||
i386/isa/sound/mpu401.c optional snd device-driver
|
||||
i386/isa/sound/opl3.c optional snd device-driver
|
||||
i386/isa/sound/pas2_card.c optional snd device-driver
|
||||
i386/isa/sound/pas2_midi.c optional snd device-driver
|
||||
i386/isa/sound/pas2_mixer.c optional snd device-driver
|
||||
i386/isa/sound/pas2_pcm.c optional snd device-driver
|
||||
i386/isa/sound/pro_midi.c optional snd device-driver
|
||||
i386/isa/sound/sb_card.c optional snd device-driver
|
||||
i386/isa/sound/sb_dsp.c optional snd device-driver
|
||||
i386/isa/sound/sequencer.c optional snd device-driver
|
||||
i386/isa/sound/midi.c optional snd device-driver
|
||||
i386/isa/sound/patmgr.c optional snd device-driver
|
||||
|
Loading…
Reference in New Issue
Block a user