alsa: don't report failed module loads

this will stop pakfire if the kernel was updated before the alsa update.

Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
This commit is contained in:
Arne Fitzenreiter
2023-12-19 11:35:53 +01:00
parent 8064dce996
commit cb58d049e0

View File

@@ -24,12 +24,12 @@
case "$1" in
start)
modprobe snd_pcm_oss >/dev/null 2>&1
modprobe snd_mixer_oss >/dev/null 2>&1
boot_mesg "Starting ALSA... Restoring volumes..."
modprobe snd_pcm_oss >/dev/null 2>&1 || failed=1
modprobe snd_mixer_oss >/dev/null 2>&1 || failed=1
(exit ${failed})
evaluate_retval
loadproc /usr/sbin/alsactl restore
evaluate_retval
exit 0
;;
stop)
boot_mesg "Stopping ALSA... Saving volumes..."