![]() |
|
Latest firmware for PinePhone modem! - 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) +--- Thread: Latest firmware for PinePhone modem! (/showthread.php?tid=11815) |
RE: Latest firmware for PinePhone modem! - robthebold - 05-04-2022 (05-03-2022, 06:47 PM)mark1250 Wrote:(05-03-2022, 05:02 PM)robthebold Wrote:(04-02-2022, 03:54 AM)Juergen Wrote: I use the open modem firmware from Biktor (0.61) and just tested "mobian-pinephone-phosh-20220327.img.gz". Nope. I completely missed that (or at least misread it). Good excuse to finally install nano. I've edited and rebooted and will see what happens Thanks RE: Latest firmware for PinePhone modem! - robthebold - 05-06-2022 (05-04-2022, 12:46 PM)robthebold Wrote:(05-03-2022, 06:47 PM)mark1250 Wrote:(05-03-2022, 05:02 PM)robthebold Wrote:(04-02-2022, 03:54 AM)Juergen Wrote: I use the open modem firmware from Biktor (0.61) and just tested "mobian-pinephone-phosh-20220327.img.gz". OK. Been running with the changes for a couple days now. I don't think the modem bails on me as often, but I've caught it at least once. Usually the cell "bars" will disappear when this happens, but there have been times I missed calls when everything appeared fine and I'd only notice when the phone wouldn't ring but a while later a (possibly delayed) text from the service provider showed up that I think was meant to notify the phone about a visual voice mail. (It wasn't formatted for human readability.) I wonder if there's anything I can do script-wise that can periodically check on cellular connectivity and alert me that I should reboot the phone. I'll post if I find anything useful on that. RE: Latest firmware for PinePhone modem! - kk22 - 05-14-2022 What's the deal with 30.004.30.004? The release notes make it look like just a newer version of the ADSP firmware, but why is the version number so much higher? RE: Latest firmware for PinePhone modem! - simcommbn - 07-07-2022 (12-08-2020, 02:03 AM)dcinoz Wrote: FYI 5 additional VoLTE profiles (in bold): Hey, I know this is a long shot since I don't even have a Pinephone. But what I do have is a device that uses the same underlying modem. Is there any chance someone could provide me the Volte-ATT.mbn file so I can add AT&T VoLTE calling support to my device? I tried extracting it from the firmware images myself, but I cannot for the life of me figure out where the carrier configuration files are being stored. If they're in there, they're either in one of the .img files I can't get to extract, or they're named differently once actually flashed somehow. I'm just lost and tired, and figured maybe someone here already has a copy of the file I need anyways. I suppose a dump of all the carrier-specific MBNs might be useful for recovery purposes anyways for someone, so it couldn't hurt to have them uploaded somewhere if someone can get them or already has them. Hope it's not too much trouble. Thanks. RE: Latest firmware for PinePhone modem! - zetabeta - 07-20-2022 (07-07-2022, 04:24 PM)simcommbn Wrote: Hey, I know this is a long shot since I don't even have a Pinephone. But what I do have is a device that uses the same underlying modem. Is there any chance someone could provide me the Volte-ATT.mbn file so I can add AT&T VoLTE calling support to my device? I tried extracting it from the firmware images myself, but I cannot for the life of me figure out where the carrier configuration files are being stored. If they're in there, they're either in one of the .img files I can't get to extract, or they're named differently once actually flashed somehow. I'm just lost and tired, and figured maybe someone here already has a copy of the file I need anyways. I suppose a dump of all the carrier-specific MBNs might be useful for recovery purposes anyways for someone, so it couldn't hurt to have them uploaded somewhere if someone can get them or already has them. Hope it's not too much trouble. Thanks. you could use https://github.com/jrspruitt/ubi_reader or similar to unpack files. however, i did not find the files you were looking for. because of possible copyright reason, i don't provide links to the files. RE: Latest firmware for PinePhone modem! - bacydentir85 - 02-02-2025 (05-06-2022, 01:29 PM)robthebold Wrote: I wonder if there's anything I can do script-wise that can periodically check on cellular connectivity and alert me that I should reboot the phone. I'll post if I find anything useful on that. Sorry for reviving a dead thread, but I could not see your profile to pm you and I saw that your account seems to still be active. Here is a script that you can put in either your user or the root's crontab depending on if you want your phone to reboot automatically upon a modem crash. Here is the ugly script that I use to do that and I adapted it with notify-send if you would rather have notifications instead of a cold reboot. Notes - this assumes a non systemd distro (I am not familiar with systemd) (iirc, you use postmarketos) - It is not php code, it is only the text editor that puts that title Desktop notification on modem crash (non automatic reboot) 0. Create the directory `/opt/sbin/` Code: # mkdir -p /otp/sbin1. Put this script in `/opt/sbin/modem-check` PHP Code: #!/bin/sh2.1 Open the crontab for your user (not root, not through sudo) PHP Code: $ crontab -e 2.2 Add the following line at the bottom of your crontab PHP Code: */30 * * * * /opt/sbin/modem-check 2.3 Save it and quit 3. Enable crond PHP Code: # rc-update add crond 4. Start crontab monitoring without rebooting PHP Code: # rc-service crond start Automatic reboot on modem crash If you want to reboot your phone automatically (Be careful, as you could experience data loss if you are using the phone while the phone reboots) 0. Create the directory `/opt/sbin/` PHP Code: # mkdir /otp/sbin 1. Put the script code in `/opt/sbin/modem-check` PHP Code: #!/bin/sh2.1 Open the crontab for the root user PHP Code: # crontab -e 2.2 Add the following line at the bottom of the root's crontab PHP Code: */30 * * * * /opt/sbin/modem-check 2.3 Save it and quit 3. Enable crond PHP Code: # rc-update add crond 4. Start crontab monitoring without rebooting PHP Code: # rc-service crond start RE: Latest firmware for PinePhone modem! - baptx - 04-03-2026 It is surprising Quectel does not have public download links on their official website but after contacting Quectel tech support by email, they sent me a SharePoint download link for the latest modem firmware on the PinePhone, which is EG25GGBR07A08M2G_A0.303.A0.303 released on 2025-11-11. I noticed that on new firmware, the release notes says we cannot downgrade below version EG25GGBR07A08M2G_30.200.30.200, "otherwise the module will not be able to work normally". Did PinePhone users like @dchang0 (https://forum.pine64.org/showthread.php?tid=17686&pid=123728#pid123728) who upgraded to a version that don't support downgrades have any issue (e.g. with echo cancellation, call recording or GPS)? Would you recommend it and is there an advantage? I also asked someone with the same firmware here: https://github.com/Biktorgj/quectel_eg25_recovery/issues/28 |