Skip to main content
Topic: No audio after upgrading to 5.15.25-hardened1-1-hardened (Read 1919 times) previous topic - next topic
0 Members and 2 Guests are viewing this topic.

Re: No audio after upgrading to 5.15.25-hardened1-1-hardened

Reply #15
Just updated.  Audio still doesn't work.

Re: No audio after upgrading to 5.15.25-hardened1-1-hardened

Reply #16
It is another problem, install sof-firmware

Re: No audio after upgrading to 5.15.25-hardened1-1-hardened

Reply #17
Thanks, that fixed it.


Re: No audio after upgrading to 5.15.25-hardened1-1-hardened

Reply #19
Any help for linux-hardened 5.15.27.hardened1-1?

Honestly I have no clue, I can't reproduce and we have no error to tell us what is happening

Re: No audio after upgrading to 5.15.25-hardened1-1-hardened

Reply #20
Honestly I have no clue, I can't reproduce and we have no error to tell us what is happening

Honestly, I don't have any error stack to share and simply sound doesn't work with hardened and lts. I have tried the suggestions given before in this thread, however to no avail. I am going to wait for the next update before I stick only with the standard kernel. Fingers crossed.
Andromedan


Re: No audio after upgrading to 5.15.25-hardened1-1-hardened

Reply #22

Code: [Select]
drwxr-xr-x  3 root     root         180 Mar 19 17:43 snd/

Files under this directory

Code: [Select]
~~> ls -ltr
total 0
crw-rw----+ 1 root audio 116,  1 Mar 19 17:43 seq
crw-rw----+ 1 root audio 116, 33 Mar 19 17:43 timer
crw-rw----+ 1 root audio 116,  4 Mar 19 17:43 hwC0D0
crw-rw----+ 1 root audio 116,  5 Mar 19 17:43 controlC0
drwxr-xr-x  2 root root       60 Mar 19 17:43 by-path/
crw-rw----+ 1 root audio 116,  2 Mar 19 17:48 pcmC0D0p
crw-rw----+ 1 root audio 116,  3 Mar 19 17:48 pcmC0D0c
Andromedan

Re: No audio after upgrading to 5.15.25-hardened1-1-hardened

Reply #23
Is your user in "audio" group? Execute as regular user:
Code: [Select]
groups $(whoami) | grep audio || echo Not in audio group
if not, add it (as root, substitute username of your regular user instead of "your_username"):
Code: [Select]
usermod -aG audio your_username

Also, what is the output of (as root):
Code: [Select]
dmesg -l err
and
Code: [Select]
dmesg | grep -Ei '(sound|audio)'

Edit: Also try (needs strace installed):
Code: [Select]
strace mpv /path/to/some/audio_file.ogg 2>mpv.strace
where /path/to/some/audio_file.ogg is the pathname to any audio file, not necessarily in Ogg format. Then post output of:
Code: [Select]
grep -E '(snd|sound)' mpv.strace

 

Re: No audio after upgrading to 5.15.25-hardened1-1-hardened

Reply #24
Is your user in "audio" group? Execute as regular user:
Code: [Select]
groups $(whoami) | grep audio || echo Not in audio group
if not, add it (as root, substitute username of your regular user instead of "your_username"):
Code: [Select]
usermod -aG audio your_username

Also, what is the output of (as root):
Code: [Select]
dmesg -l err
and
Code: [Select]
dmesg | grep -Ei '(sound|audio)'

Edit: Also try (needs strace installed):
Code: [Select]
strace mpv /path/to/some/audio_file.ogg 2>mpv.strace
where /path/to/some/audio_file.ogg is the pathname to any audio file, not necessarily in Ogg format. Then post output of:
Code: [Select]
grep -E '(snd|sound)' mpv.strace

Thanks a lot mate. After the latest update now sound is working fine. Greatly appreciated your help
Andromedan