Difference between revisions of "Status/Mobile Data"

From Maemo Leste Wiki
Jump to navigationJump to search
Line 1: Line 1:
Relevant tickets:
Relevant tickets:


Line 23: Line 25:
* https://www.olimex.com/Products/USB-Modules/MOD-USB3G/
* https://www.olimex.com/Products/USB-Modules/MOD-USB3G/
* https://aleksander.es/data/Qualcomm%20Gobi%20devices%20on%20Linux.pdf
* https://aleksander.es/data/Qualcomm%20Gobi%20devices%20on%20Linux.pdf
USB passthrough on QEMU can work like this (note -device usb-host), pick proper product/vendor IDs:
<pre>
sudo qemu-system-x86_64 -hda \
/ext4/leste/maemo-leste-1.0-amd64-virtual-20181102.qcow2 \
-vga virtio -enable-kvm -cpu host -smp cores=2 -m 4096 \
-nic user,hostfwd=tcp:127.0.0.1:7722-:22 -display gtk \
-usb \
-device usb-host,vendorid=0x2c7c,productid=0x0125 \
-device usb-host,vendorid=0x13d3,productid=0x3346 \
-monitor stdio
</pre>


Modems from Pine64 Devkits work with ofono:
Modems from Pine64 Devkits work with ofono:
* http://wiki.pine64.org/index.php/Project_Anakin
* http://wiki.pine64.org/index.php/Project_Anakin
* http://wiki.pine64.org/index.php/Project_Don't_be_evil
* http://wiki.pine64.org/index.php/Project_Don't_be_evil

Revision as of 22:39, 12 August 2019


Relevant tickets:

We will need the following:

  • RE of the current data icd2 plugin from Fremantle (as starting base)
  • Code to interface with ofono, resulting in libicd-network-ofono
  • Connui UI plugins for gprs and port it to ofono https://github.com/maemo-leste/connui-cellular
  • Database of various mobile operations and their default APN information
  • Hardware/driver support

Useful resources/hw/links:

Olimex 3g modem (should also do voice calls), should work with ofono:

USB passthrough on QEMU can work like this (note -device usb-host), pick proper product/vendor IDs:

sudo qemu-system-x86_64 -hda \
/ext4/leste/maemo-leste-1.0-amd64-virtual-20181102.qcow2 \
-vga virtio -enable-kvm -cpu host -smp cores=2 -m 4096 \
-nic user,hostfwd=tcp:127.0.0.1:7722-:22 -display gtk \
-usb \
-device usb-host,vendorid=0x2c7c,productid=0x0125 \
-device usb-host,vendorid=0x13d3,productid=0x3346 \
-monitor stdio

Modems from Pine64 Devkits work with ofono: