Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 23 Dec 2007 01:39:54 +0200
From:      Alexander Motin <mav@FreeBSD.org>
To:        "Sam Fourman Jr." <sfourman@gmail.com>
Cc:        freebsd-hackers@freebsd.org
Subject:   Re: How would I make this work in RELENG_7
Message-ID:  <476DA04A.9080907@FreeBSD.org>
In-Reply-To: <1198275838.00846034.1198264805@10.7.7.3>
References:  <1198275838.00846034.1198264805@10.7.7.3>

next in thread | previous in thread | raw e-mail | index | archive | help
This is a multi-part message in MIME format.
--------------090200010006050600060107
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit

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

--------------090200010006050600060107
Content-Type: text/plain;
 name="htc_modem.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="htc_modem.patch"

--- 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},

--------------090200010006050600060107--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?476DA04A.9080907>