From owner-freebsd-multimedia@FreeBSD.ORG Sun Nov 2 09:59:23 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0BCB16A4CE for ; Sun, 2 Nov 2003 09:59:23 -0800 (PST) Received: from mail.gmx.net (pop.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id D370743FA3 for ; Sun, 2 Nov 2003 09:59:20 -0800 (PST) (envelope-from pcc@gmx.net) Received: (qmail 16854 invoked by uid 0); 2 Nov 2003 17:59:19 -0000 Received: from 217.227.151.13 by www28.gmx.net with HTTP; Sun, 2 Nov 2003 18:59:18 +0100 (MET) Date: Sun, 2 Nov 2003 18:59:18 +0100 (MET) From: "Peter Cornelius" To: FreeBSD-Multimedia@FreeBSD.ORG MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="========GMXBoundary151621067795958" X-Priority: 3 (Normal) X-Authenticated: #491680 Message-ID: <15162.1067795958@www28.gmx.net> X-Mailer: WWW-Mail 1.6 (Global Message Exchange) X-Flags: 0001 X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Help sought for new nvtv (NVidia TV-Out) port (was: ? getopt_long(), iopl() and ioperm() ?) X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 02 Nov 2003 17:59:24 -0000 This is a MIME encapsulated multipart message - please use a MIME-compliant e-mail program to open it. Dies ist eine mehrteilige Nachricht im MIME-Format - bitte verwenden Sie zum Lesen ein MIME-konformes Mailprogramm. --========GMXBoundary151621067795958 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit [follow-ups please to FreeBSD-Multimedia and Cc: to me, for the time being. - Thanks!] Hi there, I have started to fiddle with a program called nvtv which supposedly makes the tv-out on my graphics card work (an nVidia Corporation NV20 [GeForce3 Ti200]), and possibly some other NVidia-based cards, too. However, as it turns out, odds are against me and my (very) limited programming abilities; I have the bugger on my table for several weeks now without making real progress. To a certain extent, this is also due to the workload I currently have from the hand that feeds me. Therefore, I have decided to make a preliminary port and start to look for someone who knows more & better than I do. Please find enclosed a tar ball (relative to /usr/ ports) of the port skeleton I made. To build, it needs a modified version of the pciutils port as it requires the pci.h headers and the libpci.a library. There is a diff against pciutils-2.1.11's Makefile below (I took the freedom to label it PORTREVISION=1 ;-)). The preliminary port apparently installs and deinstalls ok, but it has a good lot of pecularities and todos which I also list and discuss below. So, if you wish to help, it is very much so appreciated. Please be patient with me, however, as I probably only have time at weekends for some time to come. 8-S Keep me Cc'd if urgent ;-) I dig into the digest otherwise... Please also be advised that this program may still be very unstable, crash your box, burn your video and cause data loss, make your wife go away, etc., so understand that you play with it at your own risk. Finally, my special thanks go to the people on the Bcc list for providing hints, help and/or other support on the way here. Thank you, folks! Thanks again and all the best, Peter. --- --- --- Here is the patch to pciutils-2.1.11's Makefile (sorry, cut&paste, you may have to replace some spaces with tabs 8-S): $ diff Makefile Makefile.orig 10d9 < PORTREVISION= 1 44,49c43 < # This makes nvtv compile under FreeBSD: < @${INSTALL_DATA} ${WRKSRC}/lib/libpci.a ${PREFIX}/lib < @${MKDIR} ${PREFIX}/include/pci < @${INSTALL_DATA} ${WRKSRC}/lib/pci.h ${PREFIX}/include/pci < @${INSTALL_DATA} ${WRKSRC}/lib/config.h ${PREFIX}/include/pci < @${INSTALL_DATA} ${WRKSRC}/lib/header.h ${PREFIX}/include/pci --- > $ diff pkg-plist pkg-plist.orig 5,9d4 < lib/libpci.a < @dirrm include/pci < include/pci/pci.h < include/pci/config.h < include/pci/header.h --- --- --- Here's a list of issues I have with my attached port skeleton. Most of these are included as todos in my Makefile. I include some remarks further below. (i) Currently, nvtv is 'untested' (ii) Unknown/unsure whether to add nvidia-drivers dependency or not (iii) Find bsd replacement for iopl() and ioperm() (iv) Fix port to honour MANx (v) Fix configure/configure.in to properly configure gtk in (vi) Fix port to install properly named binaries/manpages (see pkg-plist) (vii) Clear up handling of different gtk versions (viii) Write pkg-descr. --- --- --- Here's the above list with a couple of cents of my thoughts about these. (i) Currently, nvtv is 'untested' At this point, I have not been able to successfully use my tv-out, because apparently my card's Philips SAA7108E is not detected properly. This may or may not be a bug in nvtv, and I already have loose contact to the author of it about that matter, so please let me know if you have or have not success with that chip (or any other). (ii) Unknown/unsure whether to add nvidia-drivers dependency or not I would not expect any effect, but as I currently can't properly test, please do check the -N/--nvdev option if you have a chance (and the confidence ;-). (iii) Find bsd replacement for iopl() and ioperm() There is an occurrence of either one in the code once. I don't know what they do and even less whether there's an appropriate replacement for them on FreeBSD. Since I simply commented these out in order to be able to build (see the patch file in files/ patch-src___card_direct.c.aa), owners of Vodoo 3 and Intel cards currently will have no joy with this nvtv port. (iv) Fix port to honour MANx Should be minor, but must probably fix the binary naming issue first (see below). Don't forget to amend pkg-plist accordingly, as this currently catches the man pages. (v) Fix configure/configure.in to properly configure gtk in To me, this smells like a problem inherited from the configure.in/.ac files. That's a terrain in which I am *absolutely* lost, so please do help, thank you. In any case, currently configure is broken and 'forgets' to add the gtk version to ${WRKSRC}/src/ config.h (if you manually fix it in there, the gui can be built and used, though). (vi) Fix port to install properly named binaries/manpages (see pkg-plist) I assume, though not investigated, that this also is a configure issue. Currently, e. g. i386-portbld-freebsd4.9-nvtv is used... (sigh...) (vii) Clear up handling of different gtk versions One could also stick just with gtk2 and a cli interface, or even only gtk2 once it works. Since it's an X thingy, a gui-only version is OK with me (not thinking of the svgalib-mplayer fetishists ;-)) (viii) Write pkg-descr. ...it has just not been done yet. --- Original message follows --- > > > # pcc@gmx.net / 2003-10-19 01:59:45 +0200: > > > > I'm hacking at a piece of code that I want to turn into a port. It's > >from > > > > Linux and uses libpci and some other 'strange' functions. > > > > While I think that I've managed to modify the libpci port to install > the > > > > required lib, I'm more or less lost at getopt_long() which I > > > > assume is in the libgnugetopt port. However, for some reason, even > if > I > > > > include it explicitly (#include "/usr/local/include/getopt.h"), I > > > > run into problems. Please note that I'm not a programmer at all, so > it's > > > > very much hacking along, so I may look for someone patient > > > > to bear with me ;-) But I am willing to learn. > > > > > > AFAICT you need to tell the compiler about the library. The rule > in > > > your Makefile needs to have "-L /usr/local/lib -lgnugetopt". > > Thanks for that, Roman, I did so and got some sort of binary to play with. > For a port, however, I think I must > dig in deeper, or rather climb higher for that matter -- autoconf & co. > are > used for making the makefiles, so I > probably must fix it there somewhere there. If it was for plain makefiles, > I > might not have the problems I see, > but this is something entirely new for me ;-) > > > The best way is to set USE_GETOPT_LONG=yes in your port Makefile. > > > > # USE_GETOPT_LONG - Says that the port uses getopt_long. If OSVERSION > > # less than 500041, automatically adds > devel/libgnugeopt > > > # to LIB_DEPENDS, and pass adjusted values of > > # CPPFLAGS and LDFLAGS in CONFIGURE_ENV. > > # Default: not set. > > Thanks, Dan, I'm not that far yet. As I said above, I'm still trying to > understand what is required by nvtv in > the first place. There still seem to be bugs in there, at least with my > card. I have contact with the author who > is willing to help as long as I can build and test. Which I sort of > achieved > now with your help and the of a > friend. Anyways, as I must have overread that comment in bsd.ports.mk, > thanks for the pointer. > > In any case, if it makes to be a port, I'll proceed as suggested. > > So, thanks for the help and watch ports@ if it ever makes it there ;-)==) > > All the best, > > Peter. > > Btw, iopl() and ioperm() I currently simply get around by uncommenting > them. > Which probably makes those > sections unuseable for the cards covered there, so I would not mind a hint > for these by any other reader ;-) -- NEU FÜR ALLE - GMX MediaCenter - für Fotos, Musik, Dateien... Fotoalbum, File Sharing, MMS, Multimedia-Gruß, GMX FotoService Jetzt kostenlos anmelden unter http://www.gmx.net +++ GMX - die erste Adresse für Mail, Message, More! +++ --========GMXBoundary151621067795958-- From owner-freebsd-multimedia@FreeBSD.ORG Mon Nov 3 17:37:58 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8845E16A4CE for ; Mon, 3 Nov 2003 17:37:58 -0800 (PST) Received: from mx0.d.umn.edu (mx0.d.umn.edu [131.212.109.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id A98BE43F3F for ; Mon, 3 Nov 2003 17:37:57 -0800 (PST) (envelope-from schu1218@d.umn.edu) Received: from mail.d.umn.edu (mail.d.umn.edu [131.212.109.2]) by mx0.d.umn.edu (8.12.9/8.12.9) with ESMTP id hA41btfB008265 for ; Mon, 3 Nov 2003 19:37:56 -0600 (CST) Received: from d.umn.edu (umd156-10.d.umn.edu [131.212.156.10]) by mail.d.umn.edu (8.12.9/8.12.9) with ESMTP id hA41aE03029470 for ; Mon, 3 Nov 2003 19:36:14 -0600 (CST) Message-ID: <3FA6FBDA.1060306@d.umn.edu> Date: Mon, 03 Nov 2003 19:07:38 -0600 From: Thad Schulz User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.5) Gecko/20031103 Thunderbird/0.3 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-multimedia@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Ogle Sound Problems X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Nov 2003 01:37:58 -0000 I have had the same problem for the past year with three different sound cards a cmi8738, a Sound Blaster Live, and the Sound Blaster Audigy. Here is the term output of ogle libdvdread: Using libdvdcss version 1.2.8 for DVD access libdvdread: Using libdvdcss version 1.2.8 for DVD access libdvdread: Attempting to retrieve all CSS keys libdvdread: This can take a _long_ time, please be patient libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x00036f47 libdvdread: Elapsed time 0 libdvdread: Get key for /VIDEO_TS/VTS_02_0.VOB at 0x00083f42 libdvdread: Elapsed time 0 libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x00095b04 libdvdread: Elapsed time 0 libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x00357b55 libdvdread: Elapsed time 0 libdvdread: Found 3 VTS's libdvdread: Elapsed time 0 WARNING[ogle_mpeg_vs]: B-frame before forward ref frame Using djbfft for IMDCT transform WARNING[ogle_mpeg_vs]: B-frame before forward ref frame Xscreensaver not running. !###@display: frame rate: 0.000 fps @@SNDCTL_DSP_SETFRAGMENT: Invalid argument SNDCTL_DSP_SETFMT: Invalid argument FATAL[ogle_audio]: ogle_ao_init: -----!!!!!!!!#!!###!!#!!#!! I have had the same problem on all of my sound cards on Stable and current, and if I find a title on a dvd where this problem surfaces I can go to another title and then come back and the problem seems to go away. Also when boot into linux is works fine. Anyway I was wondering if there is some sort of work around for this problem. I would really like to hear it. Thad Schulz From owner-freebsd-multimedia@FreeBSD.ORG Tue Nov 4 09:14:00 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8AD2916A4CE for ; Tue, 4 Nov 2003 09:14:00 -0800 (PST) Received: from spf13.us4.outblaze.com (205-158-62-67.outblaze.com [205.158.62.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id BEE6243FE9 for ; Tue, 4 Nov 2003 09:13:59 -0800 (PST) (envelope-from pseniura@techie.com) Received: from 205-158-62-68.outblaze.com (205-158-62-68.outblaze.com [205.158.62.68]) by spf13.us4.outblaze.com (Postfix) with QMQP id 9C13B18014E5 for ; Tue, 4 Nov 2003 17:13:59 +0000 (GMT) Received: (qmail 11531 invoked from network); 4 Nov 2003 17:13:56 -0000 Received: from unknown (HELO ws1-8.us4.outblaze.com) (205.158.62.59) by 205-158-62-153.outblaze.com with SMTP; 4 Nov 2003 17:13:56 -0000 Received: (qmail 80760 invoked by uid 1001); 4 Nov 2003 17:13:55 -0000 Message-ID: <20031104171355.80758.qmail@mail.com> Content-Type: text/plain; charset="iso-8859-1" Content-Disposition: inline Content-Transfer-Encoding: 7bit MIME-Version: 1.0 X-Mailer: MIME-tools 5.41 (Entity 5.404) Received: from [192.149.244.9] by ws1-8.us4.outblaze.com with http for pseniura@techie.com; Tue, 04 Nov 2003 12:13:54 -0500 From: "Paul Seniura" To: freebsd-questions@FreeBSD.ORG, freebsd-multimedia@freebsd.org, freebsd-ports-bugs@freebsd.org, freebsd-gnome@freebsd.org Date: Tue, 04 Nov 2003 12:13:54 -0500 X-Originating-Ip: 192.149.244.9 X-Originating-Server: ws1-8.us4.outblaze.com Subject: multimedia/avifile won't compile, stopping builds of x11/gnome2 X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Nov 2003 17:14:00 -0000 I'm seeing the exact same compiler problem that bento has been showing for multimedia/avifile. This is bento's log for this app: This is stopping "portupgrade --new --recursive --upward-recursive x11/gnome2" from finishing. I have been staying current via CTM due to firewall issues here (political... don't ask ;) . I've read thru the long discussion about breaking gnome2 up into more managable separate collections of apps, but for now the gnome2 collection is the only thing portupgrade knows how to keep track of, so it is broken as far as it is concerned. Also, apparently no one else has seen this compile problem with avifile as I've searched thru every mail-list here to no avail. Please help me with this -- should I file a bug? or is there a workaround? If I file a bug, I will recommend upgrading avifile to the latest version as shown on their project site at Sourceforge, but gnome2 is broken until this is fixed. Thank you very much. -- __________________________________________________________ Sign-up for your own personalized E-mail at Mail.com http://www.mail.com/?sr=signup CareerBuilder.com has over 400,000 jobs. Be smarter about your job search http://corp.mail.com/careers From owner-freebsd-multimedia@FreeBSD.ORG Tue Nov 4 19:16:12 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40BA016A4CE for ; Tue, 4 Nov 2003 19:16:12 -0800 (PST) Received: from hotmail.com (bay2-dav17.bay2.hotmail.com [65.54.246.121]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7224843FBF for ; Tue, 4 Nov 2003 19:16:11 -0800 (PST) (envelope-from r00t_su@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Tue, 4 Nov 2003 19:16:11 -0800 Received: from 63.105.26.188 by bay2-dav17.bay2.hotmail.com with DAV; Wed, 05 Nov 2003 03:16:10 +0000 X-Originating-IP: [63.105.26.188] X-Originating-Email: [r00t_su@hotmail.com] From: "Mr. X" To: Date: Tue, 4 Nov 2003 19:15:22 -0800 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Message-ID: X-OriginalArrivalTime: 05 Nov 2003 03:16:11.0221 (UTC) FILETIME=[29980850:01C3A34B] Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: soundcard issue in fbsd 4.9stable X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Nov 2003 03:16:12 -0000 i have had this problem ever since i enabled the soundcard in the = kernel. any sound "tries" to play but skips to the end and will not play (xmms, realplayer). sort of a strange echo sound. the = card is in a sony vaio laptop model PCG-GRZ610. here is the output of vital commands: zwan# grep pcm /var/run/dmesg.boot pcm0: port 0x18c0-0x18ff,0x1c00-0x1cff irq 9 at = device 31.5 on pci0 pcm0: zwan# cat /dev/sndstat FreeBSD Audio Driver (newpcm) Installed devices: pcm0: at io 0x1c00, 0x18c0 irq 9 bufsz 16384 = (1p/1r/0v channels duplex) zwan# uname -a FreeBSD zwan.com 4.9-STABLE FreeBSD 4.9-STABLE #1: Tue Nov 4 18:25:43 = PST 2003 root@zwan.com:/usr/obj/usr/src/sys/k04-1103 i386 zwan# ls -la /dev/dsp0 /dev/dsp lrwxrwxrwx 1 root wheel 4 Nov 2 23:24 /dev/dsp -> dsp0 lrwxrwxrwx 1 root wheel 6 Nov 2 23:24 /dev/dsp0 -> dsp0.0 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++= +++++++++++++++++ i edited : /sys/dev/sound/pci/ich.c with :=20 sc->codec =3D AC97_CREATE(dev, sc, ich_ac97); if (sc->codec =3D=3D NULL) goto bad; ac97_setflags(sc->codec, AC97_F_EAPD_INV); <-- added line mixer_init(dev, ac97_getmixerclass(), sc->codec); -------------------------------------------------------------------------= ------------------------------ then did buildworld / kernel, install kernel, single user mode .. = installworld and mergemaster -p ...before i added the above line in /sys/dev/sound/pci/ich.c=20 i used to get this error repeating with grep :=20 # grep pcm /var/run/dmesg.boot pcm0: port 0x18c0-0x18ff,0x1c00-0x1cff irq 9 at = device 31.5 on pci0 pcm0: pcm0:play:0: play interrupt timeout, channel dead pcm0:play:0: play interrupt timeout, channel dead pcm0:play:0: play interrupt timeout, channel dead pcm0:play:0: play interrupt timeout, channel dead since i edited ich.c with the new line .,. i do not get this error = anymore .. but i have the same effect with the sound. basically it does not work period..=20 any help would be greatly appreciated. thanks -warren .^. Light More Light .^. From owner-freebsd-multimedia@FreeBSD.ORG Tue Nov 4 19:34:29 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7CDA916A4CE for ; Tue, 4 Nov 2003 19:34:29 -0800 (PST) Received: from wally.statscout.com (wally.statscout.com [203.39.101.146]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FD0543FBF for ; Tue, 4 Nov 2003 19:34:27 -0800 (PST) (envelope-from dmc@statscout.com) Received: from tank.statscout.com (tank.statscout.com [10.1.1.108]) by wally.statscout.com (8.11.6/8.11.3av) with ESMTP id hA53YL754780 for ; Wed, 5 Nov 2003 13:34:21 +1000 (EST) (envelope-from dmc@statscout.com) Received: from tank.statscout.com (localhost.statscout.com [127.0.0.1]) by tank.statscout.com (8.12.8p1/8.12.8) with ESMTP id hA53X4Nb000296 for ; Wed, 5 Nov 2003 13:33:04 +1000 (EST) (envelope-from dmc@tank.statscout.com) Received: by tank.statscout.com (8.12.8p1/8.12.8/Submit) id hA53X3uQ000295 for freebsd-multimedia@freebsd.org; Wed, 5 Nov 2003 13:33:03 +1000 (EST) From: doug cooper Organization: Statscout To: freebsd-multimedia@freebsd.org Date: Wed, 5 Nov 2003 13:33:02 +1000 User-Agent: KMail/1.5 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200311051333.03179.dmc@statscout.com> Subject: Kmid on Freebsd 4.9 Couldn't open /dev/sequencer errors X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: dmc@statscout.com List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Nov 2003 03:34:29 -0000 Howdy I am trying to run Kmid on an out of the box install of FreeBSD 4.9. I have loaded the Maestro sound driver in /boot/defaults/loader.conf. I have tried with the KDE start setting both on and off. KDE menus "Control Center -> Sound and Multimedia->Sound System-> Start aRts Soundserver on KDE startup. Machine is a DELL latitude CPx uname -a FreeBSD 4.9-RELEASE FreeBSD 4.9-RELEASE #0: Mon Oct 27 17: 51:09 GMT 2003 root@freebsd-stable.sentex.ca:/usr/obj/usr/src/sys/GENERIC i 386 cat /dev/sndstat FreeBSD Audio Driver (newpcm) Installed devices: pcm0: at I/O port 0xd800 irq 5 (4p/0r/0v channels duplex) ls -al /dev/sequencer lrwxrwxrwx 1 root wheel 10 Nov 5 03:55 /dev/sequencer -> sequencer0 fstat | grep sequencer nothing.. But I get an error which says "Couldn't open /dev/sequencer. Probably there is another program using it. -- Doug From owner-freebsd-multimedia@FreeBSD.ORG Thu Nov 6 02:48:57 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5007E16A4CE for ; Thu, 6 Nov 2003 02:48:57 -0800 (PST) Received: from bubo.vslib.cz (bubo.vslib.cz [147.230.16.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45FB743FFB for ; Thu, 6 Nov 2003 02:48:56 -0800 (PST) (envelope-from martin.vana@vslib.cz) Received: from vanice.koleje.vslib.cz (d432b.kolej.vslib.cz [147.230.158.35]) by bubo.vslib.cz (Postfix) with SMTP id E6E9BCC0C7 for ; Thu, 6 Nov 2003 11:48:54 +0100 (CET) Date: Thu, 6 Nov 2003 11:49:54 +0100 From: Martin =?ISO-8859-2?Q?V=E1=F2a?= To: freebsd-multimedia@freebsd.org Message-Id: <20031106114954.698b89a4.martin.vana@vslib.cz> Organization: TUL X-Mailer: Sylpheed version 0.9.2 (GTK+ 1.2.10; i386-unknown-freebsd5.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: DJ mixing software X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Nov 2003 10:48:57 -0000 Hi, I mix on Native Instruments Traktor under WIN /and it is still the only reason why I still have dualboot/. I know that GDAM for linux is tool at the same /maybe higher/ level as traktor. But I can't compile it under freebsd. it ends like this: al/include/glib12 -D_THREAD_SAFE -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/gnome-xml -I/usr/X11R6/include/libglade-1.0 -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -I/usr/local/include -I/usr/X11R6/include -I/usr/local/include/gnome-xml -DGDAM_VERSION=\"0.942\" -I/usr/home/vana/gdam-0.942/include -D_GNU_SOURCE -I/usr/X11R6/include/gtk12 -I/usr/local/include/glib12 -D_THREAD_SAFE -I/usr/local/include -I/usr/X11R6/include -O2 -c gdamdsppreload.c -o gdamdsppreload.o >/dev/null 2>&1 mv -f .libs/gdamdsppreload.lo gdamdsppreload.lo /bin/sh ../../libtool --mode=link gcc -O2 -o gdamdsppreload.la -rpath /usr/local/lib/gdam -module -ldl gdamdsppreload.lo rm -fr .libs/gdamdsppreload.la .libs/gdamdsppreload.* .libs/gdamdsppreload.* expr: illegal option -- l usage: expr [-e] expression expr: illegal option -- l usage: expr [-e] expression gcc -shared gdamdsppreload.lo -ldl -lc -Wl,-soname -Wl,gdamdsppreload.so.0 -o .libs/gdamdsppreload.so.0 /usr/bin/ld: cannot find -ldl gmake[2]: *** [gdamdsppreload.la] Error 1 gmake[2]: Leaving directory `/usr/home/vana/gdam-0.942/server/helper' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/home/vana/gdam-0.942/server' gmake: *** [all-recursive] Error 1 or if there is a tutorial how to make traktor works under wine ... Martin From owner-freebsd-multimedia@FreeBSD.ORG Thu Nov 6 03:21:33 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7CDB316A4CE for ; Thu, 6 Nov 2003 03:21:33 -0800 (PST) Received: from mailout07.sul.t-online.com (mailout07.sul.t-online.com [194.25.134.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7657D43FEA for ; Thu, 6 Nov 2003 03:21:32 -0800 (PST) (envelope-from Alexander@Leidinger.net) Received: from fwd07.aul.t-online.de by mailout07.sul.t-online.com with smtp id 1AHiCh-00047P-0A; Thu, 06 Nov 2003 12:21:31 +0100 Received: from Andro-Beta.Leidinger.net (Gh9zdTZroevalcSbGgHvIHPeziv79s8-hHqGR3YVPK1nfuOiFXZmEu@[80.131.118.194]) by fmrl07.sul.t-online.com with esmtp id 1AHiCX-0qolRA0; Thu, 6 Nov 2003 12:21:21 +0100 Received: from Magelan.Leidinger.net (Magellan [192.168.1.1]) hA6BLKsm089925 for ; Thu, 6 Nov 2003 12:21:20 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: from Magelan.Leidinger.net (netchild@localhost [127.0.0.1]) hA6BLXkQ014924 for ; Thu, 6 Nov 2003 12:21:33 +0100 (CET) (envelope-from Alexander@Leidinger.net) Date: Thu, 6 Nov 2003 12:21:33 +0100 From: Alexander Leidinger To: freebsd-multimedia@freebsd.org Message-Id: <20031106122133.1364f141.Alexander@Leidinger.net> In-Reply-To: <20031106114954.698b89a4.martin.vana@vslib.cz> References: <20031106114954.698b89a4.martin.vana@vslib.cz> X-Mailer: Sylpheed version 0.9.6claws (GTK+ 1.2.10; i386-portbld-freebsd5.1) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Seen: false X-ID: Gh9zdTZroevalcSbGgHvIHPeziv79s8-hHqGR3YVPK1nfuOiFXZmEu@t-dialin.net Subject: Re: DJ mixing software X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Nov 2003 11:21:33 -0000 On Thu, 6 Nov 2003 11:49:54 +0100 Martin V=E1=F2a wrote: > expr: illegal option -- l > usage: expr [-e] expression > expr: illegal option -- l > usage: expr [-e] expression The FreeBSD version of "expr" doesn't know the "-l" option, try to find out what it is supposed to do and work around it. > gcc -shared gdamdsppreload.lo -ldl -lc -Wl,-soname -Wl,gdamdsppreload.= so.0 -o .libs/gdamdsppreload.so.0 > /usr/bin/ld: cannot find -ldl You don't need -ldl on FreeBSD, just get rid of this part of the options. Bye, Alexander. --=20 The best things in life are free, but the expensive ones are still worth a look. http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint =3D C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 From owner-freebsd-multimedia@FreeBSD.ORG Thu Nov 6 06:46:09 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1430616A4CE for ; Thu, 6 Nov 2003 06:46:09 -0800 (PST) Received: from f2node23.rhrz.uni-bonn.de (node23.rhrz.uni-bonn.de [131.220.14.223]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54E8E43FAF for ; Thu, 6 Nov 2003 06:46:07 -0800 (PST) (envelope-from uzs106@uni-bonn.de) Received: from uni-bonn.de (cip937.jura.uni-bonn.de [131.220.46.37]) PAA64366; Thu, 6 Nov 2003 15:45:47 +0100 Message-ID: <3FAA5E99.E67FB26E@uni-bonn.de> Date: Thu, 06 Nov 2003 15:45:45 +0100 From: "uzs106@uni-bonn.de" X-Mailer: Mozilla 4.78 [de] (Win95; U) X-Accept-Language: de MIME-Version: 1.0 To: Alexander Leidinger References: <20031106114954.698b89a4.martin.vana@vslib.cz> <20031106122133.1364f141.Alexander@Leidinger.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: freebsd-multimedia@freebsd.org Subject: Re: DJ mixing software X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Nov 2003 14:46:09 -0000 Hi, havent seen the whole thread, only the subject, but aube (usr/ports/audio) comes to mind. Maybe it is more than traditional mixing but worth a look anyway, So if there was any question... H. From owner-freebsd-multimedia@FreeBSD.ORG Thu Nov 6 14:21:20 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9272F16A4CE for ; Thu, 6 Nov 2003 14:21:20 -0800 (PST) Received: from web41201.mail.yahoo.com (web41201.mail.yahoo.com [66.218.93.34]) by mx1.FreeBSD.org (Postfix) with SMTP id 102FA43FF9 for ; Thu, 6 Nov 2003 14:21:18 -0800 (PST) (envelope-from arne_woerner@yahoo.com) Message-ID: <20031106222117.36679.qmail@web41201.mail.yahoo.com> Received: from [194.162.162.68] by web41201.mail.yahoo.com via HTTP; Thu, 06 Nov 2003 14:21:17 PST Date: Thu, 6 Nov 2003 14:21:17 -0800 (PST) From: Arne "Wörner" To: freebsd-multimedia@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: bktr / pinnacle pctv rave / does not show tv images X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Nov 2003 22:21:20 -0000 Hi! I am trying to use a Pinnacle PCTV Rave (just like a user who reported a similar problem at 2003-08-05 here). The bktr driver does not detect the tuner automatically so I fixed it by BKTR_OVERRIDE_TUNER to a Philips PAL, although I do not know which tuner they sold me (I am in Germany and I have heard that PAL is quite common here). The antenna line is working... :-) The fxtv show a black screen with a few colored pixels in the upper lines. And dtv shows a lot of funny colored chaotic pixels. Can somebody tell me what I should do to watch TV without turning my head to the TV? Thank you for your time. Bye Arne __________________________________ Do you Yahoo!? Protect your identity with Yahoo! Mail AddressGuard http://antispam.yahoo.com/whatsnewfree From owner-freebsd-multimedia@FreeBSD.ORG Thu Nov 6 14:50:28 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE92016A4CE for ; Thu, 6 Nov 2003 14:50:28 -0800 (PST) Received: from mail.speakeasy.net (mail7.speakeasy.net [216.254.0.207]) by mx1.FreeBSD.org (Postfix) with ESMTP id D04C543FB1 for ; Thu, 6 Nov 2003 14:50:27 -0800 (PST) (envelope-from jmg@hydrogen.funkthat.com) Received: (qmail 12658 invoked from network); 6 Nov 2003 22:50:27 -0000 Received: from unknown (HELO hydrogen.funkthat.com) ([69.17.45.168]) (envelope-sender ) by mail7.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 6 Nov 2003 22:50:27 -0000 Received: from hydrogen.funkthat.com (mhmdaz@localhost.funkthat.com [127.0.0.1])hA6MoQgP013279; Thu, 6 Nov 2003 14:50:26 -0800 (PST) (envelope-from jmg@hydrogen.funkthat.com) Received: (from jmg@localhost) by hydrogen.funkthat.com (8.12.10/8.12.10/Submit) id hA6MoQu7013276; Thu, 6 Nov 2003 14:50:26 -0800 (PST) Date: Thu, 6 Nov 2003 14:50:26 -0800 From: John-Mark Gurney To: Arne =?iso-8859-1?Q?W=F6rner?= Message-ID: <20031106225026.GB558@funkthat.com> Mail-Followup-To: Arne =?iso-8859-1?Q?W=F6rner?= , freebsd-multimedia@freebsd.org References: <20031106222117.36679.qmail@web41201.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20031106222117.36679.qmail@web41201.mail.yahoo.com> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 4.2-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ X-Resume: http://resnet.uoregon.edu/~gurney_j/resume.html cc: freebsd-multimedia@freebsd.org Subject: Re: bktr / pinnacle pctv rave / does not show tv images X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: John-Mark Gurney List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Nov 2003 22:50:29 -0000 Arne Wörner wrote this message on Thu, Nov 06, 2003 at 14:21 -0800: > The bktr driver does not detect the tuner automatically so I fixed it by > BKTR_OVERRIDE_TUNER to a Philips PAL, although I do not know which tuner they > sold me (I am in Germany and I have heard that PAL is quite common here). The > antenna line is working... :-) you need to pull the card out of the case, and look at the tunner, and match it up, and put in the proper override. Since you're not sure if it's a Philips or something else, this is probably your problem. If you don't override to the proper tuner, fxtv and other apps will not be able to tune the tuner to the channel you request. -- John-Mark Gurney Voice: +1 415 225 5579 "All that I will do, has been done, All that I have, has not." From owner-freebsd-multimedia@FreeBSD.ORG Thu Nov 6 15:45:07 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD37416A4CE for ; Thu, 6 Nov 2003 15:45:07 -0800 (PST) Received: from web41202.mail.yahoo.com (web41202.mail.yahoo.com [66.218.93.35]) by mx1.FreeBSD.org (Postfix) with SMTP id 1D63643F93 for ; Thu, 6 Nov 2003 15:45:07 -0800 (PST) (envelope-from arne_woerner@yahoo.com) Message-ID: <20031106234506.34252.qmail@web41202.mail.yahoo.com> Received: from [194.162.162.68] by web41202.mail.yahoo.com via HTTP; Thu, 06 Nov 2003 15:45:06 PST Date: Thu, 6 Nov 2003 15:45:06 -0800 (PST) From: Arne "Wörner" To: John-Mark Gurney In-Reply-To: <20031106225026.GB558@funkthat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: freebsd-multimedia@freebsd.org Subject: Re: bktr / pinnacle pctv rave / does not show tv images X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Nov 2003 23:45:07 -0000 --- John-Mark Gurney wrote: > Arne Wörner wrote this message on Thu, Nov 06, 2003 at 14:21 -0800: > > The bktr driver does not detect the tuner automatically so I fixed it by > > BKTR_OVERRIDE_TUNER to a Philips PAL, although I do not know which tuner > > they sold me (I am in Germany and I have heard that PAL is quite common > > here). The antenna line is working... :-) > > you need to pull the card out of the case, and look at the tunner, and > match it up, and put in the proper override. Since you're not sure > if it's a Philips or something else, this is probably your problem. If > you don't override to the proper tuner, fxtv and other apps will not > be able to tune the tuner to the channel you request. > The tuner says "Pinnacle Systems" (no PHILIPS; no TEMIC)... :-(( Pinnacle says they use a CONEXANT CN878 (but this is not the tuner; I hope this is a BROOKTREE 878). I tried both TEMIC_PAL and PHILIPS_PAL. And both do not work. I think the bktr driver does not handle the [new] "chip set" of the Pinnacle Rave as it wants to be handled... -Arne __________________________________ Do you Yahoo!? Protect your identity with Yahoo! Mail AddressGuard http://antispam.yahoo.com/whatsnewfree From owner-freebsd-multimedia@FreeBSD.ORG Thu Nov 6 16:25:46 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 471FF16A4CE for ; Thu, 6 Nov 2003 16:25:46 -0800 (PST) Received: from slash.euronet.nl (slash.euronet.nl [194.134.32.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67B8443FE9 for ; Thu, 6 Nov 2003 16:25:45 -0800 (PST) (envelope-from branko@euro.net) Received: from slash.euronet.nl (localhost [127.0.0.1]) by slash.euronet.nl (Postfix) with ESMTP id DB143D90B; Fri, 7 Nov 2003 01:25:41 +0100 (MET) To: "Arne " W rner "" In-reply-to: Your message of "Thu, 06 Nov 2003 15:45:06 PST." <20031106234506.34252.qmail@web41202.mail.yahoo.com> Date: Fri, 07 Nov 2003 01:25:41 +0100 From: Branko Lankester Message-Id: <20031107002541.DB143D90B@slash.euronet.nl> cc: freebsd-multimedia@freebsd.org Subject: Re: bktr / pinnacle pctv rave / does not show tv images X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Nov 2003 00:25:46 -0000 On Thursday November 6 (15:45 PST), Arne "W rner" wrote: >> >The tuner says "Pinnacle Systems" (no PHILIPS; no TEMIC)... :-(( Pinnacle says >they use a CONEXANT CN878 (but this is not the tuner; I hope this is a >BROOKTREE 878). You probably have the new PCTV Rave model with a Microtune tuner, this tuner is not supported by the current bktr driver, but I have some patches for this card. The patches probably need some more work, I only added support for PAL, but if you're interested, I've put them on http://www.euronet.nl/~branko/bktr-pctv-rave.diff Branko From owner-freebsd-multimedia@FreeBSD.ORG Thu Nov 6 16:25:46 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D130E16A4CE for ; Thu, 6 Nov 2003 16:25:46 -0800 (PST) Received: from mail.speakeasy.net (mail5.speakeasy.net [216.254.0.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BE0E43FF2 for ; Thu, 6 Nov 2003 16:25:43 -0800 (PST) (envelope-from jmg@hydrogen.funkthat.com) Received: (qmail 18884 invoked from network); 7 Nov 2003 00:25:42 -0000 Received: from unknown (HELO hydrogen.funkthat.com) ([69.17.45.168]) (envelope-sender ) by mail5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 7 Nov 2003 00:25:42 -0000 Received: from hydrogen.funkthat.com (azwtcf@localhost.funkthat.com [127.0.0.1])hA70PYgP061139; Thu, 6 Nov 2003 16:25:39 -0800 (PST) (envelope-from jmg@hydrogen.funkthat.com) Received: (from jmg@localhost) by hydrogen.funkthat.com (8.12.10/8.12.10/Submit) id hA70PYDd061136; Thu, 6 Nov 2003 16:25:34 -0800 (PST) Date: Thu, 6 Nov 2003 16:25:33 -0800 From: John-Mark Gurney To: Arne =?iso-8859-1?Q?W=F6rner?= Message-ID: <20031107002533.GC558@funkthat.com> Mail-Followup-To: Arne =?iso-8859-1?Q?W=F6rner?= , freebsd-multimedia@freebsd.org References: <20031106225026.GB558@funkthat.com> <20031106234506.34252.qmail@web41202.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20031106234506.34252.qmail@web41202.mail.yahoo.com> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 4.2-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ X-Resume: http://resnet.uoregon.edu/~gurney_j/resume.html cc: freebsd-multimedia@freebsd.org Subject: Re: bktr / pinnacle pctv rave / does not show tv images X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: John-Mark Gurney List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Nov 2003 00:25:46 -0000 Arne Wörner wrote this message on Thu, Nov 06, 2003 at 15:45 -0800: > --- John-Mark Gurney wrote: > > Arne Wörner wrote this message on Thu, Nov 06, 2003 at 14:21 -0800: > > > The bktr driver does not detect the tuner automatically so I fixed it by > > > BKTR_OVERRIDE_TUNER to a Philips PAL, although I do not know which tuner > > > they sold me (I am in Germany and I have heard that PAL is quite common > > > here). The antenna line is working... :-) > > > > you need to pull the card out of the case, and look at the tunner, and > > match it up, and put in the proper override. Since you're not sure > > if it's a Philips or something else, this is probably your problem. If > > you don't override to the proper tuner, fxtv and other apps will not > > be able to tune the tuner to the channel you request. > > > The tuner says "Pinnacle Systems" (no PHILIPS; no TEMIC)... :-(( Pinnacle says That is the manufacturer of the card, not the tuner... Unless they have started manufacturing tuners, but I doubt it.. > they use a CONEXANT CN878 (but this is not the tuner; I hope this is a > BROOKTREE 878). That is not the tuner, but the decoding chip that decodes the data from the tuner.. > I tried both TEMIC_PAL and PHILIPS_PAL. And both do not work. > > I think the bktr driver does not handle the [new] "chip set" of the Pinnacle > Rave as it wants to be handled... post a photo of the card some where, and maybe I can identify the tuner, but again, you need to get the manufacturer of the tuner, the metal box that has the antenna plug on it. -- John-Mark Gurney Voice: +1 415 225 5579 "All that I will do, has been done, All that I have, has not." From owner-freebsd-multimedia@FreeBSD.ORG Thu Nov 6 17:10:53 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B70616A4CE for ; Thu, 6 Nov 2003 17:10:53 -0800 (PST) Received: from web41203.mail.yahoo.com (web41203.mail.yahoo.com [66.218.93.36]) by mx1.FreeBSD.org (Postfix) with SMTP id 15AE443FF5 for ; Thu, 6 Nov 2003 17:10:53 -0800 (PST) (envelope-from arne_woerner@yahoo.com) Message-ID: <20031107011053.70798.qmail@web41203.mail.yahoo.com> Received: from [194.162.162.68] by web41203.mail.yahoo.com via HTTP; Thu, 06 Nov 2003 17:10:53 PST Date: Thu, 6 Nov 2003 17:10:53 -0800 (PST) From: Arne "Wörner" To: Branko Lankester In-Reply-To: <20031107002541.DB143D90B@slash.euronet.nl> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: freebsd-multimedia@freebsd.org cc: pdp@nl.demon.net Subject: Re: bktr / pinnacle pctv rave / does not show tv images X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Nov 2003 01:10:53 -0000 --- Branko Lankester wrote: > On Thursday November 6 (15:45 PST), Arne "W rner" wrote: > >> > >The tuner says "Pinnacle Systems" (no PHILIPS; no TEMIC)... :-(( Pinnacle > says > >they use a CONEXANT CN878 (but this is not the tuner; I hope this is a > >BROOKTREE 878). > > You probably have the new PCTV Rave model with a Microtune tuner, > this tuner is not supported by the current bktr driver, but I have > some patches for this card. The patches probably need some more > work, I only added support for PAL, but if you're interested, I've > put them on http://www.euronet.nl/~branko/bktr-pctv-rave.diff > Thank you! Your patch worked fine... (now I have rather clear TV images and TV sound on my PC screen) :-)) PAL is sufficient for me... -Arne __________________________________ Do you Yahoo!? Protect your identity with Yahoo! Mail AddressGuard http://antispam.yahoo.com/whatsnewfree From owner-freebsd-multimedia@FreeBSD.ORG Fri Nov 7 11:02:53 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2F9116A4CE for ; Fri, 7 Nov 2003 11:02:53 -0800 (PST) Received: from quynh-and-brian.org (h-69-3-155-2.MCLNVA23.covad.net [69.3.155.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC40743F75 for ; Fri, 7 Nov 2003 11:02:52 -0800 (PST) (envelope-from brian@quynh-and-brian.org) Received: (qmail 12052 invoked from network); 7 Nov 2003 19:02:51 -0000 Received: from localhost.us.net (HELO localhost) ([127.0.0.1]) (envelope-sender ) by localhost.us.net (qmail-ldap-1.03) with SMTP for ; 7 Nov 2003 19:02:51 -0000 From: Brian Skrab To: freebsd-multimedia@freebsd.org Date: Fri, 7 Nov 2003 14:00:38 -0500 User-Agent: KMail/1.5.4 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200311071400.38968.brian@quynh-and-brian.org> Subject: Which FreeBSD Version for Video Capture/Playback? X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Nov 2003 19:02:53 -0000 I'm interested in doing a bit of video recording via a brooktree capture card, and am wondering which FreeBSD version (5.1-CURRENT or 4.9-STABLE) those in-the-know recommend for this purpose. It seems to me that the majority multimedia development being done for FreeBSD is finding its way into the -CURRENT source tree, while similar features are sometimes available for -STABLE systems in the form of an unofficial patch, if at all. Assuming that's true, I'm leaning toward using a -CURRENT system, but I'd like to get the opinion of those on the list who have their own experience to draw from. The video hardware that I plan to use includes: Pinnacle PCTV Pro capture card NVIDIA GeForce 5200FX Ultra w/S-video out <-- Might like to use this. I guess the basic question that I wish to pose is: Which version of FreeBSD better supports this hardware, and the software to use it? Any recommendations, anecdotes, opinions, tips, or gotchas will be very much appreciated. Thank you, ~brian From owner-freebsd-multimedia@FreeBSD.ORG Fri Nov 7 13:05:26 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F10E16A4CE; Fri, 7 Nov 2003 13:05:26 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBD9343FCB; Fri, 7 Nov 2003 13:05:25 -0800 (PST) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id D018B2ED449; Fri, 7 Nov 2003 13:05:25 -0800 (PST) Date: Fri, 7 Nov 2003 13:05:25 -0800 From: Alfred Perlstein To: "Simon L. Nielsen" Message-ID: <20031107210525.GG34063@elvis.mu.org> References: <200311071643.hA7GhB1j094261@intruder.kitchenlab.org> <20031107204812.GD374@arthur.nitro.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031107204812.GD374@arthur.nitro.dk> User-Agent: Mutt/1.4.1i cc: "Bruce A. Mah" cc: multimedia@FreeBSD.org Subject: Re: HEADSUP: Soekris and generic LED/lamp support in FreeBSD-current X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Nov 2003 21:05:26 -0000 * Simon L. Nielsen [031107 12:48] wrote: > On 2003.11.07 08:43:11 -0800, Bruce A. Mah wrote: > > > I encourage people interested in writing / importing manpages for these > > drivers to self-organize on the doc@ list. Note that even a "stub" > > manual page with a one-line description of a driver and the > > corresponding entries from the hardware notes would be of value. > > I have converted Bruce's list into a TODO list [1]. If anybody start > writing one of the missing manual pages, please update the TODO list to > avoid duplicate work. > > [1] http://www.freebsd.org/docproj/current.html#sec4manualpages > (after next web build) On the subject, there needs to be a sound(4) manpage that explains exactly which module to load for each chipset. Getting sound on FreeBSD working isn't so cool. While having the modules split up into a dozen or so parts for different chipsets is cool from an engineering perspective, it's pretty confusing to users. Can't we just have a "kldload sound" thing that will load them all? Also the manpage for sound should explain how to load the drivers. -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-freebsd-multimedia@FreeBSD.ORG Fri Nov 7 13:38:44 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D159016A4CE; Fri, 7 Nov 2003 13:38:44 -0800 (PST) Received: from TheWorld.com (pcls3.std.com [192.74.137.143]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5F6C43FE1; Fri, 7 Nov 2003 13:38:43 -0800 (PST) (envelope-from kwc@shell.TheWorld.com) Received: from shell.TheWorld.com (pip1-5.std.com [192.74.137.185]) by TheWorld.com (8.12.8p1/8.12.8) with ESMTP id hA7LcaqK030791; Fri, 7 Nov 2003 16:38:36 -0500 Received: (from kwc@localhost) by shell.TheWorld.com (8.9.3/8.9.3) id QAA5911446; Fri, 7 Nov 2003 16:38:30 -0500 (EST) Date: Fri, 7 Nov 2003 16:38:30 -0500 (EST) From: Kenneth W Cochran Message-Id: <200311072138.QAA5911446@shell.TheWorld.com> To: freebsd-multimedia@freebsd.org, freebsd-questions@freebsd.org Subject: fetching/playing radio audio X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Nov 2003 21:38:45 -0000 Hello: How can I "play" or otherwise listen to or download articles from NPR's archive(s)? OS is 4.9-RELEASE Browser is Mozilla 1.5 (mozilla-1.5_1,2) Mplayer & other ports are up-to-date as of today. Everything is built from source. It makes no difference whether or not I have mplayer-plugin installed. If I click on an article from NPR's website (http://www.npr.org/), Mozilla downloads a file, named in the form "nprNNN.wax" where NNN are digits. Here are the contents of an example of one of those: ---------------------------------------- $ cat npr9673.wax NPR's Morning Edition - Thursday, November 6, 2003 more info at : Morning Edition Web site Voyager Nears End of Solar System NPR's Morning Edition - Thursday, November 6, 2003 (c) 2003 NPR $ ---------------------------------------- What am I looking at here? How can I further grok what's going on? If I try that file (or that URI) with mplayer, it (mplayer) looks like it's trying to work but it freezes & I have to ctl-c out of it. FAQ/doc/RTFM/mailing list archive pointers are quite welcome. Thanks, -kc From owner-freebsd-multimedia@FreeBSD.ORG Fri Nov 7 13:46:18 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6232716A4CE; Fri, 7 Nov 2003 13:46:18 -0800 (PST) Received: from hak.cnd.mcgill.ca (hak.cnd.mcgill.ca [132.216.11.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 765A443FBD; Fri, 7 Nov 2003 13:46:16 -0800 (PST) (envelope-from mat@hak.cnd.mcgill.ca) Received: from hak.cnd.mcgill.ca (localhost [127.0.0.1]) by hak.cnd.mcgill.ca (8.12.9/8.12.8) with ESMTP id hA7Li2k4097464; Fri, 7 Nov 2003 16:44:02 -0500 (EST) (envelope-from mat@hak.cnd.mcgill.ca) Received: (from mat@localhost) by hak.cnd.mcgill.ca (8.12.9/8.12.8/Submit) id hA7Li2QN097463; Fri, 7 Nov 2003 16:44:02 -0500 (EST) Date: Fri, 7 Nov 2003 16:44:02 -0500 From: Mathew Kanner To: Alfred Perlstein Message-ID: <20031107214402.GF94805@cnd.mcgill.ca> References: <200311071643.hA7GhB1j094261@intruder.kitchenlab.org> <20031107204812.GD374@arthur.nitro.dk> <20031107210525.GG34063@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031107210525.GG34063@elvis.mu.org> User-Agent: Mutt/1.4.1i Organization: I speak for myself, operating in Montreal, CANADA X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.60 X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on hak.cnd.mcgill.ca cc: "Bruce A. Mah" cc: multimedia@freebsd.org cc: "Simon L. Nielsen" Subject: Re: HEADSUP: Soekris and generic LED/lamp support in FreeBSD-current X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Nov 2003 21:46:18 -0000 On Nov 07, Alfred Perlstein wrote: > * Simon L. Nielsen [031107 12:48] wrote: > > On 2003.11.07 08:43:11 -0800, Bruce A. Mah wrote: > > > > > I encourage people interested in writing / importing manpages for these > > > drivers to self-organize on the doc@ list. Note that even a "stub" > > > manual page with a one-line description of a driver and the > > > corresponding entries from the hardware notes would be of value. > > > > I have converted Bruce's list into a TODO list [1]. If anybody start > > writing one of the missing manual pages, please update the TODO list to > > avoid duplicate work. > > > > [1] http://www.freebsd.org/docproj/current.html#sec4manualpages > > (after next web build) > > On the subject, there needs to be a sound(4) manpage that explains > exactly which module to load for each chipset. Getting sound on > FreeBSD working isn't so cool. While having the modules split up > into a dozen or so parts for different chipsets is cool from > an engineering perspective, it's pretty confusing to users. Listing chipsets doesn't really help, how would an average user know what chipset they have? > Can't > we just have a "kldload sound" thing that will load them all? kldload snd_driver? --Mat > > Also the manpage for sound should explain how to load the drivers. > > > > -- > - Alfred Perlstein > - Research Engineering Development Inc. > - email: bright@mu.org cell: 408-480-4684 > _______________________________________________ > freebsd-multimedia@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-multimedia > To unsubscribe, send any mail to "freebsd-multimedia-unsubscribe@freebsd.org" -- (on the United States) Living next to you is in some ways like sleeping with an elephant. No matter how friendly and eventempered the beast, one is affected by every twitch and grunt. - Pierre Elliott Trudeau From owner-freebsd-multimedia@FreeBSD.ORG Fri Nov 7 14:27:58 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D72616A4CE for ; Fri, 7 Nov 2003 14:27:58 -0800 (PST) Received: from smtp.mho.com (smtp.mho.net [64.58.4.6]) by mx1.FreeBSD.org (Postfix) with SMTP id E550A43FFB for ; Fri, 7 Nov 2003 14:27:55 -0800 (PST) (envelope-from scottl@freebsd.org) Received: (qmail 57267 invoked by uid 1002); 7 Nov 2003 22:27:55 -0000 Received: from unknown (HELO ?10.4.1.5?) (64.58.1.252) by smtp.mho.net with SMTP; 7 Nov 2003 22:27:55 -0000 Date: Fri, 7 Nov 2003 15:31:19 -0700 (MST) From: Scott Long X-X-Sender: scottl@pooker.samsco.home To: Alfred Perlstein In-Reply-To: <20031107210525.GG34063@elvis.mu.org> Message-ID: <20031107152814.Y51343@pooker.samsco.home> References: <20031107204812.GD374@arthur.nitro.dk> <20031107210525.GG34063@elvis.mu.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: "Bruce A. Mah" cc: multimedia@FreeBSD.org cc: "Simon L. Nielsen" Subject: Re: Re: HEADSUP: Soekris and generic LED/lamp support in FreeBSD-current X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Nov 2003 22:27:58 -0000 On Fri, 7 Nov 2003, Alfred Perlstein wrote: > * Simon L. Nielsen [031107 12:48] wrote: > > On 2003.11.07 08:43:11 -0800, Bruce A. Mah wrote: > > > > > I encourage people interested in writing / importing manpages for these > > > drivers to self-organize on the doc@ list. Note that even a "stub" > > > manual page with a one-line description of a driver and the > > > corresponding entries from the hardware notes would be of value. > > > > I have converted Bruce's list into a TODO list [1]. If anybody start > > writing one of the missing manual pages, please update the TODO list to > > avoid duplicate work. > > > > [1] http://www.freebsd.org/docproj/current.html#sec4manualpages > > (after next web build) > > On the subject, there needs to be a sound(4) manpage that explains > exactly which module to load for each chipset. Getting sound on > FreeBSD working isn't so cool. While having the modules split up > into a dozen or so parts for different chipsets is cool from > an engineering perspective, it's pretty confusing to users. Can't > we just have a "kldload sound" thing that will load them all? We've had that for years. Loading snd_driver.ko loads all of the sound drivers. Unloading it then unloads all of the drivers that didn't attach. I thought that it was documented somewhere but apparently it isn't. Scott From owner-freebsd-multimedia@FreeBSD.ORG Fri Nov 7 14:33:09 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38EF416A4F1 for ; Fri, 7 Nov 2003 14:33:09 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id A021143FCB for ; Fri, 7 Nov 2003 14:33:08 -0800 (PST) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 93C502ED44D; Fri, 7 Nov 2003 14:33:08 -0800 (PST) Date: Fri, 7 Nov 2003 14:33:08 -0800 From: Alfred Perlstein To: Mathew Kanner Message-ID: <20031107223308.GI34063@elvis.mu.org> References: <200311071643.hA7GhB1j094261@intruder.kitchenlab.org> <20031107204812.GD374@arthur.nitro.dk> <20031107210525.GG34063@elvis.mu.org> <20031107214402.GF94805@cnd.mcgill.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031107214402.GF94805@cnd.mcgill.ca> User-Agent: Mutt/1.4.1i cc: multimedia@freebsd.org Subject: Re: HEADSUP: Soekris and generic LED/lamp support in FreeBSD-current X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Nov 2003 22:33:09 -0000 * Mathew Kanner [031107 13:46] wrote: > > > > On the subject, there needs to be a sound(4) manpage that explains > > exactly which module to load for each chipset. Getting sound on > > FreeBSD working isn't so cool. While having the modules split up > > into a dozen or so parts for different chipsets is cool from > > an engineering perspective, it's pretty confusing to users. > > Listing chipsets doesn't really help, how would an average > user know what chipset they have? I dunno, maybe some tool to dig that info out would also help. > > Can't > > we just have a "kldload sound" thing that will load them all? > > kldload snd_driver? That would be nice. -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-freebsd-multimedia@FreeBSD.ORG Fri Nov 7 14:38:23 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CBFC16A4CF; Fri, 7 Nov 2003 14:38:23 -0800 (PST) Received: from hak.cnd.mcgill.ca (hak.cnd.mcgill.ca [132.216.11.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29EB943FBD; Fri, 7 Nov 2003 14:38:21 -0800 (PST) (envelope-from mat@hak.cnd.mcgill.ca) Received: from hak.cnd.mcgill.ca (localhost [127.0.0.1]) by hak.cnd.mcgill.ca (8.12.9/8.12.8) with ESMTP id hA7Ma6k4097980; Fri, 7 Nov 2003 17:36:07 -0500 (EST) (envelope-from mat@hak.cnd.mcgill.ca) Received: (from mat@localhost) by hak.cnd.mcgill.ca (8.12.9/8.12.8/Submit) id hA7Ma6ex097979; Fri, 7 Nov 2003 17:36:06 -0500 (EST) Date: Fri, 7 Nov 2003 17:36:06 -0500 From: Mathew Kanner To: Scott Long Message-ID: <20031107223606.GI94805@cnd.mcgill.ca> References: <20031107204812.GD374@arthur.nitro.dk> <20031107210525.GG34063@elvis.mu.org> <20031107152814.Y51343@pooker.samsco.home> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031107152814.Y51343@pooker.samsco.home> User-Agent: Mutt/1.4.1i Organization: I speak for myself, operating in Montreal, CANADA X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.60 X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on hak.cnd.mcgill.ca cc: "Bruce A. Mah" cc: Alfred Perlstein cc: "Simon L. Nielsen" cc: multimedia@freebsd.org Subject: Re: Re: HEADSUP: Soekris and generic LED/lamp support in FreeBSD-current X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Nov 2003 22:38:23 -0000 On Nov 07, Scott Long wrote: > On Fri, 7 Nov 2003, Alfred Perlstein wrote: > > * Simon L. Nielsen [031107 12:48] wrote: > > > On 2003.11.07 08:43:11 -0800, Bruce A. Mah wrote: > > > > > > > I encourage people interested in writing / importing manpages for these > > > > drivers to self-organize on the doc@ list. Note that even a "stub" > > > > manual page with a one-line description of a driver and the > > > > corresponding entries from the hardware notes would be of value. > > > > > > I have converted Bruce's list into a TODO list [1]. If anybody start > > > writing one of the missing manual pages, please update the TODO list to > > > avoid duplicate work. > > > > > > [1] http://www.freebsd.org/docproj/current.html#sec4manualpages > > > (after next web build) > > > > On the subject, there needs to be a sound(4) manpage that explains > > exactly which module to load for each chipset. Getting sound on > > FreeBSD working isn't so cool. While having the modules split up > > into a dozen or so parts for different chipsets is cool from > > an engineering perspective, it's pretty confusing to users. Can't > > we just have a "kldload sound" thing that will load them all? > > We've had that for years. Loading snd_driver.ko loads all of the sound > drivers. Unloading it then unloads all of the drivers that didn't attach. > I thought that it was documented somewhere but apparently it isn't. kldunload should unload all driver. I plan to augment /dev/sndstat to show which driver is actually behind the device. --Mat -- Having your book made into a movie is like having your ox made into a bouillon cube. - Bill Neely From owner-freebsd-multimedia@FreeBSD.ORG Fri Nov 7 14:50:53 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A2B616A4CE for ; Fri, 7 Nov 2003 14:50:53 -0800 (PST) Received: from smtp.mho.com (smtp.mho.net [64.58.4.6]) by mx1.FreeBSD.org (Postfix) with SMTP id 45BA44400F for ; Fri, 7 Nov 2003 14:50:51 -0800 (PST) (envelope-from scottl@freebsd.org) Received: (qmail 58509 invoked by uid 1002); 7 Nov 2003 22:50:50 -0000 Received: from unknown (HELO ?10.4.1.5?) (64.58.1.252) by smtp.mho.net with SMTP; 7 Nov 2003 22:50:50 -0000 Date: Fri, 7 Nov 2003 15:54:14 -0700 (MST) From: Scott Long X-X-Sender: scottl@pooker.samsco.home To: Mathew Kanner In-Reply-To: <20031107223606.GI94805@cnd.mcgill.ca> Message-ID: <20031107154956.D51343@pooker.samsco.home> References: <20031107210525.GG34063@elvis.mu.org> <20031107223606.GI94805@cnd.mcgill.ca> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: "Bruce A. Mah" cc: Alfred Perlstein cc: "Simon L. Nielsen" cc: multimedia@freebsd.org Subject: Re: Re: HEADSUP: Soekris and generic LED/lamp support in FreeBSD-current X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Nov 2003 22:50:53 -0000 On Fri, 7 Nov 2003, Mathew Kanner wrote: > On Nov 07, Scott Long wrote: > > On Fri, 7 Nov 2003, Alfred Perlstein wrote: > > > * Simon L. Nielsen [031107 12:48] wrote: > > > > On 2003.11.07 08:43:11 -0800, Bruce A. Mah wrote: > > > > > > > > > I encourage people interested in writing / importing manpages for these > > > > > drivers to self-organize on the doc@ list. Note that even a "stub" > > > > > manual page with a one-line description of a driver and the > > > > > corresponding entries from the hardware notes would be of value. > > > > > > > > I have converted Bruce's list into a TODO list [1]. If anybody start > > > > writing one of the missing manual pages, please update the TODO list to > > > > avoid duplicate work. > > > > > > > > [1] http://www.freebsd.org/docproj/current.html#sec4manualpages > > > > (after next web build) > > > > > > On the subject, there needs to be a sound(4) manpage that explains > > > exactly which module to load for each chipset. Getting sound on > > > FreeBSD working isn't so cool. While having the modules split up > > > into a dozen or so parts for different chipsets is cool from > > > an engineering perspective, it's pretty confusing to users. Can't > > > we just have a "kldload sound" thing that will load them all? > > > > We've had that for years. Loading snd_driver.ko loads all of the sound > > drivers. Unloading it then unloads all of the drivers that didn't attach. > > I thought that it was documented somewhere but apparently it isn't. > > > kldunload should unload all driver. I plan to augment > /dev/sndstat to show which driver is actually behind the device. The current semantics are intentional (IIRC from talking with Cameron). The idea was to make it easy to load the correct sound driver without having to know specifically which one you needed, but not waste RAM by loading all of them. Modifying /dev/sndstat like you said would be interesting, but changing the unload semantics then makes things less convenient. Scott From owner-freebsd-multimedia@FreeBSD.ORG Fri Nov 7 15:11:26 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8ECFC16A4CE; Fri, 7 Nov 2003 15:11:26 -0800 (PST) Received: from hak.cnd.mcgill.ca (hak.cnd.mcgill.ca [132.216.11.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0EBF844003; Fri, 7 Nov 2003 15:11:23 -0800 (PST) (envelope-from mat@hak.cnd.mcgill.ca) Received: from hak.cnd.mcgill.ca (localhost [127.0.0.1]) by hak.cnd.mcgill.ca (8.12.9/8.12.8) with ESMTP id hA7N97k4098214; Fri, 7 Nov 2003 18:09:07 -0500 (EST) (envelope-from mat@hak.cnd.mcgill.ca) Received: (from mat@localhost) by hak.cnd.mcgill.ca (8.12.9/8.12.8/Submit) id hA7N94XE098213; Fri, 7 Nov 2003 18:09:04 -0500 (EST) Date: Fri, 7 Nov 2003 18:09:04 -0500 From: Mathew Kanner To: Scott Long Message-ID: <20031107230904.GJ94805@cnd.mcgill.ca> References: <20031107204812.GD374@arthur.nitro.dk> <20031107210525.GG34063@elvis.mu.org> <20031107152814.Y51343@pooker.samsco.home> <20031107223606.GI94805@cnd.mcgill.ca> <20031107154956.D51343@pooker.samsco.home> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031107154956.D51343@pooker.samsco.home> User-Agent: Mutt/1.4.1i Organization: I speak for myself, operating in Montreal, CANADA X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.60 X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on hak.cnd.mcgill.ca cc: "Simon L. Nielsen" cc: "Bruce A. Mah" cc: Alfred Perlstein cc: multimedia@freebsd.org Subject: Re: Re: HEADSUP: Soekris and generic LED/lamp support in FreeBSD-current X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Nov 2003 23:11:26 -0000 On Nov 07, Scott Long wrote: > On Fri, 7 Nov 2003, Mathew Kanner wrote: > > On Nov 07, Scott Long wrote: > > > On Fri, 7 Nov 2003, Alfred Perlstein wrote: > > > > * Simon L. Nielsen [031107 12:48] wrote: > > > > > On 2003.11.07 08:43:11 -0800, Bruce A. Mah wrote: > > [...snip...] > > > > kldunload should unload all driver. I plan to augment > > /dev/sndstat to show which driver is actually behind the device. > > The current semantics are intentional (IIRC from talking with Cameron). > The idea was to make it easy to load the correct sound driver without > having to know specifically which one you needed, but not waste RAM by > loading all of them. Modifying /dev/sndstat like you said would be > interesting, but changing the unload semantics then makes things less > convenient. kldunload does unload all the drivers, at least on my machine. I can't think of an easy way to implement those semantics without preventing the unload of an attached driver in the general case. --Mat -- Canada is a country whose main exports are hockey players and cold fronts. Our main imports are baseball players and acid rain. - Pierre Elliott Trudeau From owner-freebsd-multimedia@FreeBSD.ORG Fri Nov 7 16:13:40 2003 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF35216A4CE; Fri, 7 Nov 2003 16:13:40 -0800 (PST) Received: from hak.cnd.mcgill.ca (hak.cnd.mcgill.ca [132.216.11.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88B3143FE5; Fri, 7 Nov 2003 16:13:39 -0800 (PST) (envelope-from mat@hak.cnd.mcgill.ca) Received: from hak.cnd.mcgill.ca (localhost [127.0.0.1]) by hak.cnd.mcgill.ca (8.12.9/8.12.8) with ESMTP id hA80BOk4098674; Fri, 7 Nov 2003 19:11:24 -0500 (EST) (envelope-from mat@hak.cnd.mcgill.ca) Received: (from mat@localhost) by hak.cnd.mcgill.ca (8.12.9/8.12.8/Submit) id hA80BOAl098673; Fri, 7 Nov 2003 19:11:24 -0500 (EST) Date: Fri, 7 Nov 2003 19:11:24 -0500 From: Mathew Kanner To: Scott Long Message-ID: <20031108001124.GL94805@cnd.mcgill.ca> References: <20031107204812.GD374@arthur.nitro.dk> <20031107210525.GG34063@elvis.mu.org> <20031107152814.Y51343@pooker.samsco.home> <20031107223606.GI94805@cnd.mcgill.ca> <20031107154956.D51343@pooker.samsco.home> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="adJ1OR3c6QgCpb/j" Content-Disposition: inline In-Reply-To: <20031107154956.D51343@pooker.samsco.home> User-Agent: Mutt/1.4.1i Organization: I speak for myself, operating in Montreal, CANADA X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.60 X-Spam-Checker-Version: SpamAssassin 2.60 (1.212-2003-09-23-exp) on hak.cnd.mcgill.ca cc: multimedia@freebsd.org Subject: module name reporting WAS: Re: HEADSUP: Soekris and generic LED/lamp support in FreeBSD-current X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 Nov 2003 00:13:41 -0000 --adJ1OR3c6QgCpb/j Content-Type: text/plain; charset=us-ascii Content-Disposition: inline [ I snipped some CC's] On Nov 07, Scott Long wrote: > On Fri, 7 Nov 2003, Mathew Kanner wrote: > > > > kldunload should unload all driver. I plan to augment > > /dev/sndstat to show which driver is actually behind the device. > > The current semantics are intentional (IIRC from talking with Cameron). > The idea was to make it easy to load the correct sound driver without > having to know specifically which one you needed, but not waste RAM by > loading all of them. Modifying /dev/sndstat like you said would be > interesting, but changing the unload semantics then makes things less > convenient. Attached you will find patches that get to most drivers, tube# kldload snd_cmi pcm0: port 0xb800-0xb8ff irq 10 at device 5.0 on pci0 tube# cat /dev/sndstat FreeBSD Audio Driver (newpcm) Installed devices: pcm0: at io 0xb800 irq 10 kld snd_cmi (1p/1r/0v channels duplex default --Mat -- I don't even know what street Canada is on. - Al Capone --adJ1OR3c6QgCpb/j Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="snd_module_status.patch" diff -ru dev/sound/pci.old/als4000.c dev/sound/pci/als4000.c --- dev/sound/pci.old/als4000.c Sun Sep 7 05:14:58 2003 +++ dev/sound/pci/als4000.c Fri Nov 7 18:59:42 2003 @@ -818,7 +818,7 @@ pcm_addchan(dev, PCMDIR_PLAY, &alspchan_class, sc); pcm_addchan(dev, PCMDIR_REC, &alsrchan_class, sc); - snprintf(status, SND_STATUSLEN, "at io 0x%lx irq %ld", + snprintf(status, SND_STATUSLEN, "at io 0x%lx irq %ld kld snd_als4000", rman_get_start(sc->reg), rman_get_start(sc->irq)); pcm_setstatus(dev, status); return 0; diff -ru dev/sound/pci.old/au88x0.c dev/sound/pci/au88x0.c --- dev/sound/pci.old/au88x0.c Wed Oct 22 00:55:50 2003 +++ dev/sound/pci/au88x0.c Fri Nov 7 19:00:03 2003 @@ -529,7 +529,7 @@ struct au88x0_info *aui; aui = pcm_getdevinfo(dev); - snprintf(status, sizeof status, "at %s 0x%lx irq %ld", + snprintf(status, sizeof status, "at %s 0x%lx irq %ld kld snd_au88x0", (aui->aui_regtype == SYS_RES_IOPORT)? "io" : "memory", rman_get_start(aui->aui_reg), rman_get_start(aui->aui_irq)); pcm_setstatus(dev, status); diff -ru dev/sound/pci.old/aureal.c dev/sound/pci/aureal.c --- dev/sound/pci.old/aureal.c Sat Sep 13 21:09:21 2003 +++ dev/sound/pci/aureal.c Fri Nov 7 19:01:10 2003 @@ -647,7 +647,7 @@ goto bad; } - snprintf(status, SND_STATUSLEN, "at %s 0x%lx irq %ld", + snprintf(status, SND_STATUSLEN, "at %s 0x%lx irq %ld kld snd_aureal", (type[0] == SYS_RES_IOPORT)? "io" : "memory", rman_get_start(reg[0]), rman_get_start(irq)); diff -ru dev/sound/pci.old/cmi.c dev/sound/pci/cmi.c --- dev/sound/pci.old/cmi.c Fri Oct 24 23:49:03 2003 +++ dev/sound/pci/cmi.c Fri Nov 7 19:01:19 2003 @@ -898,7 +898,7 @@ pcm_addchan(dev, PCMDIR_PLAY, &cmichan_class, sc); pcm_addchan(dev, PCMDIR_REC, &cmichan_class, sc); - snprintf(status, SND_STATUSLEN, "at io 0x%lx irq %ld", + snprintf(status, SND_STATUSLEN, "at io 0x%lx irq %ld kld snd_cmi", rman_get_start(sc->reg), rman_get_start(sc->irq)); pcm_setstatus(dev, status); diff -ru dev/sound/pci.old/cs4281.c dev/sound/pci/cs4281.c --- dev/sound/pci.old/cs4281.c Sun Sep 7 05:14:58 2003 +++ dev/sound/pci/cs4281.c Fri Nov 7 19:01:43 2003 @@ -858,7 +858,7 @@ pcm_addchan(dev, PCMDIR_PLAY, &cs4281chan_class, sc); pcm_addchan(dev, PCMDIR_REC, &cs4281chan_class, sc); - snprintf(status, SND_STATUSLEN, "at %s 0x%lx irq %ld", + snprintf(status, SND_STATUSLEN, "at %s 0x%lx irq %ld kld snd_cs4281", (sc->regtype == SYS_RES_IOPORT)? "io" : "memory", rman_get_start(sc->reg), rman_get_start(sc->irq)); pcm_setstatus(dev, status); diff -ru dev/sound/pci.old/csapcm.c dev/sound/pci/csapcm.c --- dev/sound/pci.old/csapcm.c Sun Sep 7 05:14:58 2003 +++ dev/sound/pci/csapcm.c Fri Nov 7 19:02:10 2003 @@ -788,7 +788,7 @@ return (ENXIO); } - snprintf(status, SND_STATUSLEN, "at irq %ld", rman_get_start(resp->irq)); + snprintf(status, SND_STATUSLEN, "at irq %ld kld snd_csa", rman_get_start(resp->irq)); /* Enable interrupt. */ if (snd_setup_intr(dev, resp->irq, INTR_MPSAFE, csa_intr, csa, &csa->ih)) { diff -ru dev/sound/pci.old/ds1.c dev/sound/pci/ds1.c --- dev/sound/pci.old/ds1.c Sun Sep 7 05:14:58 2003 +++ dev/sound/pci/ds1.c Fri Nov 7 19:02:33 2003 @@ -996,7 +996,7 @@ goto bad; } - snprintf(status, SND_STATUSLEN, "at memory 0x%lx irq %ld", + snprintf(status, SND_STATUSLEN, "at memory 0x%lx irq %ld kld snd_ds1", rman_get_start(sc->reg), rman_get_start(sc->irq)); if (pcm_register(dev, sc, DS1_CHANS, 2)) diff -ru dev/sound/pci.old/emu10k1.c dev/sound/pci/emu10k1.c --- dev/sound/pci.old/emu10k1.c Sat Sep 13 21:09:21 2003 +++ dev/sound/pci/emu10k1.c Fri Nov 7 19:02:48 2003 @@ -1517,7 +1517,7 @@ goto bad; } - snprintf(status, SND_STATUSLEN, "at io 0x%lx irq %ld", rman_get_start(sc->reg), rman_get_start(sc->irq)); + snprintf(status, SND_STATUSLEN, "at io 0x%lx irq %ld kld snd_emu10k1", rman_get_start(sc->reg), rman_get_start(sc->irq)); if (pcm_register(dev, sc, EMU_CHANS, gotmic ? 3 : 2)) goto bad; for (i = 0; i < EMU_CHANS; i++) diff -ru dev/sound/pci.old/es137x.c dev/sound/pci/es137x.c --- dev/sound/pci.old/es137x.c Sat Sep 13 21:09:21 2003 +++ dev/sound/pci/es137x.c Fri Nov 7 19:03:01 2003 @@ -924,7 +924,7 @@ goto bad; } - snprintf(status, SND_STATUSLEN, "at %s 0x%lx irq %ld", + snprintf(status, SND_STATUSLEN, "at %s 0x%lx irq %ld kld snd_es137x", (es->regtype == SYS_RES_IOPORT)? "io" : "memory", rman_get_start(es->reg), rman_get_start(es->irq)); diff -ru dev/sound/pci.old/fm801.c dev/sound/pci/fm801.c --- dev/sound/pci.old/fm801.c Sun Sep 7 05:14:58 2003 +++ dev/sound/pci/fm801.c Fri Nov 7 19:03:20 2003 @@ -638,7 +638,7 @@ goto oops; } - snprintf(status, 64, "at %s 0x%lx irq %ld", + snprintf(status, 64, "at %s 0x%lx irq %ld kld snd_fm801", (fm801->regtype == SYS_RES_IOPORT)? "io" : "memory", rman_get_start(fm801->reg), rman_get_start(fm801->irq)); diff -ru dev/sound/pci.old/ich.c dev/sound/pci/ich.c --- dev/sound/pci.old/ich.c Wed Oct 22 00:55:50 2003 +++ dev/sound/pci/ich.c Fri Nov 7 19:03:32 2003 @@ -761,7 +761,7 @@ if (sc->hasmic) pcm_addchan(dev, PCMDIR_REC, &ichchan_class, sc); /* record mic */ - snprintf(status, SND_STATUSLEN, "at io 0x%lx, 0x%lx irq %ld bufsz %u", + snprintf(status, SND_STATUSLEN, "at io 0x%lx, 0x%lx irq %ld bufsz %u kld snd_ich", rman_get_start(sc->nambar), rman_get_start(sc->nabmbar), rman_get_start(sc->irq), sc->bufsz); pcm_setstatus(dev, status); diff -ru dev/sound/pci.old/maestro.c dev/sound/pci/maestro.c --- dev/sound/pci.old/maestro.c Sat Sep 13 21:09:21 2003 +++ dev/sound/pci/maestro.c Fri Nov 7 19:03:46 2003 @@ -1033,7 +1033,7 @@ ess->irqid = irqid; ess->ih = ih; - snprintf(status, SND_STATUSLEN, "at I/O port 0x%lx irq %ld", + snprintf(status, SND_STATUSLEN, "at I/O port 0x%lx irq %ld kld snd_maestro", rman_get_start(reg), rman_get_start(irq)); if (pcm_register(dev, ess, AGG_MAXPLAYCH, 1)) diff -ru dev/sound/pci.old/maestro3.c dev/sound/pci/maestro3.c --- dev/sound/pci.old/maestro3.c Sun Sep 7 05:14:58 2003 +++ dev/sound/pci/maestro3.c Fri Nov 7 19:04:05 2003 @@ -1189,7 +1189,7 @@ goto bad; } } - snprintf(status, SND_STATUSLEN, "at %s 0x%lx irq %ld", + snprintf(status, SND_STATUSLEN, "at %s 0x%lx irq %ld kld snd_maestro3", (sc->regtype == SYS_RES_IOPORT)? "io" : "memory", rman_get_start(sc->reg), rman_get_start(sc->irq)); if (pcm_setstatus(dev, status)) { diff -ru dev/sound/pci.old/neomagic.c dev/sound/pci/neomagic.c --- dev/sound/pci.old/neomagic.c Sat Sep 13 21:09:22 2003 +++ dev/sound/pci/neomagic.c Fri Nov 7 19:04:24 2003 @@ -704,7 +704,7 @@ goto bad; } - snprintf(status, SND_STATUSLEN, "at memory 0x%lx, 0x%lx irq %ld", + snprintf(status, SND_STATUSLEN, "at memory 0x%lx, 0x%lx irq %ld kld snd_neomagic", rman_get_start(sc->buf), rman_get_start(sc->reg), rman_get_start(sc->irq)); diff -ru dev/sound/pci.old/solo.c dev/sound/pci/solo.c --- dev/sound/pci.old/solo.c Sat Sep 13 21:09:22 2003 +++ dev/sound/pci/solo.c Fri Nov 7 19:04:37 2003 @@ -997,7 +997,7 @@ goto no; } - snprintf(status, SND_STATUSLEN, "at io 0x%lx,0x%lx,0x%lx irq %ld", + snprintf(status, SND_STATUSLEN, "at io 0x%lx,0x%lx,0x%lx irq %ld kld snd_solo", rman_get_start(sc->io), rman_get_start(sc->sb), rman_get_start(sc->vc), rman_get_start(sc->irq)); diff -ru dev/sound/pci.old/t4dwave.c dev/sound/pci/t4dwave.c --- dev/sound/pci.old/t4dwave.c Sat Sep 13 21:09:22 2003 +++ dev/sound/pci/t4dwave.c Fri Nov 7 19:04:48 2003 @@ -860,7 +860,7 @@ goto bad; } - snprintf(status, 64, "at io 0x%lx irq %ld", + snprintf(status, 64, "at io 0x%lx irq %ld kld snd_t4dwave", rman_get_start(tr->reg), rman_get_start(tr->irq)); if (pcm_register(dev, tr, TR_MAXPLAYCH, 1)) goto bad; diff -ru dev/sound/pci.old/via8233.c dev/sound/pci/via8233.c --- dev/sound/pci.old/via8233.c Sun Sep 7 05:14:58 2003 +++ dev/sound/pci/via8233.c Fri Nov 7 19:04:59 2003 @@ -843,7 +843,7 @@ ac97_setextmode(via->codec, ext); } - snprintf(status, SND_STATUSLEN, "at io 0x%lx irq %ld", + snprintf(status, SND_STATUSLEN, "at io 0x%lx irq %ld kld snd_via8233", rman_get_start(via->reg), rman_get_start(via->irq)); /* Register */ diff -ru dev/sound/pci.old/via82c686.c dev/sound/pci/via82c686.c --- dev/sound/pci.old/via82c686.c Sun Sep 7 05:14:58 2003 +++ dev/sound/pci/via82c686.c Fri Nov 7 19:05:12 2003 @@ -572,7 +572,7 @@ if (bus_dmamap_load(via->sgd_dmat, via->sgd_dmamap, via->sgd_table, NSEGS * sizeof(struct via_dma_op), dma_cb, via, 0)) goto bad; - snprintf(status, SND_STATUSLEN, "at io 0x%lx irq %ld", rman_get_start(via->reg), rman_get_start(via->irq)); + snprintf(status, SND_STATUSLEN, "at io 0x%lx irq %ld kld snd_via82c686", rman_get_start(via->reg), rman_get_start(via->irq)); /* Register */ if (pcm_register(dev, via, 1, 1)) goto bad; diff -ru dev/sound/pci.old/vibes.c dev/sound/pci/vibes.c --- dev/sound/pci.old/vibes.c Sun Sep 7 05:14:58 2003 +++ dev/sound/pci/vibes.c Fri Nov 7 19:05:26 2003 @@ -878,7 +878,7 @@ pcm_addchan(dev, PCMDIR_PLAY, &svpchan_class, sc); pcm_addchan(dev, PCMDIR_REC, &svrchan_class, sc); - snprintf(status, SND_STATUSLEN, "at io 0x%lx irq %ld", + snprintf(status, SND_STATUSLEN, "at io 0x%lx irq %ld kld snd_vibes", rman_get_start(sc->enh_reg), rman_get_start(sc->irq)); pcm_setstatus(dev, status); --adJ1OR3c6QgCpb/j--