From owner-freebsd-questions@FreeBSD.ORG Tue Oct 17 11:38:06 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9643F16A407 for ; Tue, 17 Oct 2006 11:38:06 +0000 (UTC) (envelope-from duncan.fbsd@gmail.com) Received: from py-out-1112.google.com (py-out-1112.google.com [64.233.166.177]) by mx1.FreeBSD.org (Postfix) with ESMTP id 046CB43D49 for ; Tue, 17 Oct 2006 11:38:05 +0000 (GMT) (envelope-from duncan.fbsd@gmail.com) Received: by py-out-1112.google.com with SMTP id o67so2662841pye for ; Tue, 17 Oct 2006 04:37:32 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:from:to:subject:date:user-agent:cc:references:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=OWzRa2GFrOiqxj7ezr1S152/G6527GhF62gUxqwAVCcOA6Ln6Li6ysMAmEbbEJKMpstZZ2qFy7EZGmUoL5JkYcd940apq8V5AS1WeXpuINduxerhFs8tOhhsK272F6DaCDQe0EqdBpiTeBQVlk369G/OSS4rytaegmpZOCsYnLU= Received: by 10.35.52.18 with SMTP id e18mr15104699pyk; Tue, 17 Oct 2006 04:37:32 -0700 (PDT) Received: from pres1750.airedalians.com ( [75.7.74.134]) by mx.google.com with ESMTP id n62sm1999094pyf.2006.10.17.04.37.31; Tue, 17 Oct 2006 04:37:31 -0700 (PDT) From: "Donald J. O'Neill" To: freebsd-questions@freebsd.org Date: Tue, 17 Oct 2006 06:37:27 -0500 User-Agent: KMail/1.9.4 References: <200610161159.k9GBxAAi012441@tausa.cc.uit.no> <8cb6106e0610160923g6d8c1480nef76e579faa4991a@mail.gmail.com> <200610171047.k9HAlwoP004623@tausa.cc.uit.no> In-Reply-To: <200610171047.k9HAlwoP004623@tausa.cc.uit.no> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200610170637.28358.duncan.fbsd@gmail.com> Cc: Johan Johansen , Josh Carroll Subject: Re: atapicam trouble X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Oct 2006 11:38:06 -0000 On Tuesday 17 October 2006 05:47, Johan Johansen wrote: > Actually, on my system I can do mount_udf /dev/acd0 and copy a 3GB > file, I just tried. My problem is adding CAM support, which the > handbook tells me I have to use to burn dvd. > > johan > > > I'm unable to copy a file from a udf-mounted DVD regardless of whether > > atapicam is loaded or not, so I'm not sure if atapicam is just making > > a problem more apparent or what. Are you able to do so? > > > > Thanks, > > Josh > > > > On 10/16/06, Johan Johansen wrote: > > > I still have the same problem as below, even when running 6.2-BETA2 > > > from a FreeSBIE - cd. I wonder if this could have to do with badly > > > supportet motherboard, ASUS P5B, since I dont see any temp-readings > > > with sysctl. cpuTemp and MBTemp are displayed under bios-config. > > _______________________________________________ Look in /boot/kernel and see if atapikam.ko is there. It should be. If it is, you can use 'atapicam_load="YES"' in /boot/loader.conf to load atapicam at boot. You can use 'kldload atapicam.ko' to just load it while system is running to see if it works before going any further. You can use kldstat to varify that it's loaded. Below is the output of kldstat from one of my systems: # kldstat Id Refs Address Size Name 1 15 0xc0400000 5cae28 kernel 2 1 0xc09cb000 59f4 snd_atiixp.ko 3 2 0xc09d1000 22b88 sound.ko 4 1 0xc09f4000 4ae8 atapicam.ko 5 1 0xc09f9000 5a78 if_fwip.ko 6 1 0xc09ff000 59f00 acpi.ko 7 2 0xc4f2f000 16000 linux.ko 8 1 0xc504a000 2000 rtc.ko Hope this will help you guys a bit. Don