PINE64
Modem suddenly not enabled when booting from eMMC - Printable Version

+- PINE64 (https://forum.pine64.org)
+-- Forum: PinePhone (https://forum.pine64.org/forumdisplay.php?fid=120)
+--- Forum: PinePhone Software (https://forum.pine64.org/forumdisplay.php?fid=121)
+---- Forum: Mobian on PinePhone (https://forum.pine64.org/forumdisplay.php?fid=139)
+---- Thread: Modem suddenly not enabled when booting from eMMC (/showthread.php?tid=15143)



Modem suddenly not enabled when booting from eMMC - Zebulon Walton - 10-20-2021

This is kind of strange...

Earlier this morning I used my Pinephone, made a call with no problem. (That's booted off the eMMC with Mobian bookworm and updates as of a few days ago.) Then I turned the phone off since it's only powered up when needed.

Several hours later, this afternoon I booted the phone up to make another call but the cellular indicator in the upper left of the screen had the line drawn through it, and there was no service. As a test, running "mmcli -m 0 --messaging-list-sms" resulted in the message "error: modem not enabled yet". Reseating the SIM in its slot had no effect, and neither did installing current updates as of today.

However, booting up on my "known to work" SD card (Mobian bookworm with updates as of a few weeks ago) brings the modem back online and calls can be made. Using mmcli to check for SMS messages results in "No sms messages were found", as expected.

I do have a few working eMMC images made over the last several weeks so I can try restoring one of those to eMMC. Before taking that hatchet approach, any ideas what's going on here?


[Image: vZg9pmcI_o.jpg]


RE: Modem suddenly not enabled when booting from eMMC - Zebulon Walton - 10-22-2021

Today I exercised the "nuclear option" and restored my eMMC image backup from October 3rd to my Pinephone. Boots up fine from eMMC now and modem is online. Not sure what happened, but I probably will avoid doing updates for a while.

Speaking of which, how can I turn off automatic checking for updates and the associated popup message? I always run updates from the command line anyway.


RE: Modem suddenly not enabled when booting from eMMC - kqlnut - 10-23-2021

(10-22-2021, 12:17 PM)Zebulon Walton Wrote: Speaking of which, how can I turn off automatic checking for updates and the associated popup message? I always run updates from the command line anyway.

PackageKit is responsible for that. You can turn off and mask its service, so it won't get activated again by something else at some point:
Code:
sudo systemctl stop packagekit.service
sudo systemctl disable packagekit.service
sudo systemctl mask packagekit.service
You can also remove gnome-software altogether, it's probably the only package depending on PackageKit.

If you still want to use gnome-software, you should be able to disable automatic updates with this change in the dconf database (haven't tried it myself):
Code:
gsettings set org.gnome.software download-updates false



RE: Modem suddenly not enabled when booting from eMMC - Zebulon Walton - 10-23-2021

Thanks, I'll give that a try!