I'v got my 5.1 working with bass/treble channels by compiling the emu10k1 from sourceforge.net/projects/emu10k1
adding this to modules.conf
Code:
alias char-major-116 snd
alias char-major-14 soundcore
alias snd-card-0 snd-emu10k1
alias sound-slot-0 snd-card-0
alias sound-service-0-0 snd-mixer-oss
alias sound-service-0-1 snd-seq-oss
alias sound-service-0-3 snd-pcm-oss
alias sound-service-0-8 snd-seq-oss
alias sound-service-0-12 snd-pcm-oss
alias /dev/mixer sound-service-0-0
alias /dev/dsp sound-service-0-3
alias /dev/midi sound-service-0-1
and then adding this script to local startup
Code:
#!/bin/bash
BASEPATH=/usr/local
DSPATH=$BASEPATH/bin/emu-dspmgr
TONE=$BASEPATH/share/emu10k1/tone.bin
$DSPATH -l"Pcm L" -f$TONE -cbass -mbass -ctreble -mtreble
$DSPATH -l"Pcm R" -f$TONE
$DSPATH -l"Pcm1 L" -f$TONE
$DSPATH -l"Pcm1 R" -f$TONE
hope it can give some help
Bookmarks