From owner-freebsd-ppc@FreeBSD.ORG Fri May 13 02:12:17 2005 Return-Path: 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 A6C2B16A4CE for ; Fri, 13 May 2005 02:12:17 +0000 (GMT) Received: from liberty.onthenet.com.au (liberty.OntheNet.com.au [203.22.124.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id E540E43D3F for ; Fri, 13 May 2005 02:12:16 +0000 (GMT) (envelope-from grehan@freebsd.org) Received: from [203.13.71.95] (CPE-71-95.dsl.OntheNet.net [203.13.71.95]) j4D2CBnP043137; Fri, 13 May 2005 12:12:13 +1000 (EST) (envelope-from grehan@freebsd.org) Message-ID: <42840CEF.4000200@freebsd.org> Date: Fri, 13 May 2005 12:11:59 +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: Michael Dexter References: <427D6568.3010505@freebsd.org> In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-ppc@freebsd.org Subject: Re: Installing FreeBSD from CD X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 May 2005 02:12:17 -0000 Hi Michael, > Failing that, I concluded that it would be easiest to mount the > PowerBook (Pismo) in FireWire "target disk mode" on an x86 system from > which I can partition and install software either from install ISO > binaries or source. > > Assumption: UFS2 under x86 will be the same as UFS2 under PowerPC. Flawed? Yes :( The FreeBSD UFS code will only work on the endian type that created the filesystem. (NetBSD can be compiled to do this - it detects the disk endian and byte-swaps appropriately). PPC and i386 won't be able to read a UFS volume created by the other. Even though the kernel can't detect the media bay, the loader can still use it, so I'd recommend an NFS install. > Else from source but I encountered the following build errors: ... > And under current: > > building shared library libasn1.so.7 > Abort trap (core dumped) > *** Error code 134 > > Stop in /usr/src/kerberos5/lib/libasn1. > *** Error code 1 The compiler needs to be patched http://people.freebsd.org/~grehan/sysv4.h.diff http://people.freebsd.org/~grehan/rs6000.c.diff > Was miniinst.iso created with a normal 'make release' process? Yep, on an eMac. All the release stuff is in the tree. later, Peter.