From owner-freebsd-current@FreeBSD.ORG Wed Feb 4 05:17:29 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5DB8E16A4CE for ; Wed, 4 Feb 2004 05:17:29 -0800 (PST) Received: from mail-gw1.york.ac.uk (mail-gw1.york.ac.uk [144.32.128.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7786943D62 for ; Wed, 4 Feb 2004 05:17:19 -0800 (PST) (envelope-from gavin.atkinson@ury.york.ac.uk) Received: from ury.york.ac.uk (ury.york.ac.uk [144.32.108.81]) by mail-gw1.york.ac.uk (8.12.10/8.12.10) with ESMTP id i14DHGkA014473; Wed, 4 Feb 2004 13:17:16 GMT Received: from ury.york.ac.uk (localhost.york.ac.uk [127.0.0.1]) by ury.york.ac.uk (8.12.9p2/8.12.9) with ESMTP id i14DHGbJ016970; Wed, 4 Feb 2004 13:17:16 GMT (envelope-from gavin.atkinson@ury.york.ac.uk) Received: from localhost (gavin@localhost)i14DHGtj016967; Wed, 4 Feb 2004 13:17:16 GMT (envelope-from gavin.atkinson@ury.york.ac.uk) X-Authentication-Warning: ury.york.ac.uk: gavin owned process doing -bs Date: Wed, 4 Feb 2004 13:17:16 +0000 (GMT) From: Gavin Atkinson X-X-Sender: gavin@ury.york.ac.uk To: Mattias Schlenker In-Reply-To: <4020C81D.50803@schlenker-webdesign.de> Message-ID: <20040204130915.D16702@ury.york.ac.uk> References: <4020C81D.50803@schlenker-webdesign.de> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-York-MailScanner: Found to be clean cc: freebsd-current@freebsd.org Subject: Re: 5.2.1 RC1 audio trouble X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 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: Wed, 04 Feb 2004 13:17:29 -0000 On Wed, 4 Feb 2004, Mattias Schlenker wrote: > I still use an old Fujitsu Lifebook B142 which has an ESS ES1946S sound > chip. In 4.7 and 5.1 sound worked without any problems after putting > > snd_pcm_load="YES" > > to my loader.conf. However 5.2, 5.2.1 and 5.2-CURRENT do not recognize > the sound card anymore, I just get the message > > pci0: at device 13.0 (no driver attached) What is the output of "pciconf -l"? And what happens if you "kldload snd_driver" once booted? Generally snd_pcm is simply the "support code", and you also need to load a chipset specific driver too. snd_driver is a meta-module which simply forces a load of all of the chipset-specific modules. Once you know which chipset specific driver you need to use, add (eg) snd_ich_load="YES" to your loader.conf instead or as well as the pcm line. However, from a very quick look, I can't actually see a driver which covers that chipset. If you have a copy of an old dmesg laying around, that should at least tell you what the chip was detected as. Gavin