From owner-freebsd-ppc@FreeBSD.ORG Tue Nov 1 09:35:28 2005 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 8D97E16A41F for ; Tue, 1 Nov 2005 09:35:28 +0000 (GMT) (envelope-from grehan@freebsd.org) Received: from cayenne.onthenet.com.au (cacheflow.OntheNet.com.au [203.22.124.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FAD743D45 for ; Tue, 1 Nov 2005 09:35:27 +0000 (GMT) (envelope-from grehan@freebsd.org) Received: from [203.144.18.169] (CPE-18-169.dsl.OntheNet.net [203.144.18.169]) by cayenne.onthenet.com.au (Postfix) with ESMTP id 1B5FE75917F; Tue, 1 Nov 2005 19:35:26 +1000 (EST) Message-ID: <436736F3.9050902@freebsd.org> Date: Tue, 01 Nov 2005 19:35:47 +1000 From: Peter Grehan User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.2) Gecko/20041016 X-Accept-Language: en-us, en MIME-Version: 1.0 To: David Niergarth References: <4365B8C5.2010304@tds.net> In-Reply-To: <4365B8C5.2010304@tds.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ppc@freebsd.org Subject: Re: First boot question 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: Tue, 01 Nov 2005 09:35:28 -0000 Hi David, > Is it possible to boot FreeBSD from an external drive (Firewire)? How > about a second internal drive (IDE)? Yes and yes ! :) > The iso_install.txt file uses the following example: > > 0 > boot cd:,\boot\loader hd:11 > > "hd" appears to be a device alias for disk0. My question is how to > specify disk1 or a Firewire drive? At the openfirmware prompt, issue a 'devalias' command and you'll see what some of the device-name shortcuts are. I'd say the second IDE drive would be 'hd1'. For a firewire drive, the alis is most likely fw/node/sbp-2/disk@0:X .. where X is the partition number. e.g. to boot from partition 3 on the external firewire drive: 0 > boot cd:,\boot\loader fw/node/sbp-2/disk@0:3 later, Peter.