mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 03:49:02 +00:00
A long time ago, in a galaxy far, far away, someone made the (bonehead)
decision to limit the sound driver to one device. With Luigi's pcm driver, the unit number for the PnP detected cards is nearly always 1, and so you can't create the symlinks that will make your sound work. PR: 7564 Submitted by: Doug White <dwhite@resnet.uoregon.edu>
This commit is contained in:
parent
0914b0d220
commit
885dc3a91a
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=38310
18
etc/MAKEDEV
18
etc/MAKEDEV
@ -108,7 +108,7 @@
|
||||
# pci PCI configuration-space access from user mode
|
||||
# ipl ipfilter control devices (ipl, ipnat, ipstate, ipauth)
|
||||
#
|
||||
# $Id: MAKEDEV,v 1.166 1998/08/04 21:45:20 brian Exp $
|
||||
# $Id: MAKEDEV,v 1.167 1998/08/10 10:17:46 phk Exp $
|
||||
#
|
||||
|
||||
PATH=/sbin:/bin/:/usr/bin:/usr/sbin:$PATH
|
||||
@ -1028,15 +1028,13 @@ snd*)
|
||||
snd_security_hole=0 # XXX
|
||||
umask $snd_security_hole
|
||||
|
||||
if [ $unit = "0" ] ; then
|
||||
ln -fs mixer$unit mixer
|
||||
ln -fs sequencer$unit sequencer
|
||||
ln -fs dsp$unit dsp
|
||||
ln -fs audio$unit audio
|
||||
ln -fs dspW$unit dspW
|
||||
ln -fs music$unit music
|
||||
ln -fs pss$unit pss
|
||||
fi
|
||||
ln -fs mixer$unit mixer
|
||||
ln -fs sequencer$unit sequencer
|
||||
ln -fs dsp$unit dsp
|
||||
ln -fs audio$unit audio
|
||||
ln -fs dspW$unit dspW
|
||||
ln -fs music$unit music
|
||||
ln -fs pss$unit pss
|
||||
|
||||
mknod mixer$unit c $chr `expr $unit '*' 16 + 0`
|
||||
mknod sequencer$unit c $chr `expr $unit '*' 16 + 1`
|
||||
|
@ -108,7 +108,7 @@
|
||||
# pci PCI configuration-space access from user mode
|
||||
# ipl ipfilter control devices (ipl, ipnat, ipstate, ipauth)
|
||||
#
|
||||
# $Id: MAKEDEV,v 1.166 1998/08/04 21:45:20 brian Exp $
|
||||
# $Id: MAKEDEV,v 1.167 1998/08/10 10:17:46 phk Exp $
|
||||
#
|
||||
|
||||
PATH=/sbin:/bin/:/usr/bin:/usr/sbin:$PATH
|
||||
@ -1028,15 +1028,13 @@ snd*)
|
||||
snd_security_hole=0 # XXX
|
||||
umask $snd_security_hole
|
||||
|
||||
if [ $unit = "0" ] ; then
|
||||
ln -fs mixer$unit mixer
|
||||
ln -fs sequencer$unit sequencer
|
||||
ln -fs dsp$unit dsp
|
||||
ln -fs audio$unit audio
|
||||
ln -fs dspW$unit dspW
|
||||
ln -fs music$unit music
|
||||
ln -fs pss$unit pss
|
||||
fi
|
||||
ln -fs mixer$unit mixer
|
||||
ln -fs sequencer$unit sequencer
|
||||
ln -fs dsp$unit dsp
|
||||
ln -fs audio$unit audio
|
||||
ln -fs dspW$unit dspW
|
||||
ln -fs music$unit music
|
||||
ln -fs pss$unit pss
|
||||
|
||||
mknod mixer$unit c $chr `expr $unit '*' 16 + 0`
|
||||
mknod sequencer$unit c $chr `expr $unit '*' 16 + 1`
|
||||
|
Loading…
Reference in New Issue
Block a user