From: Arne Fitzenreiter Date: Tue, 19 Dec 2023 10:35:53 +0000 (+0100) Subject: alsa: don't report failed module loads X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cb58d049e0e121466fb2eb0694fa7b8e715b6f2c;p=people%2Fstevee%2Fipfire-2.x.git 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 --- diff --git a/src/initscripts/packages/alsa b/src/initscripts/packages/alsa index 348e33846..8c0a2cbd2 100644 --- a/src/initscripts/packages/alsa +++ b/src/initscripts/packages/alsa @@ -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..."