From owner-freebsd-usb@FreeBSD.ORG Sun Sep 13 13:07:41 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 92EE2106568D; Sun, 13 Sep 2009 13:07:41 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe08.swip.net [212.247.154.225]) by mx1.freebsd.org (Postfix) with ESMTP id 97B2D8FC1C; Sun, 13 Sep 2009 13:07:40 +0000 (UTC) X-Cloudmark-Score: 0.000000 [] X-Cloudmark-Analysis: v=1.0 c=1 a=uRDWFtAGNAUA:10 a=MnI1ikcADjEx7bvsp0jZvQ==:17 a=OdR5sfXFAAAA:8 a=p-rrk8AWME1gHXKeQOwA:9 a=8IJOkYUq3JCxaVm2HW4A:7 a=OXd9ziAfKT4W-TXb_9WTRldJf8kA:4 Received: from [188.126.201.140] (account mc467741@c2i.net HELO laptop.adsl.tele2.no) by mailfe08.swip.net (CommuniGate Pro SMTP 5.2.13) with ESMTPA id 1300503531; Sun, 13 Sep 2009 15:07:38 +0200 From: Hans Petter Selasky To: freebsd-usb@freebsd.org Date: Sun, 13 Sep 2009 15:08:01 +0200 User-Agent: KMail/1.11.4 (FreeBSD/9.0-CURRENT; KDE/4.2.4; i386; ; ) References: <20090908201713.GD41185@e.0x20.net> <1e31c7980909130516g1b3cb9fn5df77c23ec072413@mail.gmail.com> In-Reply-To: <1e31c7980909130516g1b3cb9fn5df77c23ec072413@mail.gmail.com> X-Face: (%:6u[ldzJ`0qjD7sCkfdMmD*RxpO< =?iso-8859-1?q?Q0yAl=7E=3F=60=27F=3FjDVb=5DE6TQ7=27=23h-VlLs=7Dk/=0A=09?=(yxg(p!IL.`#ng"%`BMrham7%UK,}VH\wUOm=^>wEEQ+KWt[{J#x6ow~JO:,zwp.(t; @ =?iso-8859-1?q?Aq=0A=09=3A4=3A=26nFCgDb8=5B3oIeTb=5E=27?=",; u{5{}C9>"PuY\)!=#\u9SSM-nz8+SR~B\!qBv MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200909131508.05025.hselasky@c2i.net> Cc: luigi@freebsd.org, freebsd-current , lars.engels@0x20.net, Florent Thoumie Subject: Re: CFH: fix multimedia/pwcbsd with usb2 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, 13 Sep 2009 13:07:41 -0000 On Sunday 13 September 2009 14:16:10 Vinicius Abrahao wrote: > Thanks Florent, > > That's it for sure. I recompile my kernel yesterday and now pwcbsd is > loading normally. > Therefore, now I see that pwc is the wrong driver for me. My webcam is > a Philips SPC500NC. > ID 093a:2603 Pixart Imaging, Inc. > > At Google I found that linux-gspca-kmod is the right driver for me. > But this seen broken as > pwcbsd was in the past. Hi, The closes you will currently get is: svn --username anonsvn --password anonsvn \ checkout svn://svn.turbocat.net/i4b/trunk/usbcam/ulinux As root: make fetch make patch make You manually have to patch: ee libv4l/v4l2-apps/libv4l/libv4lconvert/control/libv4lcontrol.c control/libv4lcontrol.c: In function 'v4lcontrol_vidioc_queryctrl': control/libv4lcontrol.c:586: error: '__u32' undeclared (first use in this function) control/libv4lcontrol.c:586: error: (Each undeclared identifier is reported only once control/libv4lcontrol.c:586: error: for each function it appears in.) control/libv4lcontrol.c:586: error: expected ';' before 'orig_id' control/libv4lcontrol.c:600: error: 'orig_id' undeclared (first use in this function) __u32 to uint32_t In the end: cd pwcview ./pwcview Should bring your webcam right up in userland though. --HPS