public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
From: Adolf Belka <adolf.belka@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 2/3] alsa: Fixes Bug#13087 - adds module removal for stopping alsa.
Date: Fri, 21 Apr 2023 23:15:02 +0200	[thread overview]
Message-ID: <20230421211503.2647702-2-adolf.belka@ipfire.org> (raw)
In-Reply-To: <20230421211503.2647702-1-adolf.belka@ipfire.org>

[-- Attachment #1: Type: text/plain, Size: 1085 bytes --]

- Stopping alsa or uninstalling it left the sound modules installed until a reboot was
   carried out. Uninstallation or stopping the kernel modules should also unload them.
   This patch adds in the modprobe -r commands to unload all the snd modules installed
   with the start command. The stop command is then added into the uninstall script to
   remove the modules.

Fixes: Bug#13087
Tested-by: Adolf Belka <adolf.belka(a)ipfire.org>
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
 src/initscripts/packages/alsa | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/initscripts/packages/alsa b/src/initscripts/packages/alsa
index 348e33846..3bfb69f62 100644
--- a/src/initscripts/packages/alsa
+++ b/src/initscripts/packages/alsa
@@ -33,6 +33,10 @@ case "$1" in
 		;;
 	stop)
 		boot_mesg "Stopping ALSA...    Saving volumes..."
+		modprobe -r snd_pcm_oss >/dev/null 2>&1 || failed=1
+		modprobe -r snd_timer >/dev/null 2>&1 || failed=1
+		(exit ${failed})
+		evaluate_retval
 		loadproc /usr/sbin/alsactl store
 		;;
 
-- 
2.40.0


  reply	other threads:[~2023-04-21 21:15 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-21 21:15 [PATCH 1/3] alsa: Fix bug#13087 remove services entry Adolf Belka
2023-04-21 21:15 ` Adolf Belka [this message]
2023-04-21 21:15 ` [PATCH 3/3] alsa: Fixed Bug#13087 - Corrects the path for asound.state and adds start and stop service Adolf Belka
     [not found] <58a6df3f6c245880f279116096763426@ipfire.org>
2023-05-03 11:47 ` [PATCH 2/3] alsa: Fixes Bug#13087 - adds module removal for stopping alsa Adolf Belka
2023-05-03 12:08   ` Michael Tremer
2023-05-03 12:26     ` Adolf Belka

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230421211503.2647702-2-adolf.belka@ipfire.org \
    --to=adolf.belka@ipfire.org \
    --cc=development@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox