public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH 1/3] alsa: Fix bug#13087 remove services entry
@ 2023-04-21 21:15 Adolf Belka
  2023-04-21 21:15 ` [PATCH 2/3] alsa: Fixes Bug#13087 - adds module removal for stopping alsa Adolf Belka
  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
  0 siblings, 2 replies; 6+ messages in thread
From: Adolf Belka @ 2023-04-21 21:15 UTC (permalink / raw)
  To: development

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

- alsa has an initscript but it is not starting and stopping a traditional daemon service.
   The initscript loads some alsa modules and then restores the asound.state file
- This patch updates the PAK_VER number and removes the services entry and explicitly
   adds alsa in for the initscript installation.

Fixes: Bug#13087
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
 lfs/alsa | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lfs/alsa b/lfs/alsa
index 2d89af880..5c74bd182 100644
--- a/lfs/alsa
+++ b/lfs/alsa
@@ -37,11 +37,11 @@ DL_FILE    = $(THISAPP).tar.bz2
 DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 PROG       = alsa
-PAK_VER    = 15
+PAK_VER    = 16
 
 DEPS       =
 
-SERVICES   = alsa
+SERVICES   =
 
 TARGET     = $(DIR_INFO)/$(THISAPP)
 
@@ -104,6 +104,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
 	cd $(DIR_APP)/alsa-firmware-$(FVER) && make $(MAKETUNING) $(EXTRA_MAKE)
 	cd $(DIR_APP)/alsa-firmware-$(FVER) && make install
 	# install initscript
-	$(call INSTALL_INITSCRIPTS,$(SERVICES))
+	$(call INSTALL_INITSCRIPTS,alsa)
 	@rm -rf $(DIR_SRC)/alsa*
 	@$(POSTBUILD)
-- 
2.40.0


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 2/3] alsa: Fixes Bug#13087 - adds module removal for stopping alsa.
  2023-04-21 21:15 [PATCH 1/3] alsa: Fix bug#13087 remove services entry Adolf Belka
@ 2023-04-21 21:15 ` Adolf Belka
  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
  1 sibling, 0 replies; 6+ messages in thread
From: Adolf Belka @ 2023-04-21 21:15 UTC (permalink / raw)
  To: development

[-- 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


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH 3/3] alsa: Fixed Bug#13087 - Corrects the path for asound.state and adds start and stop service
  2023-04-21 21:15 [PATCH 1/3] alsa: Fix bug#13087 remove services entry Adolf Belka
  2023-04-21 21:15 ` [PATCH 2/3] alsa: Fixes Bug#13087 - adds module removal for stopping alsa Adolf Belka
@ 2023-04-21 21:15 ` Adolf Belka
  1 sibling, 0 replies; 6+ messages in thread
From: Adolf Belka @ 2023-04-21 21:15 UTC (permalink / raw)
  To: development

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

- start_service added to install.sh and stop_service to uninstall.sh
   This ensures that the modules are loaded after install and that when doing uninstall
   the stop_service ensures that the snd modules are unloaded.
- the asound.state file was touched by the install.sh cript but the alsactl store and
   restore commands have default location of /var/lib/alsa/ so the touch command created
   an asound.state file that was then not used subsequently. It also meant that the first
   start of alsa would fail as it would try and restore from /var/lib/alsa/asound.state
   but the file did not exist.
- This patch also corrects the path for the touch command for asound.state
- The install.sh script also checks if /etc/asound.state exists and if it does removes it.

Fixes: Bug#13087
Tested-by: Adolf Belka <adolf.belka(a)ipfire.org>
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
 src/paks/alsa/install.sh   | 7 ++++++-
 src/paks/alsa/uninstall.sh | 2 ++
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/src/paks/alsa/install.sh b/src/paks/alsa/install.sh
index 7b6b3dc80..d6ab7b465 100644
--- a/src/paks/alsa/install.sh
+++ b/src/paks/alsa/install.sh
@@ -24,7 +24,12 @@
 . /opt/pakfire/lib/functions.sh
 extract_files
 groupadd audio 2>/dev/null
-touch /etc/asound.state
+touch /var/lib/alsa/asound.state
+if [ -f /etc/asound.state ]; then
+	rm /etc/asound.state
+fi
 ln -svf  ../init.d/alsa /etc/rc.d/rc3.d/S65alsa
 ln -svf  ../init.d/alsa /etc/rc.d/rc0.d/K35alsa
 ln -svf  ../init.d/alsa /etc/rc.d/rc6.d/K35alsa
+start_service ${NAME}
+exit 0
diff --git a/src/paks/alsa/uninstall.sh b/src/paks/alsa/uninstall.sh
index 62e27008d..632b695ae 100644
--- a/src/paks/alsa/uninstall.sh
+++ b/src/paks/alsa/uninstall.sh
@@ -22,5 +22,7 @@
 ############################################################################
 #
 . /opt/pakfire/lib/functions.sh
+stop_service ${NAME}
 remove_files
 rm -rf /etc/rc.d/rc*.d/*alsa
+exit 0
-- 
2.40.0


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 2/3] alsa: Fixes Bug#13087 - adds module removal for stopping alsa.
  2023-05-03 12:08   ` Michael Tremer
@ 2023-05-03 12:26     ` Adolf Belka
  0 siblings, 0 replies; 6+ messages in thread
From: Adolf Belka @ 2023-05-03 12:26 UTC (permalink / raw)
  To: development

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

Hi Michael,

On 03/05/2023 14:08, Michael Tremer wrote:
> What is the benefit of unloading the kernel modules?
> 
> Wouldn’t they automatically be reloaded once something triggers udev?
I tested installing the alsa addon on my production machine, which doesn't have any sound capability at all and I don't plan to install it. However, after installing the alsa addon I had the modules loaded and after uninstalling the alsa addon those alsa related kernel modules stayed there and would persist till a reboot was done for a core update for example.
It just seemed to me that unneeded kernel modules shouldn't stay loaded up just because an addon was installed for a test and then removed.

It seemed that things that installed modules should remove them when they are uninstalled.

Maybe the unloading should be moved to the uninstall.sh file rather than in the initscript. That might make more sense because then the addon has been completely (hopefully) removed.

Regards,
Adolf

> 
> -Michael
> 
>> On 3 May 2023, at 12:47, Adolf Belka <adolf.belka(a)ipfire.org> wrote:
>>
>> Hi Arne,
>>
>> On 02/05/2023 10:55, Arne Fitzenreiter wrote:
>>> I think this will not work.
>>> You have to run "alsctl store" to save the mixer settings before you unload the modules.
>> Thanks for flagging this up. I hadn't thought of that. I will fix it.
>>> There are also some *.conf files commented in the rootfiles. Also complains that they are missing since some
>>> versions. (still work on my hardware anyways.)
>>> Please include it to the package.
>> I will find them and uncomment them in the rootfile.
>>
>> What is the best way to submit these updates. Just a v2 update for the patch 2/3 plus another patch for the rootfile update or should I do a v2 patch submission for the complete set of three patches from the original set together with an additional patch for the rootfile changes?
>>
>> Regards,
>>
>> Adolf.
>>> Arne
>>> Am 2023-04-21 23:15, schrieb Adolf Belka:
>>>> - 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
>>>>           ;;
> 

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 2/3] alsa: Fixes Bug#13087 - adds module removal for stopping alsa.
  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
  0 siblings, 1 reply; 6+ messages in thread
From: Michael Tremer @ 2023-05-03 12:08 UTC (permalink / raw)
  To: development

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

What is the benefit of unloading the kernel modules?

Wouldn’t they automatically be reloaded once something triggers udev?

-Michael

> On 3 May 2023, at 12:47, Adolf Belka <adolf.belka(a)ipfire.org> wrote:
> 
> Hi Arne,
> 
> On 02/05/2023 10:55, Arne Fitzenreiter wrote:
>> I think this will not work.
>> You have to run "alsctl store" to save the mixer settings before you unload the modules.
> Thanks for flagging this up. I hadn't thought of that. I will fix it.
>> There are also some *.conf files commented in the rootfiles. Also complains that they are missing since some
>> versions. (still work on my hardware anyways.)
>> Please include it to the package.
> I will find them and uncomment them in the rootfile.
> 
> What is the best way to submit these updates. Just a v2 update for the patch 2/3 plus another patch for the rootfile update or should I do a v2 patch submission for the complete set of three patches from the original set together with an additional patch for the rootfile changes?
> 
> Regards,
> 
> Adolf.
>> Arne
>> Am 2023-04-21 23:15, schrieb Adolf Belka:
>>> - 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
>>>          ;;


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH 2/3] alsa: Fixes Bug#13087 - adds module removal for stopping alsa.
       [not found] <58a6df3f6c245880f279116096763426@ipfire.org>
@ 2023-05-03 11:47 ` Adolf Belka
  2023-05-03 12:08   ` Michael Tremer
  0 siblings, 1 reply; 6+ messages in thread
From: Adolf Belka @ 2023-05-03 11:47 UTC (permalink / raw)
  To: development

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

Hi Arne,

On 02/05/2023 10:55, Arne Fitzenreiter wrote:
> I think this will not work.
> You have to run "alsctl store" to save the mixer settings before you unload the modules.
Thanks for flagging this up. I hadn't thought of that. I will fix it.
> 
> There are also some *.conf files commented in the rootfiles. Also complains that they are missing since some
> versions. (still work on my hardware anyways.)
> Please include it to the package.
I will find them and uncomment them in the rootfile.

What is the best way to submit these updates. Just a v2 update for the patch 2/3 plus another patch for the rootfile update or should I do a v2 patch submission for the complete set of three patches from the original set together with an additional patch for the rootfile changes?

Regards,

Adolf.
> 
> Arne
> 
> 
> Am 2023-04-21 23:15, schrieb Adolf Belka:
>> - 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
>>          ;;

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2023-05-03 12:26 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-21 21:15 [PATCH 1/3] alsa: Fix bug#13087 remove services entry Adolf Belka
2023-04-21 21:15 ` [PATCH 2/3] alsa: Fixes Bug#13087 - adds module removal for stopping alsa Adolf Belka
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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox