From owner-freebsd-usb@FreeBSD.ORG Sun Nov 27 15:29:37 2005 Return-Path: X-Original-To: freebsd-usb@freebsd.org Delivered-To: freebsd-usb@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC4BF16A41F for ; Sun, 27 Nov 2005 15:29:37 +0000 (GMT) (envelope-from flag@longino.wired.org) Received: from mail.oltrelinux.com (krisma.oltrelinux.com [194.242.226.43]) by mx1.FreeBSD.org (Postfix) with ESMTP id C02BD43D7E for ; Sun, 27 Nov 2005 15:29:24 +0000 (GMT) (envelope-from flag@longino.wired.org) Received: from longino.wired.org (ip-79-185.sn1.eutelia.it [62.94.79.185]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.oltrelinux.com (Postfix) with ESMTP id 1F33311AE58 for ; Sun, 27 Nov 2005 16:29:16 +0100 (CET) Received: from longino.wired.org (localhost.wired.org [127.0.0.1]) by longino.wired.org (8.13.4/8.13.4) with ESMTP id jARFT7Nq000987 for ; Sun, 27 Nov 2005 16:29:07 +0100 (CET) (envelope-from flag@longino.wired.org) Received: (from flag@localhost) by longino.wired.org (8.13.4/8.13.4/Submit) id jARFT7Y8000986 for freebsd-usb@freebsd.org; Sun, 27 Nov 2005 16:29:07 +0100 (CET) (envelope-from flag) Date: Sun, 27 Nov 2005 16:29:07 +0100 From: Paolo Pisati To: FreeBSD_Usb Message-ID: <20051127152907.GA973@tin.it> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="h31gzZEtNLTqOjlF" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at krisma.oltrelinux.com Subject: [patch] Tapwave Zodiac PDA support X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Nov 2005 15:29:37 -0000 --h31gzZEtNLTqOjlF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, attached are the product and vendor id for usbdevs and uvisor.c. It still doesn't work, but that will be the subject of another mail... :) -- Paolo --h31gzZEtNLTqOjlF Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="usbdevs.patch" *** usbdevs.orig Sat Nov 26 21:04:24 2005 --- usbdevs Sat Nov 26 21:07:31 2005 *************** *** 536,541 **** --- 536,542 ---- vendor SITECOM 0x6189 Sitecom vendor INTEL 0x8086 Intel vendor HP2 0xf003 Hewlett Packard + vendor TAPWAVE 0x12EF Tapwave /* * List of known products. Grouped by vendor. *************** *** 1498,1503 **** --- 1499,1507 ---- /* Taugagreining products */ product TAUGA CAMERAMATE 0x0005 CameraMate (DPCM_USB) + + /* Tapwave products */ + product TAPWAVE ZODIAC 0x0100 Zodiac /* TDK products */ product TDK UPA9664 0x0115 USB-PDC Adapter UPA9664 --h31gzZEtNLTqOjlF Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="uvisor.patch" *** uvisor.c.orig Sat Nov 26 21:08:11 2005 --- uvisor.c Sat Nov 26 20:50:07 2005 *************** *** 241,246 **** --- 241,247 ---- {{ USB_VENDOR_SONY, USB_PRODUCT_SONY_CLIE_S360 }, PALM4 }, {{ USB_VENDOR_SONY, USB_PRODUCT_SONY_CLIE_NX60 }, PALM4 }, {{ USB_VENDOR_SONY, USB_PRODUCT_SONY_CLIE_35 }, PALM35 }, + {{ USB_VENDOR_TAPWAVE, USB_PRODUCT_TAPWAVE_ZODIAC }, PALM4 }, /* {{ USB_VENDOR_SONY, USB_PRODUCT_SONY_CLIE_25 }, PALM4 },*/ }; #define uvisor_lookup(v, p) ((const struct uvisor_type *)usb_lookup(uvisor_devs, v, p)) --h31gzZEtNLTqOjlF--