From owner-freebsd-ppc@FreeBSD.ORG Sun Aug 22 12:10:50 2010 Return-Path: Delivered-To: powerpc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 143981065694; Sun, 22 Aug 2010 12:10:50 +0000 (UTC) (envelope-from des@des.no) Received: from smtp.des.no (smtp.des.no [194.63.250.102]) by mx1.freebsd.org (Postfix) with ESMTP id C4CE08FC19; Sun, 22 Aug 2010 12:10:49 +0000 (UTC) Received: from ds4.des.no (des.no [84.49.246.2]) by smtp.des.no (Postfix) with ESMTP id D289F1FFC34; Sun, 22 Aug 2010 12:10:48 +0000 (UTC) Received: by ds4.des.no (Postfix, from userid 1001) id A585584497; Sun, 22 Aug 2010 14:10:48 +0200 (CEST) From: =?utf-8?Q?Dag-Erling_Sm=C3=B8rgrav?= To: Nathan Whitehorn References: <201008190304.o7J34Wa4089466@freebsd-current.sentex.ca> <86occzdmhg.fsf@ds4.des.no> <4C6D557E.6080406@freebsd.org> <86sk29ws6u.fsf@ds4.des.no> <4C6E825C.5060509@freebsd.org> <86fwy9f5vj.fsf@ds4.des.no> <4C6F0813.9030007@freebsd.org> <86aaofpr7j.fsf@ds4.des.no> <4C704CD2.9040604@freebsd.org> Date: Sun, 22 Aug 2010 14:10:48 +0200 In-Reply-To: <4C704CD2.9040604@freebsd.org> (Nathan Whitehorn's message of "Sat, 21 Aug 2010 17:01:54 -0500") Message-ID: <86bp8ukfuf.fsf@ds4.des.no> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Cc: powerpc@freebsd.org, FreeBSD Tinderbox , current@freebsd.org Subject: Re: [head tinderbox] failure on powerpc64/powerpc 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: Sun, 22 Aug 2010 12:10:50 -0000 Nathan Whitehorn writes: > Dag-Erling Sm=C3=B8rgrav writes: > > I'm not sure I understand what you mean (or rather, how it would > > help the tinderbox). What *would* help would be an easy way to > > determine, *before* trying to build it, whether a specific kernel > > config is appropriate for a specific target. Can you think of an > > easier way to do this than to scan the config for the "machine" > > line? > That's exactly what I proposed. You use config, before trying the > build, to look up the machine specification for the config file. I > sent you a 5 line patch to tinderbox.pl that does this by private > email. Here's a solution that works regadless of config(8) version, though I'm not sure it qualifies as either easy or clean: Index: tinderbox.pl =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/projcvs/projects/tinderbox/tinderbox.pl,v retrieving revision 1.68 diff -u -r1.68 tinderbox.pl --- tinderbox.pl 25 Aug 2009 17:28:14 -0000 1.68 +++ tinderbox.pl 22 Aug 2010 12:08:46 -0000 @@ -722,10 +722,29 @@ } =20 # Build additional kernels + kernel: foreach my $kernel (sort(keys(%kernels))) { if (! -f "$srcdir/sys/$machine/conf/$kernel") { warning("no kernel config for $kernel"); - next; + next kernel; + } + # Hack: check that the config is appropriate for this target. + # If no "machine" declaration is present, assume that it is. + local *KERNCONF; + if (open(KERNCONF, "<", "$srcdir/sys/$machine/conf/$kernel")) { + while () { + next unless m/^machine\s+(\w+(?:\s+\w+)?)\s*(?:\#.*)?$/; + if ($1 !~ m/^\Q$machine\E(\s+\Q$arch\E)?$/) { + warning("skipping $kernel"); + close(KERNCONF); + next kernel; + } + last; + } + close(KERNCONF); + } else { + warning("$kernel: $!"); + next kernel; } logstage("building $kernel kernel"); logenv(); It will break if the "machine" declaration ever moves into an included file, since it does not follow include statements, but it will do for now. DES --=20 Dag-Erling Sm=C3=B8rgrav - des@des.no From owner-freebsd-ppc@FreeBSD.ORG Sun Aug 22 17:36:24 2010 Return-Path: Delivered-To: powerpc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 035741065670; Sun, 22 Aug 2010 17:36:24 +0000 (UTC) (envelope-from nwhitehorn@freebsd.org) Received: from adsum.doit.wisc.edu (adsum.doit.wisc.edu [144.92.197.210]) by mx1.freebsd.org (Postfix) with ESMTP id C56D28FC15; Sun, 22 Aug 2010 17:36:23 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 8BIT Content-type: text/plain; charset=UTF-8; format=flowed Received: from avs-daemon.smtpauth1.wiscmail.wisc.edu by smtpauth1.wiscmail.wisc.edu (Sun Java(tm) System Messaging Server 7u2-7.05 32bit (built Jul 30 2009)) id <0L7K00H00E8NYC00@smtpauth1.wiscmail.wisc.edu>; Sun, 22 Aug 2010 12:36:23 -0500 (CDT) Received: from comporellon.tachypleus.net ([unknown] [76.210.62.197]) by smtpauth1.wiscmail.wisc.edu (Sun Java(tm) System Messaging Server 7u2-7.05 32bit (built Jul 30 2009)) with ESMTPSA id <0L7K003VKE8KLG40@smtpauth1.wiscmail.wisc.edu>; Sun, 22 Aug 2010 12:36:22 -0500 (CDT) Date: Sun, 22 Aug 2010 12:36:20 -0500 From: Nathan Whitehorn In-reply-to: <86bp8ukfuf.fsf@ds4.des.no> To: =?UTF-8?B?RGFnLUVybGluZyBTbcO4cmdyYXY=?= Message-id: <4C716014.7050400@freebsd.org> X-Spam-Report: AuthenticatedSender=yes, SenderIP=76.210.62.197 X-Spam-PmxInfo: Server=avs-12, Version=5.6.0.2009776, Antispam-Engine: 2.7.2.376379, Antispam-Data: 2010.8.22.172414, SenderIP=76.210.62.197 References: <201008190304.o7J34Wa4089466@freebsd-current.sentex.ca> <86occzdmhg.fsf@ds4.des.no> <4C6D557E.6080406@freebsd.org> <86sk29ws6u.fsf@ds4.des.no> <4C6E825C.5060509@freebsd.org> <86fwy9f5vj.fsf@ds4.des.no> <4C6F0813.9030007@freebsd.org> <86aaofpr7j.fsf@ds4.des.no> <4C704CD2.9040604@freebsd.org> <86bp8ukfuf.fsf@ds4.des.no> User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.1.11) Gecko/20100729 Thunderbird/3.0.6 Cc: powerpc@freebsd.org, FreeBSD Tinderbox , current@freebsd.org Subject: Re: [head tinderbox] failure on powerpc64/powerpc 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: Sun, 22 Aug 2010 17:36:24 -0000 On 08/22/10 07:10, Dag-Erling Smørgrav wrote: > Nathan Whitehorn writes: > >> Dag-Erling Smørgrav writes: >> >>> I'm not sure I understand what you mean (or rather, how it would >>> help the tinderbox). What *would* help would be an easy way to >>> determine, *before* trying to build it, whether a specific kernel >>> config is appropriate for a specific target. Can you think of an >>> easier way to do this than to scan the config for the "machine" >>> line? >>> >> That's exactly what I proposed. You use config, before trying the >> build, to look up the machine specification for the config file. I >> sent you a 5 line patch to tinderbox.pl that does this by private >> email. >> > Here's a solution that works regadless of config(8) version, though I'm > not sure it qualifies as either easy or clean: > > Index: tinderbox.pl > =================================================================== > RCS file: /home/projcvs/projects/tinderbox/tinderbox.pl,v > retrieving revision 1.68 > diff -u -r1.68 tinderbox.pl > --- tinderbox.pl 25 Aug 2009 17:28:14 -0000 1.68 > +++ tinderbox.pl 22 Aug 2010 12:08:46 -0000 > @@ -722,10 +722,29 @@ > } > > # Build additional kernels > + kernel: > foreach my $kernel (sort(keys(%kernels))) { > if (! -f "$srcdir/sys/$machine/conf/$kernel") { > warning("no kernel config for $kernel"); > - next; > + next kernel; > + } > + # Hack: check that the config is appropriate for this target. > + # If no "machine" declaration is present, assume that it is. > + local *KERNCONF; > + if (open(KERNCONF, "<", "$srcdir/sys/$machine/conf/$kernel")) { > + while () { > + next unless m/^machine\s+(\w+(?:\s+\w+)?)\s*(?:\#.*)?$/; > + if ($1 !~ m/^\Q$machine\E(\s+\Q$arch\E)?$/) { > + warning("skipping $kernel"); > + close(KERNCONF); > + next kernel; > + } > + last; > + } > + close(KERNCONF); > + } else { > + warning("$kernel: $!"); > + next kernel; > } > logstage("building $kernel kernel"); > logenv(); > > It will break if the "machine" declaration ever moves into an included > file, since it does not follow include statements, but it will do for > now. > Thanks! I think we are pretty likely to stay in the situation where this hack works for the foreseeable future. -Nathan From owner-freebsd-ppc@FreeBSD.ORG Mon Aug 23 11:07:05 2010 Return-Path: Delivered-To: freebsd-ppc@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 83BB0106564A for ; Mon, 23 Aug 2010 11:07:05 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 720818FC14 for ; Mon, 23 Aug 2010 11:07:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o7NB751S089167 for ; Mon, 23 Aug 2010 11:07:05 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o7NB740w089165 for freebsd-ppc@FreeBSD.org; Mon, 23 Aug 2010 11:07:04 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 23 Aug 2010 11:07:04 GMT Message-Id: <201008231107.o7NB740w089165@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-ppc@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-ppc@FreeBSD.org 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: Mon, 23 Aug 2010 11:07:05 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o power/149009 ppc sysinstall(8) on powerpc fails to install manpages, so o power/140241 ppc [kernel] [patch] Linker set problems on PowerPC EABI o power/135576 ppc gdb cannot debug threaded programs on ppc o power/133503 ppc [sound] Sound stutter after switching ttys o power/133383 ppc firefox thr_kill crash with heavy vm load o power/133382 ppc [install] Installer gets signal 11 o power/131548 ppc ofw_syscons no longer supports 32-bit framebuffer a power/121407 ppc [panic] Won't boot up; strange error message. o power/111296 ppc [kernel] [patch] [request] Support IMISS, DLMISS an DS o power/93203 ppc FreeBSD PPC Can't Write to Partitions. 10 problems total. From owner-freebsd-ppc@FreeBSD.ORG Mon Aug 23 22:21:28 2010 Return-Path: Delivered-To: powerpc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 197F41065697; Mon, 23 Aug 2010 22:21:28 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id D95D48FC21; Mon, 23 Aug 2010 22:21:27 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.3) with ESMTP id o7NMLQl2083353; Mon, 23 Aug 2010 18:21:26 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.3/Submit) id o7NMLQwk083352; Mon, 23 Aug 2010 22:21:26 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 23 Aug 2010 22:21:26 GMT Message-Id: <201008232221.o7NMLQwk083352@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc/powerpc X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 Aug 2010 22:21:28 -0000 TB --- 2010-08-23 20:43:22 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2010-08-23 20:43:22 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2010-08-23 20:43:22 - cleaning the object tree TB --- 2010-08-23 20:44:03 - cvsupping the source tree TB --- 2010-08-23 20:44:03 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc/powerpc/supfile TB --- 2010-08-23 20:44:39 - building world TB --- 2010-08-23 20:44:39 - MAKEOBJDIRPREFIX=/obj TB --- 2010-08-23 20:44:39 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-08-23 20:44:39 - TARGET=powerpc TB --- 2010-08-23 20:44:39 - TARGET_ARCH=powerpc TB --- 2010-08-23 20:44:39 - TZ=UTC TB --- 2010-08-23 20:44:39 - __MAKE_CONF=/dev/null TB --- 2010-08-23 20:44:39 - cd /src TB --- 2010-08-23 20:44:39 - /usr/bin/make -B buildworld >>> World build started on Mon Aug 23 20:44:39 UTC 2010 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -DLOADER_DISK_SUPPORT -DLOADER_UFS_SUPPORT -DLOADER_CD9660_SUPPORT -DLOADER_GZIP_SUPPORT -DLOADER_NET_SUPPORT -DLOADER_NFS_SUPPORT -DBOOT_FORTH -I/src/sys/boot/powerpc/ofw/../../ficl -I/src/sys/boot/powerpc/ofw/../../ficl/powerpc -DNETIF_OPEN_CLOSE_ONCE -I/src/sys/boot/powerpc/ofw/../../common -I/src/sys/boot/powerpc/ofw/../../.. -I. -ffreestanding -msoft-float -DRELOC=0x1C00000 -Wa,-mppc64bridge -I/src/sys/boot/powerpc/ofw/../../ofw/libofw -I/src/sys/boot/powerpc/ofw/../../../../lib/libstand/ -std=gnu99 -c /src/sys/boot/powerpc/ofw/../../common/load_elf32.c cc -O2 -pipe -DLOADER_DISK_SUPPORT -DLOADER_UFS_SUPPORT -DLOADER_CD9660_SUPPORT -DLOADER_GZIP_SUPPORT -DLOADER_NET_SUPPORT -DLOADER_NFS_SUPPORT -DBOOT_FORTH -I/src/sys/boot/powerpc/ofw/../../ficl -I/src/sys/boot/powerpc/ofw/../../ficl/powerpc -DNETIF_OPEN_CLOSE_ONCE -I/src/sys/boot/powerpc/ofw/../../common -I/src/sys/boot/powerpc/ofw/../../.. -I. -ffreestanding -msoft-float -DRELOC=0x1C00000 -Wa,-mppc64bridge -I/src/sys/boot/powerpc/ofw/../../ofw/libofw -I/src/sys/boot/powerpc/ofw/../../../../lib/libstand/ -std=gnu99 -c /src/sys/boot/powerpc/ofw/../../common/reloc_elf32.c cc -O2 -pipe -DLOADER_DISK_SUPPORT -DLOADER_UFS_SUPPORT -DLOADER_CD9660_SUPPORT -DLOADER_GZIP_SUPPORT -DLOADER_NET_SUPPORT -DLOADER_NFS_SUPPORT -DBOOT_FORTH -I/src/sys/boot/powerpc/ofw/../../ficl -I/src/sys/boot/powerpc/ofw/../../ficl/powerpc -DNETIF_OPEN_CLOSE_ONCE -I/src/sys/boot/powerpc/ofw/../../common -I/src/sys/boot/powerpc/ofw/../../.. -I. -ffreestanding -msoft-float -DRELOC=0x1C00000 -Wa,-mppc64bridge -I/src/sys/boot/powerpc/ofw/../../ofw/libofw -I/src/sys/boot/powerpc/ofw/../../../../lib/libstand/ -std=gnu99 -c /src/sys/boot/powerpc/ofw/../../common/dev_net.c cc -O2 -pipe -DLOADER_DISK_SUPPORT -DLOADER_UFS_SUPPORT -DLOADER_CD9660_SUPPORT -DLOADER_GZIP_SUPPORT -DLOADER_NET_SUPPORT -DLOADER_NFS_SUPPORT -DBOOT_FORTH -I/src/sys/boot/powerpc/ofw/../../ficl -I/src/sys/boot/powerpc/ofw/../../ficl/powerpc -DNETIF_OPEN_CLOSE_ONCE -I/src/sys/boot/powerpc/ofw/../../common -I/src/sys/boot/powerpc/ofw/../../.. -I. -ffreestanding -msoft-float -DRELOC=0x1C00000 -Wa,-mppc64bridge -I/src/sys/boot/powerpc/ofw/../../ofw/libofw -I/src/sys/boot/powerpc/ofw/../../../../lib/libstand/ -std=gnu99 -c /src/sys/boot/powerpc/ofw/../../common/interp_forth.c cc -O2 -pipe -DLOADER_DISK_SUPPORT -DLOADER_UFS_SUPPORT -DLOADER_CD9660_SUPPORT -DLOADER_GZIP_SUPPORT -DLOADER_NET_SUPPORT -DLOADER_NFS_SUPPORT -DBOOT_FORTH -I/src/sys/boot/powerpc/ofw/../../ficl -I/src/sys/boot/powerpc/ofw/../../ficl/powerpc -DNETIF_OPEN_CLOSE_ONCE -I/src/sys/boot/powerpc/ofw/../../common -I/src/sys/boot/powerpc/ofw/../../.. -I. -ffreestanding -msoft-float -DRELOC=0x1C00000 -Wa,-mppc64bridge -I/src/sys/boot/powerpc/ofw/../../ofw/libofw -I/src/sys/boot/powerpc/ofw/../../../../lib/libstand/ -std=gnu99 -c /src/sys/boot/powerpc/ofw/../../ofw/common/main.c cc -O2 -pipe -DLOADER_DISK_SUPPORT -DLOADER_UFS_SUPPORT -DLOADER_CD9660_SUPPORT -DLOADER_GZIP_SUPPORT -DLOADER_NET_SUPPORT -DLOADER_NFS_SUPPORT -DBOOT_FORTH -I/src/sys/boot/powerpc/ofw/../../ficl -I/src/sys/boot/powerpc/ofw/../../ficl/powerpc -DNETIF_OPEN_CLOSE_ONCE -I/src/sys/boot/powerpc/ofw/../../common -I/src/sys/boot/powerpc/ofw/../../.. -I. -ffreestanding -msoft-float -DRELOC=0x1C00000 -Wa,-mppc64bridge -I/src/sys/boot/powerpc/ofw/../../ofw/libofw -I/src/sys/boot/powerpc/ofw/../../../../lib/libstand/ -std=gnu99 -nostdlib -static -T /src/sys/boot/powerpc/ofw/ldscript.powerpc -o loader conf.o metadata.o vers.o start.o ucmpdi2.o boot.o commands.o console.o devopen.o interp.o interp_backslash.o interp_parse.o ls.o misc.o module.o panic.o load_elf32.o reloc_elf32.o dev_net.o interp_forth.o main.o /obj/powerpc.powerpc/src/sys/boot/powerpc/ofw/../../ficl/libficl.a /obj/powerpc.powerpc/src/sys/boot/powerpc/ofw/../../ofw/libofw/libofw.a -lstand /obj/powerpc.powerpc/src/sys/boot/powerpc/ofw/../../ofw/libofw/libofw.a(ppc64_elf_freebsd.o)(.text+0xd8): In function `ppc64_ofw_elf_loadfile': : undefined reference to `elf64_loadfile' *** Error code 1 Stop in /src/sys/boot/powerpc/ofw. *** Error code 1 Stop in /src/sys/boot/powerpc. *** Error code 1 Stop in /src/sys/boot. *** Error code 1 Stop in /src/sys. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2010-08-23 22:21:26 - WARNING: /usr/bin/make returned exit code 1 TB --- 2010-08-23 22:21:26 - ERROR: failed to build world TB --- 2010-08-23 22:21:26 - 4196.38 user 1029.75 system 5884.02 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-ppc@FreeBSD.ORG Tue Aug 24 07:48:22 2010 Return-Path: Delivered-To: powerpc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2DB831065697; Tue, 24 Aug 2010 07:48:22 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id C50768FC1C; Tue, 24 Aug 2010 07:48:21 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.3) with ESMTP id o7O7mLnT018711; Tue, 24 Aug 2010 03:48:21 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.3/Submit) id o7O7mLYv018710; Tue, 24 Aug 2010 07:48:21 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 24 Aug 2010 07:48:21 GMT Message-Id: <201008240748.o7O7mLYv018710@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [releng_8 tinderbox] failure on powerpc/powerpc X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2010 07:48:22 -0000 TB --- 2010-08-24 07:09:24 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2010-08-24 07:09:24 - starting RELENG_8 tinderbox run for powerpc/powerpc TB --- 2010-08-24 07:09:24 - cleaning the object tree TB --- 2010-08-24 07:10:39 - cvsupping the source tree TB --- 2010-08-24 07:10:39 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/RELENG_8/powerpc/powerpc/supfile TB --- 2010-08-24 07:16:45 - building world TB --- 2010-08-24 07:16:45 - MAKEOBJDIRPREFIX=/obj TB --- 2010-08-24 07:16:45 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-08-24 07:16:45 - TARGET=powerpc TB --- 2010-08-24 07:16:45 - TARGET_ARCH=powerpc TB --- 2010-08-24 07:16:45 - TZ=UTC TB --- 2010-08-24 07:16:45 - __MAKE_CONF=/dev/null TB --- 2010-08-24 07:16:45 - cd /src TB --- 2010-08-24 07:16:45 - /usr/bin/make -B buildworld >>> World build started on Tue Aug 24 07:16:46 UTC 2010 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies [...] mkdep -f .depend -a /src/usr.bin/c89/c89.c echo c89: /obj/powerpc/src/tmp/usr/lib/libc.a >> .depend ===> usr.bin/c99 (depend) rm -f .depend mkdep -f .depend -a /src/usr.bin/c99/c99.c echo c99: /obj/powerpc/src/tmp/usr/lib/libc.a >> .depend ===> usr.bin/calendar (depend) make: don't know how to make locale.c. Stop *** Error code 2 Stop in /src/usr.bin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2010-08-24 07:48:20 - WARNING: /usr/bin/make returned exit code 1 TB --- 2010-08-24 07:48:20 - ERROR: failed to build world TB --- 2010-08-24 07:48:20 - 1342.73 user 465.74 system 2336.35 real http://tinderbox.freebsd.org/tinderbox-releng_8-RELENG_8-powerpc-powerpc.full From owner-freebsd-ppc@FreeBSD.ORG Tue Aug 24 10:01:57 2010 Return-Path: Delivered-To: freebsd-ppc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 88D191065694 for ; Tue, 24 Aug 2010 10:01:57 +0000 (UTC) (envelope-from euphoria@billyfranks.com) Received: from mk-filter-3-a-1.mail.uk.tiscali.com (mk-filter-3-a-1.mail.uk.tiscali.com [212.74.100.54]) by mx1.freebsd.org (Postfix) with ESMTP id 100CA8FC0C for ; Tue, 24 Aug 2010 10:01:56 +0000 (UTC) X-Trace: 475487390/mk-filter-3.mail.uk.tiscali.com/B2C/$b2c-THROTTLED-DYNAMIC/b2c-CUSTOMER-DYNAMIC-IP/79.69.56.121/None/euphoria@billyfranks.com X-SBRS: None X-RemoteIP: 79.69.56.121 X-IP-MAIL-FROM: euphoria@billyfranks.com X-SMTP-AUTH: X-Originating-Country: GB/UNITED KINGDOM X-MUA: aspNetEmail ver 3.6.1.5 X-IP-BHB: Once X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AvsEACMvc0xPRTh5/2dsb2JhbACgPXK5RoU3BA X-IronPort-AV: E=Sophos;i="4.56,262,1280703600"; d="scan'208";a="475487390" Received: from 79-69-56-121.dynamic.dsl.as9105.com (HELO BillyPC) ([79.69.56.121]) by smtp.tiscali.co.uk with SMTP; 24 Aug 2010 10:33:02 +0100 From: "Billy Franks" To: "freebsd-ppc@freebsd.org" Date: Tue, 24 Aug 2010 10:23:14 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Mailer: aspNetEmail ver 3.6.1.5 Message-ID: Subject: Free compilation album from legendary songsmith Billy Franks - With an introduction by best selling author, Christopher Brookmyre X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: euphoria@billyfranks.com List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2010 10:01:57 -0000 Hi,=0D=0A=0D=0A=22Penning Classics and garnering praise from Bono, Peter = Gabriel =26 Oasis=22 THE GUARDIAN=0D=0A=0D=0A=22Songwriting from the top = drawer=22 TIME OUT=2E=0D=0A=0D=0A=22Imagine McCartney=27s craftsmanship a= nd Springsteen=27s power and you=27ll get the gist=22 Q MAGAZINE=0D=0A=0D= =0A=0D=0A=0D=0AAs it seems I am only really know by famous novelists and = rock stars, I thought I might introduce myself by giving awayt a free com= pilation of 12 of my best songs from 6 albums spanning 2 decades=2E=0D=0A= =0D=0ATo grab your=27s just email euphoria=40billyfranks=2Ecom and you = will get the download link=2E=0D=0A=0D=0AIf ya want to read Christopher B= rookmyres introduction, here it is:=0D=0A=0D=0AEuphoria=0D=0A=0D=0AIt?s t= he first word that always comes to mind whenever I attempt to describe Bi= lly Franks? music=2E It refers primarily to an almost excessive feeling o= f joy, but for me the more important aspect that connects it to these son= gs is that sense of being consumed by an emotion; that sense of an unstop= pable, volcanic, up-rushing of passion, that exhilarating but tantalising= feeling you get when you are experiencing something that cannot be expre= ssed in mere language, nor even mere music=2E =0D=0A=0D=0AAnybody can wri= te a song about love=2E Not anybody can make you feel love, feel loss, fe= el pain, feel desire, feel ecstasy=2E Not anybody can make you feel eupho= ria=2E Billy Franks can=2E=0D=0A=0D=0AChristopher Brookmyre=0D=0A From owner-freebsd-ppc@FreeBSD.ORG Tue Aug 24 12:28:15 2010 Return-Path: Delivered-To: powerpc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 178B51065695; Tue, 24 Aug 2010 12:28:15 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id D555B8FC25; Tue, 24 Aug 2010 12:28:14 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.3) with ESMTP id o7OCSE6x099086; Tue, 24 Aug 2010 08:28:14 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.3/Submit) id o7OCSE05099085; Tue, 24 Aug 2010 12:28:14 GMT (envelope-from tinderbox@freebsd.org) Date: Tue, 24 Aug 2010 12:28:14 GMT Message-Id: <201008241228.o7OCSE05099085@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc/powerpc X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Aug 2010 12:28:15 -0000 TB --- 2010-08-24 10:54:47 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2010-08-24 10:54:47 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2010-08-24 10:54:47 - cleaning the object tree TB --- 2010-08-24 10:55:14 - cvsupping the source tree TB --- 2010-08-24 10:55:14 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc/powerpc/supfile TB --- 2010-08-24 10:55:53 - building world TB --- 2010-08-24 10:55:53 - MAKEOBJDIRPREFIX=/obj TB --- 2010-08-24 10:55:53 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-08-24 10:55:53 - TARGET=powerpc TB --- 2010-08-24 10:55:53 - TARGET_ARCH=powerpc TB --- 2010-08-24 10:55:53 - TZ=UTC TB --- 2010-08-24 10:55:53 - __MAKE_CONF=/dev/null TB --- 2010-08-24 10:55:53 - cd /src TB --- 2010-08-24 10:55:53 - /usr/bin/make -B buildworld >>> World build started on Tue Aug 24 10:55:54 UTC 2010 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -DLOADER_DISK_SUPPORT -DLOADER_UFS_SUPPORT -DLOADER_CD9660_SUPPORT -DLOADER_GZIP_SUPPORT -DLOADER_NET_SUPPORT -DLOADER_NFS_SUPPORT -DBOOT_FORTH -I/src/sys/boot/powerpc/ofw/../../ficl -I/src/sys/boot/powerpc/ofw/../../ficl/powerpc -DNETIF_OPEN_CLOSE_ONCE -I/src/sys/boot/powerpc/ofw/../../common -I/src/sys/boot/powerpc/ofw/../../.. -I. -ffreestanding -msoft-float -DRELOC=0x1C00000 -Wa,-mppc64bridge -I/src/sys/boot/powerpc/ofw/../../ofw/libofw -I/src/sys/boot/powerpc/ofw/../../../../lib/libstand/ -std=gnu99 -c /src/sys/boot/powerpc/ofw/../../common/load_elf32.c cc -O2 -pipe -DLOADER_DISK_SUPPORT -DLOADER_UFS_SUPPORT -DLOADER_CD9660_SUPPORT -DLOADER_GZIP_SUPPORT -DLOADER_NET_SUPPORT -DLOADER_NFS_SUPPORT -DBOOT_FORTH -I/src/sys/boot/powerpc/ofw/../../ficl -I/src/sys/boot/powerpc/ofw/../../ficl/powerpc -DNETIF_OPEN_CLOSE_ONCE -I/src/sys/boot/powerpc/ofw/../../common -I/src/sys/boot/powerpc/ofw/../../.. -I. -ffreestanding -msoft-float -DRELOC=0x1C00000 -Wa,-mppc64bridge -I/src/sys/boot/powerpc/ofw/../../ofw/libofw -I/src/sys/boot/powerpc/ofw/../../../../lib/libstand/ -std=gnu99 -c /src/sys/boot/powerpc/ofw/../../common/reloc_elf32.c cc -O2 -pipe -DLOADER_DISK_SUPPORT -DLOADER_UFS_SUPPORT -DLOADER_CD9660_SUPPORT -DLOADER_GZIP_SUPPORT -DLOADER_NET_SUPPORT -DLOADER_NFS_SUPPORT -DBOOT_FORTH -I/src/sys/boot/powerpc/ofw/../../ficl -I/src/sys/boot/powerpc/ofw/../../ficl/powerpc -DNETIF_OPEN_CLOSE_ONCE -I/src/sys/boot/powerpc/ofw/../../common -I/src/sys/boot/powerpc/ofw/../../.. -I. -ffreestanding -msoft-float -DRELOC=0x1C00000 -Wa,-mppc64bridge -I/src/sys/boot/powerpc/ofw/../../ofw/libofw -I/src/sys/boot/powerpc/ofw/../../../../lib/libstand/ -std=gnu99 -c /src/sys/boot/powerpc/ofw/../../common/dev_net.c cc -O2 -pipe -DLOADER_DISK_SUPPORT -DLOADER_UFS_SUPPORT -DLOADER_CD9660_SUPPORT -DLOADER_GZIP_SUPPORT -DLOADER_NET_SUPPORT -DLOADER_NFS_SUPPORT -DBOOT_FORTH -I/src/sys/boot/powerpc/ofw/../../ficl -I/src/sys/boot/powerpc/ofw/../../ficl/powerpc -DNETIF_OPEN_CLOSE_ONCE -I/src/sys/boot/powerpc/ofw/../../common -I/src/sys/boot/powerpc/ofw/../../.. -I. -ffreestanding -msoft-float -DRELOC=0x1C00000 -Wa,-mppc64bridge -I/src/sys/boot/powerpc/ofw/../../ofw/libofw -I/src/sys/boot/powerpc/ofw/../../../../lib/libstand/ -std=gnu99 -c /src/sys/boot/powerpc/ofw/../../common/interp_forth.c cc -O2 -pipe -DLOADER_DISK_SUPPORT -DLOADER_UFS_SUPPORT -DLOADER_CD9660_SUPPORT -DLOADER_GZIP_SUPPORT -DLOADER_NET_SUPPORT -DLOADER_NFS_SUPPORT -DBOOT_FORTH -I/src/sys/boot/powerpc/ofw/../../ficl -I/src/sys/boot/powerpc/ofw/../../ficl/powerpc -DNETIF_OPEN_CLOSE_ONCE -I/src/sys/boot/powerpc/ofw/../../common -I/src/sys/boot/powerpc/ofw/../../.. -I. -ffreestanding -msoft-float -DRELOC=0x1C00000 -Wa,-mppc64bridge -I/src/sys/boot/powerpc/ofw/../../ofw/libofw -I/src/sys/boot/powerpc/ofw/../../../../lib/libstand/ -std=gnu99 -c /src/sys/boot/powerpc/ofw/../../ofw/common/main.c cc -O2 -pipe -DLOADER_DISK_SUPPORT -DLOADER_UFS_SUPPORT -DLOADER_CD9660_SUPPORT -DLOADER_GZIP_SUPPORT -DLOADER_NET_SUPPORT -DLOADER_NFS_SUPPORT -DBOOT_FORTH -I/src/sys/boot/powerpc/ofw/../../ficl -I/src/sys/boot/powerpc/ofw/../../ficl/powerpc -DNETIF_OPEN_CLOSE_ONCE -I/src/sys/boot/powerpc/ofw/../../common -I/src/sys/boot/powerpc/ofw/../../.. -I. -ffreestanding -msoft-float -DRELOC=0x1C00000 -Wa,-mppc64bridge -I/src/sys/boot/powerpc/ofw/../../ofw/libofw -I/src/sys/boot/powerpc/ofw/../../../../lib/libstand/ -std=gnu99 -nostdlib -static -T /src/sys/boot/powerpc/ofw/ldscript.powerpc -o loader conf.o metadata.o vers.o start.o ucmpdi2.o boot.o commands.o console.o devopen.o interp.o interp_backslash.o interp_parse.o ls.o misc.o module.o panic.o load_elf32.o reloc_elf32.o dev_net.o interp_forth.o main.o /obj/powerpc.powerpc/src/sys/boot/powerpc/ofw/../../ficl/libficl.a /obj/powerpc.powerpc/src/sys/boot/powerpc/ofw/../../ofw/libofw/libofw.a -lstand /obj/powerpc.powerpc/src/sys/boot/powerpc/ofw/../../ofw/libofw/libofw.a(ppc64_elf_freebsd.o)(.text+0xd8): In function `ppc64_ofw_elf_loadfile': : undefined reference to `elf64_loadfile' *** Error code 1 Stop in /src/sys/boot/powerpc/ofw. *** Error code 1 Stop in /src/sys/boot/powerpc. *** Error code 1 Stop in /src/sys/boot. *** Error code 1 Stop in /src/sys. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2010-08-24 12:28:13 - WARNING: /usr/bin/make returned exit code 1 TB --- 2010-08-24 12:28:13 - ERROR: failed to build world TB --- 2010-08-24 12:28:13 - 4141.86 user 992.57 system 5606.12 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-ppc@FreeBSD.ORG Wed Aug 25 04:05:55 2010 Return-Path: Delivered-To: powerpc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3DEAB106564A; Wed, 25 Aug 2010 04:05:55 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 1027B8FC23; Wed, 25 Aug 2010 04:05:54 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.4/8.14.3) with ESMTP id o7P45sHH004066; Wed, 25 Aug 2010 00:05:54 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.4/8.14.3/Submit) id o7P45soi004065; Wed, 25 Aug 2010 04:05:54 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 25 Aug 2010 04:05:54 GMT Message-Id: <201008250405.o7P45soi004065@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Cc: Subject: [head tinderbox] failure on powerpc/powerpc X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Aug 2010 04:05:55 -0000 TB --- 2010-08-25 02:32:05 - tinderbox 2.6 running on freebsd-current.sentex.ca TB --- 2010-08-25 02:32:05 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2010-08-25 02:32:05 - cleaning the object tree TB --- 2010-08-25 02:32:26 - cvsupping the source tree TB --- 2010-08-25 02:32:26 - /usr/bin/csup -z -r 3 -g -L 1 -h cvsup.sentex.ca /tinderbox/HEAD/powerpc/powerpc/supfile TB --- 2010-08-25 02:33:07 - building world TB --- 2010-08-25 02:33:07 - MAKEOBJDIRPREFIX=/obj TB --- 2010-08-25 02:33:07 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2010-08-25 02:33:07 - TARGET=powerpc TB --- 2010-08-25 02:33:07 - TARGET_ARCH=powerpc TB --- 2010-08-25 02:33:07 - TZ=UTC TB --- 2010-08-25 02:33:07 - __MAKE_CONF=/dev/null TB --- 2010-08-25 02:33:07 - cd /src TB --- 2010-08-25 02:33:07 - /usr/bin/make -B buildworld >>> World build started on Wed Aug 25 02:33:08 UTC 2010 >>> Rebuilding the temporary build tree >>> stage 1.1: legacy release compatibility shims >>> stage 1.2: bootstrap tools >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3: cross tools >>> stage 4.1: building includes >>> stage 4.2: building libraries >>> stage 4.3: make dependencies >>> stage 4.4: building everything [...] cc -O2 -pipe -DLOADER_DISK_SUPPORT -DLOADER_UFS_SUPPORT -DLOADER_CD9660_SUPPORT -DLOADER_GZIP_SUPPORT -DLOADER_NET_SUPPORT -DLOADER_NFS_SUPPORT -DBOOT_FORTH -I/src/sys/boot/powerpc/ofw/../../ficl -I/src/sys/boot/powerpc/ofw/../../ficl/powerpc -DNETIF_OPEN_CLOSE_ONCE -I/src/sys/boot/powerpc/ofw/../../common -I/src/sys/boot/powerpc/ofw/../../.. -I. -ffreestanding -msoft-float -DRELOC=0x1C00000 -Wa,-mppc64bridge -I/src/sys/boot/powerpc/ofw/../../ofw/libofw -I/src/sys/boot/powerpc/ofw/../../../../lib/libstand/ -std=gnu99 -c /src/sys/boot/powerpc/ofw/../../common/load_elf32.c cc -O2 -pipe -DLOADER_DISK_SUPPORT -DLOADER_UFS_SUPPORT -DLOADER_CD9660_SUPPORT -DLOADER_GZIP_SUPPORT -DLOADER_NET_SUPPORT -DLOADER_NFS_SUPPORT -DBOOT_FORTH -I/src/sys/boot/powerpc/ofw/../../ficl -I/src/sys/boot/powerpc/ofw/../../ficl/powerpc -DNETIF_OPEN_CLOSE_ONCE -I/src/sys/boot/powerpc/ofw/../../common -I/src/sys/boot/powerpc/ofw/../../.. -I. -ffreestanding -msoft-float -DRELOC=0x1C00000 -Wa,-mppc64bridge -I/src/sys/boot/powerpc/ofw/../../ofw/libofw -I/src/sys/boot/powerpc/ofw/../../../../lib/libstand/ -std=gnu99 -c /src/sys/boot/powerpc/ofw/../../common/reloc_elf32.c cc -O2 -pipe -DLOADER_DISK_SUPPORT -DLOADER_UFS_SUPPORT -DLOADER_CD9660_SUPPORT -DLOADER_GZIP_SUPPORT -DLOADER_NET_SUPPORT -DLOADER_NFS_SUPPORT -DBOOT_FORTH -I/src/sys/boot/powerpc/ofw/../../ficl -I/src/sys/boot/powerpc/ofw/../../ficl/powerpc -DNETIF_OPEN_CLOSE_ONCE -I/src/sys/boot/powerpc/ofw/../../common -I/src/sys/boot/powerpc/ofw/../../.. -I. -ffreestanding -msoft-float -DRELOC=0x1C00000 -Wa,-mppc64bridge -I/src/sys/boot/powerpc/ofw/../../ofw/libofw -I/src/sys/boot/powerpc/ofw/../../../../lib/libstand/ -std=gnu99 -c /src/sys/boot/powerpc/ofw/../../common/dev_net.c cc -O2 -pipe -DLOADER_DISK_SUPPORT -DLOADER_UFS_SUPPORT -DLOADER_CD9660_SUPPORT -DLOADER_GZIP_SUPPORT -DLOADER_NET_SUPPORT -DLOADER_NFS_SUPPORT -DBOOT_FORTH -I/src/sys/boot/powerpc/ofw/../../ficl -I/src/sys/boot/powerpc/ofw/../../ficl/powerpc -DNETIF_OPEN_CLOSE_ONCE -I/src/sys/boot/powerpc/ofw/../../common -I/src/sys/boot/powerpc/ofw/../../.. -I. -ffreestanding -msoft-float -DRELOC=0x1C00000 -Wa,-mppc64bridge -I/src/sys/boot/powerpc/ofw/../../ofw/libofw -I/src/sys/boot/powerpc/ofw/../../../../lib/libstand/ -std=gnu99 -c /src/sys/boot/powerpc/ofw/../../common/interp_forth.c cc -O2 -pipe -DLOADER_DISK_SUPPORT -DLOADER_UFS_SUPPORT -DLOADER_CD9660_SUPPORT -DLOADER_GZIP_SUPPORT -DLOADER_NET_SUPPORT -DLOADER_NFS_SUPPORT -DBOOT_FORTH -I/src/sys/boot/powerpc/ofw/../../ficl -I/src/sys/boot/powerpc/ofw/../../ficl/powerpc -DNETIF_OPEN_CLOSE_ONCE -I/src/sys/boot/powerpc/ofw/../../common -I/src/sys/boot/powerpc/ofw/../../.. -I. -ffreestanding -msoft-float -DRELOC=0x1C00000 -Wa,-mppc64bridge -I/src/sys/boot/powerpc/ofw/../../ofw/libofw -I/src/sys/boot/powerpc/ofw/../../../../lib/libstand/ -std=gnu99 -c /src/sys/boot/powerpc/ofw/../../ofw/common/main.c cc -O2 -pipe -DLOADER_DISK_SUPPORT -DLOADER_UFS_SUPPORT -DLOADER_CD9660_SUPPORT -DLOADER_GZIP_SUPPORT -DLOADER_NET_SUPPORT -DLOADER_NFS_SUPPORT -DBOOT_FORTH -I/src/sys/boot/powerpc/ofw/../../ficl -I/src/sys/boot/powerpc/ofw/../../ficl/powerpc -DNETIF_OPEN_CLOSE_ONCE -I/src/sys/boot/powerpc/ofw/../../common -I/src/sys/boot/powerpc/ofw/../../.. -I. -ffreestanding -msoft-float -DRELOC=0x1C00000 -Wa,-mppc64bridge -I/src/sys/boot/powerpc/ofw/../../ofw/libofw -I/src/sys/boot/powerpc/ofw/../../../../lib/libstand/ -std=gnu99 -nostdlib -static -T /src/sys/boot/powerpc/ofw/ldscript.powerpc -o loader conf.o metadata.o vers.o start.o ucmpdi2.o boot.o commands.o console.o devopen.o interp.o interp_backslash.o interp_parse.o ls.o misc.o module.o panic.o load_elf32.o reloc_elf32.o dev_net.o interp_forth.o main.o /obj/powerpc.powerpc/src/sys/boot/powerpc/ofw/../../ficl/libficl.a /obj/powerpc.powerpc/src/sys/boot/powerpc/ofw/../../ofw/libofw/libofw.a -lstand /obj/powerpc.powerpc/src/sys/boot/powerpc/ofw/../../ofw/libofw/libofw.a(ppc64_elf_freebsd.o)(.text+0xd8): In function `ppc64_ofw_elf_loadfile': : undefined reference to `elf64_loadfile' *** Error code 1 Stop in /src/sys/boot/powerpc/ofw. *** Error code 1 Stop in /src/sys/boot/powerpc. *** Error code 1 Stop in /src/sys/boot. *** Error code 1 Stop in /src/sys. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2010-08-25 04:05:54 - WARNING: /usr/bin/make returned exit code 1 TB --- 2010-08-25 04:05:54 - ERROR: failed to build world TB --- 2010-08-25 04:05:54 - 4170.81 user 969.22 system 5628.40 real http://tinderbox.freebsd.org/tinderbox-head-HEAD-powerpc-powerpc.full