conf: Make system.pa use udev-detect and not hal-detect.

Also fix a left over reference to HAL in default.pa
This commit is contained in:
Colin Guthrie 2011-03-03 09:37:16 +00:00
parent 33d1de487a
commit 8c012a676d
2 changed files with 4 additions and 4 deletions

View file

@ -39,7 +39,7 @@ load-module module-card-restore
load-module module-augment-properties load-module module-augment-properties
### Load audio drivers statically (it's probably better to not load ### Load audio drivers statically (it's probably better to not load
### these drivers manually, but instead use module-hal-detect -- ### these drivers manually, but instead use module-udev-detect --
### see below -- for doing this automatically) ### see below -- for doing this automatically)
#load-module module-alsa-sink #load-module module-alsa-sink
#load-module module-alsa-source device=hw:1,0 #load-module module-alsa-source device=hw:1,0

View file

@ -20,11 +20,11 @@
# mode. # mode.
### Automatically load driver modules depending on the hardware available ### Automatically load driver modules depending on the hardware available
.ifexists module-hal-detect@PA_SOEXT@ .ifexists module-udev-detect@PA_SOEXT@
load-module module-hal-detect load-module module-udev-detect
.else .else
### Alternatively use the static hardware detection module (for systems that ### Alternatively use the static hardware detection module (for systems that
### lack HAL support) ### lack udev support)
load-module module-detect load-module module-detect
.endif .endif