09-05-2022, 03:03 AM
Some of the events I recorded as "no wake from sleep" could also be caused by the system shutting down unexpected, especially after a phone call. According to https://gitlab.com/postmarketOS/pmaports...uests/2482 it is no longer required to have wys installed (if you have callaudiod installed and if your phone is a pinephone(pro) ).
Install callaudiod (and library), it is most probably already installed.
Disable wys (it can't be removed due to dependencies). If it's only disabled/masked as user mobian, then it will show up w/ user root again.
After a reboot, verify that there is really no wys service active.
This should return no output.
In addition to that, I upgraded my kernel to 5.15.63 (now it's 5.15.64). One of the official patches for 5.15.63 holds a fix for zram issue, maybe that's the culprit regarding the deep sleeps?
Install callaudiod (and library), it is most probably already installed.
Code:
sudo apt-get install callaudiod libcallaudio-0-1
Disable wys (it can't be removed due to dependencies). If it's only disabled/masked as user mobian, then it will show up w/ user root again.
Code:
systemctl --user disable wys
systemctl --user mask wys
sudo systemctl --user disable wys
sudo systemctl --user mask wys
After a reboot, verify that there is really no wys service active.
Code:
pgrep wys
In addition to that, I upgraded my kernel to 5.15.63 (now it's 5.15.64). One of the official patches for 5.15.63 holds a fix for zram issue, maybe that's the culprit regarding the deep sleeps?