From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adolf Belka 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 Message-ID: <20230421211503.2647702-2-adolf.belka@ipfire.org> In-Reply-To: <20230421211503.2647702-1-adolf.belka@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============3138367436082528869==" List-Id: --===============3138367436082528869== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable - Stopping alsa or uninstalling it left the sound modules installed until a r= eboot was carried out. Uninstallation or stopping the kernel modules should also unl= oad 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 Signed-off-by: Adolf Belka --- 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=3D1 + modprobe -r snd_timer >/dev/null 2>&1 || failed=3D1 + (exit ${failed}) + evaluate_retval loadproc /usr/sbin/alsactl store ;; =20 --=20 2.40.0 --===============3138367436082528869==--