From owner-freebsd-current@FreeBSD.ORG Fri Dec 11 12:22:39 2009 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9B091106568B; Fri, 11 Dec 2009 12:22:38 +0000 (UTC) (envelope-from misho@aitbg.com) Received: from mail.aitbg.com (fire.aitbg.com [95.158.168.150]) by mx1.freebsd.org (Postfix) with ESMTP id 460898FC12; Fri, 11 Dec 2009 12:22:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.aitbg.com (Postfix) with ESMTP id 145EC19C26; Fri, 11 Dec 2009 14:03:04 +0200 (EET) X-Virus-Scanned: amavisd-new at aitbg.com Received: from mail.aitbg.com ([127.0.0.1]) by localhost (mail.aitbg.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id fPNKh463xDTV; Fri, 11 Dec 2009 14:03:01 +0200 (EET) Received: from smurf.insecurebg.org (unknown [212.116.129.162]) by mail.aitbg.com (Postfix) with ESMTPSA id 1E79019C24; Fri, 11 Dec 2009 14:03:01 +0200 (EET) Date: Fri, 11 Dec 2009 14:01:44 +0200 From: Michael Pounov To: current@freebsd.org, n_hibma@freebsd.org, thompsa@freebsd.org Message-Id: <20091211140144.47631a3a.misho@aitbg.com> Organization: AITNET ltd X-Mailer: Sylpheed 2.7.1 (GTK+ 2.16.5; i386-portbld-freebsd8.0) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Multipart=_Fri__11_Dec_2009_14_01_44_+0200_0KQPD=Cuvh9U3ECi" Cc: Subject: [patch] for Mtel-vodafone 3g usb stick ZTE X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Dec 2009 12:22:39 -0000 This is a multi-part message in MIME format. --Multipart=_Fri__11_Dec_2009_14_01_44_+0200_0KQPD=Cuvh9U3ECi Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Hi, I am sending a patch that adds support for Mtel-vodafone 3G USB stick ZTE-K3565-Z Comments welcome! -- M.Punov --------------------- AITNET - Sofia/Bulgaria - Software & Network Solutions (+359) 888 73 73 58;(+359) 2 402 4000 --Multipart=_Fri__11_Dec_2009_14_01_44_+0200_0KQPD=Cuvh9U3ECi Content-Type: text/x-diff; name="usb_3g_zte_vodafone.patch" Content-Disposition: attachment; filename="usb_3g_zte_vodafone.patch" Content-Transfer-Encoding: 7bit Index: usbdevs =================================================================== RCS file: /home/ncvs/src/sys/dev/usb/usbdevs,v retrieving revision 1.428 diff -u -r1.428 usbdevs --- usbdevs 11 Dec 2009 02:44:15 -0000 1.428 +++ usbdevs 11 Dec 2009 08:46:59 -0000 @@ -2085,6 +2085,7 @@ product QUALCOMM CDMA_MSM 0x6000 CDMA Technologies MSM phone product QUALCOMM2 RWT_FCT 0x3100 RWT FCT-CDMA 2000 1xRTT modem product QUALCOMM2 CDMA_MSM 0x3196 CDMA Technologies MSM modem +product QUALCOMMINC CDMA_ZTE 0x0052 CDMA Technologies MSM modem product QUALCOMMINC CDMA_MSM 0x0001 CDMA Technologies MSM modem product QUALCOMMINC ZTE_STOR 0x2000 USB ZTE Storage product QUALCOMMINC AC8700 0xfffe CDMA 1xEVDO USB modem Index: serial/u3g.c =================================================================== RCS file: /home/ncvs/src/sys/dev/usb/serial/u3g.c,v retrieving revision 1.24 diff -u -r1.24 u3g.c --- serial/u3g.c 11 Dec 2009 00:57:30 -0000 1.24 +++ serial/u3g.c 11 Dec 2009 08:47:00 -0000 @@ -190,6 +190,7 @@ /* OEM: Qualcomm, Inc. */ U3G_DEV(QUALCOMMINC, ZTE_STOR, U3GFL_SCSI_EJECT), U3G_DEV(QUALCOMMINC, CDMA_MSM, U3GFL_SCSI_EJECT), + U3G_DEV(QUALCOMMINC, CDMA_ZTE, U3GFL_SCSI_EJECT), /* OEM: Merlin */ U3G_DEV(MERLIN, V620, 0), /* OEM: Novatel */ --Multipart=_Fri__11_Dec_2009_14_01_44_+0200_0KQPD=Cuvh9U3ECi--