mirror of
https://git.FreeBSD.org/src.git
synced 2025-02-08 18:23: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
@ -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,7 +1028,6 @@ 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
|
||||
@ -1036,7 +1035,6 @@ snd*)
|
||||
ln -fs dspW$unit dspW
|
||||
ln -fs music$unit music
|
||||
ln -fs pss$unit pss
|
||||
fi
|
||||
|
||||
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,7 +1028,6 @@ 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
|
||||
@ -1036,7 +1035,6 @@ snd*)
|
||||
ln -fs dspW$unit dspW
|
||||
ln -fs music$unit music
|
||||
ln -fs pss$unit pss
|
||||
fi
|
||||
|
||||
mknod mixer$unit c $chr `expr $unit '*' 16 + 0`
|
||||
mknod sequencer$unit c $chr `expr $unit '*' 16 + 1`
|
||||
|
Loading…
x
Reference in New Issue
Block a user