So I ran my Franklin USB evdo card through a usb hub and into my N810. I created this script for setting up the hardware.(I stole most of it from the linux how-to)
Nokia-N810-42-19:/lib/modules/2.6.21-omap1/extra# cat evdo.sh
#!/bin/sh
echo -e "\033[32mTurn on USB Host Mode\033[0m"
echo host> /sys/devices/platform/musb_hdrc/mode
# usb : acm
echo -e "\033[32mMake Modem Device\033[0m"
for i in `seq 0 2` ; do
mknod /dev/ttyACM$i c 166 $i
done
echo -e "\033[32mMake Dual Mode Device\033[0m"
for i in `seq 0 2` ; do
mknod /dev/ttyUSB$i c 188 $i
done
At this point I can use pppd to make a DUN connection to Sprint, which works fine. Now how can I make this useful? When I try to open the browser and get a web page, it opens the connection manager and asks which connection I would like to use. Is there a way to make the connection manager dial using pppd or specify /dev/ttyUSB0 as a modem?
Thanks
This link helped. Not quite what i was looking to do but, it works!
Nokia-N810-42-19:/lib/modules/2.6.21-omap1/extra# cat evdo.sh
#!/bin/sh
echo -e "\033[32mTurn on USB Host Mode\033[0m"
echo host> /sys/devices/platform/musb_hdrc/mode
# usb : acm
echo -e "\033[32mMake Modem Device\033[0m"
for i in `seq 0 2` ; do
mknod /dev/ttyACM$i c 166 $i
done
echo -e "\033[32mMake Dual Mode Device\033[0m"
for i in `seq 0 2` ; do
mknod /dev/ttyUSB$i c 188 $i
done
echo -e "\033[32mMake driver rule\033[0m"
/sbin/insmod usbserial.ko vendor=0x16d8 product=0x5553
At this point I can use pppd to make a DUN connection to Sprint, which works fine. Now how can I make this useful? When I try to open the browser and get a web page, it opens the connection manager and asks which connection I would like to use. Is there a way to make the connection manager dial using pppd or specify /dev/ttyUSB0 as a modem?
Thanks
This link helped. Not quite what i was looking to do but, it works!
http://www.mail-archive.com/maemo-us.../msg09338.html
Last edited by fscker; 2008-06-07 at 19:35. Reason: found answer