Advertisement
Guest User

Untitled

a guest
Aug 31st, 2015
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. # autoloader aliases
  2. install sound-slot-0 /sbin/modprobe snd-card-0
  3. install sound-slot-1 /sbin/modprobe snd-card-1
  4. install sound-slot-2 /sbin/modprobe snd-card-2
  5. install sound-slot-3 /sbin/modprobe snd-card-3
  6. install sound-slot-4 /sbin/modprobe snd-card-4
  7. install sound-slot-5 /sbin/modprobe snd-card-5
  8. install sound-slot-6 /sbin/modprobe snd-card-6
  9. install sound-slot-7 /sbin/modprobe snd-card-7
  10. # Cause optional modules to be loaded above generic modules
  11. install snd /sbin/modprobe --ignore-install snd && { /sbin/modprobe --quiet snd-ioctl32 ; /sbin/modprobe --quiet snd-seq ; : ; }
  12. install snd-rawmidi /sbin/modprobe --ignore-install snd-rawmidi && { /sbin/modprobe --quiet snd-seq-midi ; : ; }
  13. install snd-emu10k1 /sbin/modprobe --ignore-install snd-emu10k1 && { /sbin/modprobe --quiet snd-emu10k1-synth ; : ; }
  14. # Keep snd-pcsp from beeing loaded as first soundcard
  15. options snd-pcsp index=-2
  16. # Keep snd-usb-audio from beeing loaded as first soundcard
  17. options snd-usb-audio index=-2
  18. # Prevent abnormal drivers from grabbing index 0
  19. options bt87x index=-2
  20. options cx88_alsa index=-2
  21. options snd-atiixp-modem index=-2
  22. options snd-intel8x0m index=-2
  23. options snd-via82xx-modem index=-2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement