How would I make this work in RELENG_7

Alexander Motin mav at FreeBSD.org
Sat Dec 22 16:39:59 PST 2007


Hi.

Sam Fourman Jr. wrote:
> I have a PDA smart phone that I would like to use as a wireless modem
> on my laptop
> 
> someone from OpenBSD helped me get it committed to OpenBSD 's Tree
> 
> would someone help me with a similar patch for FreeBSD
> 
> here is an old post that I made
> http://www.nabble.com/Alltel-PPC6700-Wireless-Modem-td12491547.html

I have added my HTC Prophet PDA some time ago unto uipaq driver and it 
seems like working except there is no WM6 support in palm/synce version 
present in ports, so I had to build recent version by myself.

I have made a patch adding your device ID into uipaq driver alike 
OpenBSD one. But I am not sure should this device be supported with 
uipaq or umodem driver. umodem driver looks much more powerful, but I 
have nothing to test it, as my WM6 does not provides USB modem support. 
Could you try it also?

-- 
Alexander Motin
-------------- next part --------------
--- usbdevs.prev	2007-12-11 08:41:38.000000000 +0200
+++ usbdevs	2007-12-23 01:13:13.000000000 +0200
@@ -1382,6 +1382,7 @@
 product HP2 C500		0x6002	PhotoSmart C500
 
 /* HTC products */
+product HTC MODEM		0x00cf	USB Modem 
 product HTC SMARTPHONE		0x0a51	SmartPhone USB Sync
 
 /* HUAWEI products */
--- uipaq.c.prev	2007-10-22 11:28:24.000000000 +0300
+++ uipaq.c	2007-12-23 01:12:51.000000000 +0200
@@ -123,6 +123,7 @@
 	{{ USB_VENDOR_HP, USB_PRODUCT_HP_2215 }, 0 },
 	{{ USB_VENDOR_HP, USB_PRODUCT_HP_568J }, 0},
 	{{ USB_VENDOR_HTC, USB_PRODUCT_HTC_SMARTPHONE }, 0},
+	{{ USB_VENDOR_HTC, USB_PRODUCT_HTC_MODEM }, 0},
 	{{ USB_VENDOR_COMPAQ, USB_PRODUCT_COMPAQ_IPAQPOCKETPC } , 0},
 	{{ USB_VENDOR_CASIO, USB_PRODUCT_CASIO_BE300 } , 0},
 	{{ USB_VENDOR_SHARP, USB_PRODUCT_SHARP_WZERO3ES }, 0},


More information about the freebsd-hackers mailing list