From owner-freebsd-multimedia@FreeBSD.ORG Sun May 22 16:44:41 2011 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7DD2A106566B; Sun, 22 May 2011 16:44:41 +0000 (UTC) (envelope-from nox@jelal.kn-bremen.de) Received: from smtp.kn-bremen.de (gelbbaer.kn-bremen.de [78.46.108.116]) by mx1.freebsd.org (Postfix) with ESMTP id 1B4578FC0A; Sun, 22 May 2011 16:44:40 +0000 (UTC) Received: by smtp.kn-bremen.de (Postfix, from userid 10) id DE3C91E000F2; Sun, 22 May 2011 18:44:39 +0200 (CEST) Received: from triton8.kn-bremen.de (noident@localhost [127.0.0.1]) by triton8.kn-bremen.de (8.14.4/8.14.3) with ESMTP id p4MGh5qv040383; Sun, 22 May 2011 18:43:05 +0200 (CEST) (envelope-from nox@triton8.kn-bremen.de) Received: (from nox@localhost) by triton8.kn-bremen.de (8.14.4/8.14.3/Submit) id p4MGh56W040382; Sun, 22 May 2011 18:43:05 +0200 (CEST) (envelope-from nox) From: Juergen Lock Date: Sun, 22 May 2011 18:43:05 +0200 To: Daniele Mazzotti Message-ID: <20110522164305.GA40215@triton8.kn-bremen.de> References: <20110515140755.6e833cd4@ukr.net> <20110515144556.292a0230@ukr.net> <20110515132530.GA6707@tinyCurrent> <4DCFE689.3000904@FreeBSD.org> <201105221532.p4MFWfSL092692@triton8.kn-bremen.de> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-multimedia@freebsd.org, Juergen Lock , Andriy Gapon Subject: Re: skype 2.1.0.81; alternate versions of the Linuxolator v4l2 patches X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 May 2011 16:44:41 -0000 On Sun, May 22, 2011 at 06:36:00PM +0200, Daniele Mazzotti wrote: > Hi, > I just read the UPDATING and found out this: > > [User@Fermi:/usr/src/sys/modules/sound/sound]# uname -a; sysctl > compat.linux | head -2; \ > ? grep OVERRIDE_LINUX_ /etc/make.conf; \ > ? cat /compat/linux/etc/alsa/pcm/pcm-oss.conf > FreeBSD Fermi.residential.fw 8.2-RELEASE FreeBSD 8.2-RELEASE #1: Sun > May 15 16:16:37 CEST 2011 > User@Fermi.residential.fw:/usr/obj/usr/src/sys/GENERIC amd64 > compat.linux.oss_version: 198144 > compat.linux.osrelease: 2.6.16 > # pcm-oss plugin configuration > > pcm.oss0 { > type oss > device /dev/dsp0 > hint { > description "Open Sound System" > } > } > > ctl.oss0 { > type oss > device /dev/mixer0 > hint { > description "Open Sound System" > } > } > > > 2011/5/22 Daniele Mazzotti : > > Hi, > > > > well audio is now working. What is not working is the microphone. I > > have made a call test but my mic is mute. I have searched the Internet > > to find a solution but I am still stuck here! Perhaps an oss issue? > > Yes the sound.ko patch mentioned below is needed to get recording working i.e. the mic, and since you are running 8.2-release you need to manually apply it: > [...] > > 2011/5/22 Juergen Lock : > >> In article you write: > >>>Hi all. > >> Hi!  (sorry for the late reply...) > >>> I > >>>am actually having troubles with audio devices and skype calls but I > >>>will try get rid of those problems tomorrow. > >>> > >>  And in case this is still a problem, instead of upgrading from -release > >> to -stable you can also try manually applying only the sound.ko fix, > >> > >>        http://svnweb.freebsd.org/base?view=revision&revision=221583 > >> > >> i.e. apply the patch from here: > >> > >>        http://svnweb.freebsd.org/base/stable/8/sys/dev/sound/pcm/dsp.c?view=patch&r1=221583&r2=221582&pathrev=221583 > >> > >> and rebuild and reload your sound.ko, you can do something like this: > >> > >>        # cd /usr/src > >>        # fetch -o - 'http://svnweb.freebsd.org/base/stable/8/sys/dev/sound/pcm/dsp.c?view=patch&r1=221583&r2=221582&pathrev=221583' |patch -p2 > >>                [obviously needs kernel source installed] > >>        # cd sys/modules/sound/sound > >>        # make DEBUG_FLAGS=-g install > >>        # kldunload snd_hda > >>                [or whichever driver you are using; stop apps using sound first] > >>        # kldload sound > >>        # kldload snd_hda HTH, Juergen