Hi pander,<br><br>First, you need to load the ppp modules<br><pre>echo ppp-generic &gt; /etc/modutils/ppp-generic<br>update-modules<br></pre><br>For me the easiest way to connect and disconnect to my GPRS provider (<a href="http://mmsbouygtel.com">mmsbouygtel.com</a>) is to load theses scripts using dbus commands:<br>
<br>To connect (you must chmod +x the script, and replace mygprs_address by yours, e.g <a href="http://mmsbouygtel.com">mmsbouygtel.com</a> for me; the x x at the end must be replaced by login password if you need them.)<br>
<pre>#!/bin/sh<br>mdbus -s org.freesmartphone.ogsmd /org/freesmartphone/GSM/Device org.freesmartphone.GSM.PDP.ActivateContext mygprs_address x x<br><br></pre>To disconnect, just use (after chmod +x )<br><pre>#!/bin/sh<br>
#gprsoff<br>mdbus -s org.freesmartphone.ogsmd /org/freesmartphone/GSM/Device org.freesmartphone.GSM.PDP.DeactivateContext<br></pre><br><br><div class="gmail_quote">2009/3/16 Pander <span dir="ltr">&lt;<a href="mailto:pander@users.sourceforge.net">pander@users.sourceforge.net</a>&gt;</span><br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Hi all,<br>
<br>
Many information is available on GPRS but the things I&#39;ve tested scripts<br>
from the Wiki were probably outdated, or I used them wrongly because I<br>
was/am in the woods on debugging or tracing GPRS software. So, ...<br>
<br>
How can one configure GPRS on SHR (latest testing). I&#39;m willing to make<br>
good and tested documentation for the Wiki if someone can tell me how to<br>
get started and what to do exactly plus describing how to test each step.<br>
<br>
Also, what will happen if you have network via usb, wifi and GPRS at the<br>
same time? Will SHR be able to cope with all that or do you as a user<br>
should avoid such a situation for now? In which order will the network<br>
connection be selected?<br>
<br>
Thanks,<br>
<br>
Pander<br>
<br>
_______________________________________________<br>
Openmoko community mailing list<br>
<a href="mailto:community@lists.openmoko.org">community@lists.openmoko.org</a><br>
<a href="http://lists.openmoko.org/mailman/listinfo/community" target="_blank">http://lists.openmoko.org/mailman/listinfo/community</a><br>
</blockquote></div><br>