From owner-freebsd-ppc@FreeBSD.ORG Wed Oct 25 21:06:45 2006 Return-Path: X-Original-To: freebsd-ppc@freebsd.org Delivered-To: freebsd-ppc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D837C16A40F for ; Wed, 25 Oct 2006 21:06:45 +0000 (UTC) (envelope-from grehan@freebsd.org) Received: from dommail.onthenet.com.au (dommail.OntheNet.com.au [203.13.70.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFE5C43D6E for ; Wed, 25 Oct 2006 21:06:39 +0000 (GMT) (envelope-from grehan@freebsd.org) Received: from [10.33.24.110] (nat-198-95-226-228.netapp.com [198.95.226.228]) by dommail.onthenet.com.au (MOS 3.5.7-GR) with ESMTP id CGC72707 (AUTH peterg@ptree32.com.au); Thu, 26 Oct 2006 07:05:17 +1000 (EST) Message-ID: <453FD1C5.3050802@freebsd.org> Date: Wed, 25 Oct 2006 14:06:13 -0700 From: Peter Grehan User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.8b) Gecko/20051014 MIME-Version: 1.0 To: Soeren Straarup References: <20061024204307.GA76412@x12.dk> <453EB55D.10008@freebsd.org> <20061025093147.GB88213@x12.dk> <20061025094129.GC88213@x12.dk> <20061025202431.GB98926@x12.dk> In-Reply-To: <20061025202431.GB98926@x12.dk> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ppc@freebsd.org Subject: Re: Trying to boot FBSD on g3 B&W X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Oct 2006 21:06:45 -0000 Hi Soeren, > I have put up the dmesg from my boot attemp: > http://people.freebsd.org/~xride/dmesg.g3bnw-20061025.txt > But i can't install sysinstall doesn't see ad0. The CMD 646U2 is a notoriously bad ATA controller :) I think if you break into the loader and disable ATA DMA: set hw.ata.ata_dma=0 And probably disable it for atapi as well: set hw.ata.atapi_dma=0 > All the onboard nic is not found. Yep, it's not supported. I used an Intel fxp in one of the PCI slots: works fine. The on-board NIC is a non-PCI Apple custom: the BMAC chip, which uses the DMA controller in the macio chip. > Where can i still digging in the src tree? i'm trying to learn more. The mac stuff is in the sys/powerpc/powermac directory. The files that apply to the B&W are grackle* and hrowpic* later, Peter.