From owner-freebsd-ppc@FreeBSD.ORG Mon Oct 30 11:08:32 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 AE4B416A54B for ; Mon, 30 Oct 2006 11:08:32 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 307C743D66 for ; Mon, 30 Oct 2006 11:08:32 +0000 (GMT) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k9UB8WFk085960 for ; Mon, 30 Oct 2006 11:08:32 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k9UB8Uue085956 for freebsd-ppc@FreeBSD.org; Mon, 30 Oct 2006 11:08:30 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 30 Oct 2006 11:08:30 GMT Message-Id: <200610301108.k9UB8Uue085956@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: linimon set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-ppc@FreeBSD.org Cc: Subject: Current problem reports assigned to you 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, 30 Oct 2006 11:08:32 -0000 Current FreeBSD problem reports Critical problems Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- o power/93203 ppc FreeBSD PPC Can't Write to Partitions. 1 problem total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- o power/95367 ppc docs for ppc release. 1 problem total. From owner-freebsd-ppc@FreeBSD.ORG Tue Oct 31 04:05:35 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 6E1CF16A492 for ; Tue, 31 Oct 2006 04:05:35 +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 0D75743D46 for ; Tue, 31 Oct 2006 04:05:33 +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 CGN84219 (AUTH peterg@ptree32.com.au); Tue, 31 Oct 2006 14:05:24 +1000 (EST) Message-ID: <4546CBB7.4040202@freebsd.org> Date: Mon, 30 Oct 2006 20:06:15 -0800 From: Peter Grehan User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.8b) Gecko/20051014 MIME-Version: 1.0 To: Rafal Jaworowski References: <4542188D.6010600@semihalf.com> In-Reply-To: <4542188D.6010600@semihalf.com> Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ppc@freebsd.org Subject: Re: PowerPC architecture directory layout 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, 31 Oct 2006 04:05:35 -0000 Hi Rafal, > we're in the process of porting FreeBSD 6.1 to the Freescale MPC85555 > embedded PowerPC platform. This is PowerQUICC3 integrated telecom > controller based on the e500 (Book E compliant) core, which is different > in some important aspects from the "traditional" PowerPC family (AIM). Great ! > There are some general issues we identified and we'd like to discuss: > > Current FreeBSD/powerpc port is deeply entangled with OF and Mac > dependencies: when adding support for a new architecture variant one is > faced with sys/powerpc/powerpc which is the low-level stuff, quite often > strictly OF/Mac-oriented. Yep. > Our initial thoughts and approach was splitting out the > existing low-level code into the following hierarchy: > > sys/powerpc/powerpc - files common to all PowerPC variants > sys/powerpc/aim - specific to "traditional" PowerPC specs > (most of present sys/powerpc/powerpc) > sys/powerpc/{e500, others} - specific to e500 or other specs to be > supported I'd like to keep all aim (oea ?)/e500/other-arch processor-specific stuff in the powerpc directory if possible, since I think that there isn't a whole lot there. i/o could go into it's own directory such as the existing powermac directory. What I want to avoid is the confusion of processor type/board type as in netBSD where they are in a flat space under arch. > The problem with current PowerPC port however is OF dependencies, so to > have really clean separation for potential further platforms support the > current port should be also split into strict AIM part (which would be > used by all AIM ports) and strict OF part. Yep, the OF stuff should be carved out and dumped into the ofw directory. > What is your view and recommended route to follow? Can we work together > on redisigning the sys/powerpc layout to make it more extensible when > new platforms are added etc.? My goals would be: - as much runtime customization as possible. The CPU type can be determined very early in the boot sequence and a CPU-specific function table init'd. This would have routines for setting up vectors, context switching, the mmu kobj, cache syncing etc. - it should be mandatory for the bootloader to pass up FreeBSD-style metadata. - a way of describing bus layout would be very useful. Something like the Linux device tree compiler, but BSD licensed :) That way, a platform could supply it's own nexus driver and enumerate buses for the on-chip peripherals that abound in the embedded PPC world. > I believe FreeBSD/ARM folks must have had similar considerations > exercise as they have a number of different variations within ARM > family, maybe we can learn from them somehow? I tend to think that PPC systems are a lot less memory constrained than ARM systems, and as such don't need the same level of compile-time customization. I would hope that there isn't a proliferation of kernel config files for PPC systems - in my utopia, GENERIC would be able to deal with all processor types and board options, and you would only need a custom config to reduce options. later, Peter. From owner-freebsd-ppc@FreeBSD.ORG Tue Oct 31 19:00:47 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 6FFB416A403; Tue, 31 Oct 2006 19:00:47 +0000 (UTC) (envelope-from raj@semihalf.com) Received: from mail.semihalf.com (mail.semihalf.com [62.233.211.107]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCB4943DE8; Tue, 31 Oct 2006 18:58:02 +0000 (GMT) (envelope-from raj@semihalf.com) Received: from localhost (localhost [127.0.0.1]) by mail.semihalf.com (Postfix) with ESMTP id 44D3E143A8; Tue, 31 Oct 2006 19:58:00 +0100 (CET) Received: from mail.semihalf.com ([127.0.0.1]) by localhost (mail.semihalf.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04955-01; Tue, 31 Oct 2006 19:57:58 +0100 (CET) Message-ID: <45479CB5.3040403@semihalf.com> Date: Tue, 31 Oct 2006 19:57:57 +0100 From: Rafal Jaworowski MIME-Version: 1.0 To: Peter Grehan References: <4542188D.6010600@semihalf.com> <4546CBB7.4040202@freebsd.org> In-Reply-To: <4546CBB7.4040202@freebsd.org> Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at semihalf.com Cc: freebsd-ppc@freebsd.org Subject: Re: PowerPC architecture directory layout 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, 31 Oct 2006 19:00:47 -0000 Hi Peter, Peter Grehan wrote: > >> Our initial thoughts and approach was splitting out the existing >> low-level code into the following hierarchy: >> >> sys/powerpc/powerpc - files common to all PowerPC variants >> sys/powerpc/aim - specific to "traditional" PowerPC specs >> (most of present sys/powerpc/powerpc) >> sys/powerpc/{e500, others} - specific to e500 or other specs to be >> supported > > I'd like to keep all aim (oea ?)/e500/other-arch processor-specific > stuff in the powerpc directory if possible, since I think that there > isn't a whole lot there. > Well, I guess there is quite a lot when considering the non-traditional (like BookE, IBM/AMCC 4xx) variants of PowerPC (where we have a completely different MMU design, new/changed exceptions, own local buses, changes to vectors handling etc.) - they are very much just a different CPU happening to have a similar core, although usually with new and specific machine instructions not seen on the "traditional". For example, see the summary of our current and forseen changes to the sys/powerpc/powerpc files: clock.c - OF-entangled, requires at least changes to decrementer initialisation copyinout.c - changes required due to different MMU design, address spaces management etc. interrupt.c - not sure yet, may require changes locore.S - complete replacement, no common parts with existing code machdep.c - significant changes to init pieces, new helper routines, and yet more to come nexus.c - complete replacement (existing is OF-only) pmap.c - complete replacement (new MMU design: based on TLB-only approach, no segments/BATs as in "traditional" PowerPC) swtch.S - changes required as now is using segment regs explicitly trap.c, trap_subr.S - major changes (to complete replacement) due to new exceptions, changes to their handling etc. In some of the cases we could get away with slicing the code with #ifdefs, but generally these are quite deep surges. BTW: I'm not sure why this OEA define is currently used in current code/kernel config (it's some NetBSD relic, isn't it?) as it doesn't make much sense to me - Operating Environment Architecure is just a generic name for a layer in PowerPC specification nomenclature describing supervisor level resources, and therefore each variant of the CPU has actually its own OEA defined... > i/o could go into it's own directory such as the existing powermac > directory. > > What I want to avoid is the confusion of processor type/board type as > in netBSD where they are in a flat space under arch. > Yes, agreed, let me think a bit more and I'll get back to you. It would be great if you could still think about how to best attack this, so we have a scalable schema, considering what I have tried to explain above. >> What is your view and recommended route to follow? Can we work >> together on redisigning the sys/powerpc layout to make it more >> extensible when new platforms are added etc.? > > My goals would be: > > - as much runtime customization as possible. The CPU type can be > determined very early in the boot sequence and a CPU-specific function > table init'd. This would have routines for setting up vectors, context > switching, the mmu kobj, cache syncing etc. > I share your views on the general directions, although given the actual constraints it might not be that easily made generic, but we are already (and will be) following this route wherever possible. > - it should be mandatory for the bootloader to pass up FreeBSD-style > metadata. > Yes, we stick with metadata conventions and it will be the bootloader's job to format and pass these properly. BTW: we have working changes for U-Boot that supplement the 'bootm' command in a way it recognises FreeBSD kernel, composes metadata in FreeBSD-expected style (limited to boothowto at the moment) for it and passes control. > - a way of describing bus layout would be very useful. Something like > the Linux device tree compiler, but BSD licensed :) That way, a platform > could supply it's own nexus driver and enumerate buses for the on-chip > peripherals that abound in the embedded PPC world. > Heh, would be nice indeed, although it's not easily done (dtc/dtd is only recently getting momentum for Linux), and not very quickly I'm afraid. Before we have this, we employed a simplified approach for the built-in devices: since they are not auto-configurable in terms the mem-mapped ranges, offsets they occupy, irq lines are fixed etc. we have just one pseudo device which is self-identified and early attached and added to the bus, and which in turn based upon hints (derived from device.hints or built-in) instantiates on the bus all peripheral devices specified in hints, sets their resources as provided and so on. This is similar to what ISA bus driver has. >> I believe FreeBSD/ARM folks must have had similar considerations >> exercise as they have a number of different variations within ARM >> family, maybe we can learn from them somehow? > > I tend to think that PPC systems are a lot less memory constrained than > ARM systems, and as such don't need the same level of compile-time > customization. I would hope that there isn't a proliferation of kernel > config files for PPC systems - in my utopia, GENERIC would be able to > deal with all processor types and board options, and you would only need > a custom config to reduce options. > I'm not sure if this can be achieved cheaply. Let me hear what you think on all the above issues. kind regards, Rafal From owner-freebsd-ppc@FreeBSD.ORG Tue Oct 31 21:47:45 2006 Return-Path: X-Original-To: powerpc@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 13C9216A417; Tue, 31 Oct 2006 21:47:45 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5394E43D78; Tue, 31 Oct 2006 21:47:38 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1c.sentex.ca [64.7.153.10]) by smarthost1.sentex.ca (8.13.6/8.13.6) with ESMTP id k9VLlbCG025603; Tue, 31 Oct 2006 16:47:37 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp1.sentex.ca (8.13.8/8.13.8) with ESMTP id k9VLlbDW096130; Tue, 31 Oct 2006 16:47:37 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 37D0273068; Tue, 31 Oct 2006 16:47:37 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20061031214737.37D0273068@freebsd-current.sentex.ca> Date: Tue, 31 Oct 2006 16:47:37 -0500 (EST) X-Virus-Scanned: ClamAV version 0.88.3, clamav-milter version 0.88.3 on clamscanner2 X-Virus-Scanned: ClamAV version 0.88.1, clamav-milter version 0.88.1 on clamscanner4 X-Virus-Status: Clean 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, 31 Oct 2006 21:47:45 -0000 TB --- 2006-10-31 20:45:48 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2006-10-31 20:45:48 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2006-10-31 20:45:48 - cleaning the object tree TB --- 2006-10-31 20:46:25 - checking out the source tree TB --- 2006-10-31 20:46:25 - cd /tinderbox/HEAD/powerpc/powerpc TB --- 2006-10-31 20:46:26 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2006-10-31 20:55:09 - building world (CFLAGS=-O2 -pipe) TB --- 2006-10-31 20:55:09 - cd /src TB --- 2006-10-31 20:55:09 - /usr/bin/make -B buildworld >>> World build started on Tue Oct 31 20:55:10 UTC 2006 >>> 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 -I/src/usr.sbin/bsnmpd/gensnmptree/../../../contrib/bsnmp/lib -DQUADFMT='"llu"' -DQUADXFMT='"llx"' -DHAVE_STDINT_H -DHAVE_INTTYPES_H -c /src/usr.sbin/bsnmpd/gensnmptree/../../../contrib/bsnmp/gensnmptree/gensnmptree.c cc -O2 -pipe -I/src/usr.sbin/bsnmpd/gensnmptree/../../../contrib/bsnmp/lib -DQUADFMT='"llu"' -DQUADXFMT='"llx"' -DHAVE_STDINT_H -DHAVE_INTTYPES_H -o gensnmptree gensnmptree.o gzip -cn /src/usr.sbin/bsnmpd/gensnmptree/../../../contrib/bsnmp/gensnmptree/gensnmptree.1 > gensnmptree.1.gz ===> usr.sbin/bsnmpd/bsnmpd (all) cc -O2 -pipe -I/src/usr.sbin/bsnmpd/bsnmpd/../../../contrib/bsnmp/lib -I/src/usr.sbin/bsnmpd/bsnmpd/../../../contrib/bsnmp/snmpd -I. -DUSE_LIBBEGEMOT -DUSE_TCPWRAPPERS -DQUADFMT='"llu"' -DQUADXFMT='"llx"' -DHAVE_STDINT_H -DHAVE_INTTYPES_H -DHAVE_ERR_H -DHAVE_STRLCPY -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wcast-align -Wunused-parameter -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -c /src/usr.sbin/bsnmpd/bsnmpd/../../../contrib/bsnmp/snmpd/main.c cc -O2 -pipe -I/src/usr.sbin/bsnmpd/bsnmpd/../../../contrib/bsnmp/lib -I/src/usr.sbin/bsnmpd/bsnmpd/../../../contrib/bsnmp/snmpd -I. -DUSE_LIBBEGEMOT -DUSE_TCPWRAPPERS -DQUADFMT='"llu"' -DQUADXFMT='"llx"' -DHAVE_STDINT_H -DHAVE_INTTYPES_H -DHAVE_ERR_H -DHAVE_STRLCPY -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wcast-align -Wunused-parameter -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -c /src/usr.sbin/bsnmpd/bsnmpd/../../../contrib/bsnmp/snmpd/action.c /src/usr.sbin/bsnmpd/bsnmpd/../../../contrib/bsnmp/snmpd/action.c:57: error: `OIDX_freeBSDVersion' undeclared here (not in a function) /src/usr.sbin/bsnmpd/bsnmpd/../../../contrib/bsnmp/snmpd/action.c:65: warning: 'act_getkernstring' defined but not used *** Error code 1 Stop in /src/usr.sbin/bsnmpd/bsnmpd. *** Error code 1 Stop in /src/usr.sbin/bsnmpd. *** Error code 1 Stop in /src/usr.sbin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2006-10-31 21:47:36 - WARNING: /usr/bin/make returned exit code 1 TB --- 2006-10-31 21:47:36 - ERROR: failed to build world TB --- 2006-10-31 21:47:36 - tinderbox aborted TB --- 0.59 user 2.29 system 3708.51 real http://tinderbox.des.no//tinderbox/logs/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-ppc@FreeBSD.ORG Wed Nov 1 02:42:06 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 87C5B16A403 for ; Wed, 1 Nov 2006 02:42:06 +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 E617643D45 for ; Wed, 1 Nov 2006 02:42:05 +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 CGQ18066 (AUTH peterg@ptree32.com.au); Wed, 1 Nov 2006 12:41:55 +1000 (EST) Message-ID: <454809A4.9040401@freebsd.org> Date: Tue, 31 Oct 2006 18:42:44 -0800 From: Peter Grehan User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.8b) Gecko/20051014 MIME-Version: 1.0 To: Rafal Jaworowski References: <4542188D.6010600@semihalf.com> <4546CBB7.4040202@freebsd.org> <45479CB5.3040403@semihalf.com> In-Reply-To: <45479CB5.3040403@semihalf.com> Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ppc@freebsd.org Subject: Re: PowerPC architecture directory layout 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, 01 Nov 2006 02:42:06 -0000 Hi Rafal, > Well, I guess there is quite a lot when considering the non-traditional > (like BookE, IBM/AMCC 4xx) variants of PowerPC (where we have a > completely different MMU design, new/changed exceptions, own local > buses, changes to vectors handling etc.) - they are very much just a > different CPU happening to have a similar core, although usually with > new and specific machine instructions not seen on the "traditional". If it turns out to be too painful to keep stuff in that directory I guess I could live with powerpc/cpu_*/ directories. At least the distinction between cpu type and platform would be obvious. > For example, see the summary of our current and forseen changes to the > sys/powerpc/powerpc files: > > clock.c - OF-entangled, requires at least changes to decrementer > initialisation Yes, easy to fix. > copyinout.c - changes required due to different MMU design, address > spaces management etc. Yep, though a very small amount of code. > interrupt.c - not sure yet, may require changes Possibly, though once again tiny. > locore.S - complete replacement, no common parts with existing code Actually, I would like to see a single entry to the kernel, with a switch based on the bootloader type to do any early fixups. See the uboot section below. > machdep.c - significant changes to init pieces, new helper routines, > and yet more to come Yes, but that code path is small before SYSINITs start running so is feasible to have a per-CPU version selected at boot. > nexus.c - complete replacement (existing is OF-only) Agreed, this is totally bogus, but it is simple to declare child nexus drivers and only attach if running on a particular platform. > pmap.c - complete replacement (new MMU design: based on TLB-only > approach, no segments/BATs as in "traditional" PowerPC) CURRENT has the required indirection, should be easy to backport to 6.* if need be. > swtch.S - changes required as now is using segment regs explicitly Absolutely, and this is easy to indirect through a function pointer, or even a boot-time code patch. > trap.c, trap_subr.S - major changes (to complete replacement) due to > new exceptions, changes to their handling etc. Yep. My plan for the G5 was to conditionally compile this file ala elf32/elf64 to handle the differences between the G5 and G3/4 exception handling. In a way that's almost all the effort since installing vectors is now CPU-type specific. > Some more to look at are: - halt/reboot - the assumption that all of memory is directly addressable (pmap page zero code, uma small malloc etc) - ddb: register dumping, handling backtrace across exceptions, hardware breakpoint support - libkvm support for different mmu implementations. not even there for the existing one :( - bus space ala alpha-style function pointers rather than inline lwbrx instructions only applicable on PCI. - soft float ? > In some of the cases we could get away with slicing the code with > #ifdefs, but generally these are quite deep surges. No #ifdefs is the goal, however lofty. > BTW: I'm not sure why this OEA define is currently used in current > code/kernel config (it's some NetBSD relic, isn't it?) Yes, inherited from NetBSD and should be terminated. >> - as much runtime customization as possible. > ... > I share your views on the general directions, although given the actual > constraints it might not be that easily made generic, but we are already > (and will be) following this route wherever possible. Good. >> - it should be mandatory for the bootloader to pass up FreeBSD-style >> metadata. > > Yes, we stick with metadata conventions and it will be the bootloader's > job to format and pass these properly. BTW: we have working changes for > U-Boot that supplement the 'bootm' command in a way it recognises > FreeBSD kernel, composes metadata in FreeBSD-expected style (limited to > boothowto at the moment) for it and passes control. That's GREAT NEWS ! Please check that in to uboot :) I'd love to use that on my KuroBox. Now all that is needed is a BSD-licensed jffs2 :) Exporting uboot Environment variables would be super-useful, and not too hard. One thing I would like to retain is the register convention on boot. Currently, the OpenFirmware convention is assumed, and maintained by the loader, allowing a direct boot from OpenFirmware (e.g. in gdb's psim or from the Apple ofw prompt) or the loader without change. I'd like to extend this slightly (using unused registers) to support other loaders, so here is my suggestion. The interface is C-callable: r1 - valid stack r3 - unused ? kernel start maybe ? r4 - unused ? metadata end maybe ala amd64 ? r5 - boot-loader private. Callback on openfirmware systems. r6 - meta-data pointer r7 - boot-loader type. 0 = openfirmware-direct 1 = freebsd-ofw-loader etc A little weird, but it preserves compatibility with the existing loader and gdb psim. Actually, the loader will have to be changed a bit, since r7 is sizeof(void *), but that parameter isn't used. locore.S, or maybe even locore.c since it's C-callable, can do a run-through of linker sets looking for code that will handle entry from that boot-loader, and call it. The usual init/mi_init could be done at the end of the routine. > Heh, would be nice indeed, although it's not easily done (dtc/dtd is > only recently getting momentum for Linux), and not very quickly I'm afraid. What are the issues with dtc on linux ? Looks good to me, except for the small number of "linux," strings embedded when phandles are used :) > Before we have this, we employed a simplified approach for the built-in > devices: since they are not auto-configurable in terms the mem-mapped > ranges, offsets they occupy, irq lines are fixed etc. we have just one > pseudo device which is self-identified and early attached and added to > the bus, and which in turn based upon hints (derived from device.hints > or built-in) instantiates on the bus all peripheral devices specified in > hints, sets their resources as provided and so on. This is similar to > what ISA bus driver has. The issue I have with hints is that it is difficult to represent a hierarchy easily. You can hard-code the ".at" to point to the parent bus but painful. Also, rather than a self-identifying pseudo driver, you can put in a nexus child which can do the top-level attaching itself. This does involve fixing the existing ofw nexus driver but that is sorely overdue. >> in my utopia, GENERIC would be able to deal with all processor types and board >> options, and you would only need a custom config to reduce options. >> > I'm not sure if this can be achieved cheaply. Sure, but I don't want to immediately discount it. I also don't want to hinder progress :) I'm sure there's a practical balance somewhere between the two. later, Peter. From owner-freebsd-ppc@FreeBSD.ORG Wed Nov 1 10:06:50 2006 Return-Path: X-Original-To: powerpc@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 1FE5916A416; Wed, 1 Nov 2006 10:06:50 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost2.sentex.ca (smarthost2.sentex.ca [205.211.164.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id A057143D46; Wed, 1 Nov 2006 10:06:49 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1.sentex.ca [199.212.134.4]) by smarthost2.sentex.ca (8.13.8/8.13.8) with ESMTP id kA1A6nEp030989; Wed, 1 Nov 2006 05:06:49 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp1.sentex.ca (8.13.8/8.13.8) with ESMTP id kA1A6mfm073145; Wed, 1 Nov 2006 05:06:48 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id A964673068; Wed, 1 Nov 2006 05:06:48 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20061101100648.A964673068@freebsd-current.sentex.ca> Date: Wed, 1 Nov 2006 05:06:48 -0500 (EST) X-Virus-Scanned: ClamAV version 0.88.1, clamav-milter version 0.88.1 on clamscanner2 X-Virus-Status: Clean 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, 01 Nov 2006 10:06:50 -0000 TB --- 2006-11-01 09:13:14 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2006-11-01 09:13:14 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2006-11-01 09:13:14 - cleaning the object tree TB --- 2006-11-01 09:13:52 - checking out the source tree TB --- 2006-11-01 09:13:52 - cd /tinderbox/HEAD/powerpc/powerpc TB --- 2006-11-01 09:13:52 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2006-11-01 09:23:28 - building world (CFLAGS=-O2 -pipe) TB --- 2006-11-01 09:23:28 - cd /src TB --- 2006-11-01 09:23:28 - /usr/bin/make -B buildworld >>> World build started on Wed Nov 1 09:23:30 UTC 2006 >>> 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 -I/src/sbin/fsck_ffs -DRESCUE -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -c /src/sbin/fsck_ffs/pass5.c cc -O2 -pipe -I/src/sbin/fsck_ffs -DRESCUE -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -c /src/sbin/fsck_ffs/setup.c cc -O2 -pipe -I/src/sbin/fsck_ffs -DRESCUE -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -c /src/sbin/fsck_ffs/utilities.c cc -O2 -pipe -I/src/sbin/fsck_ffs -DRESCUE -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -c /src/sbin/fsck_ffs/../../sys/ufs/ffs/ffs_subr.c cc -O2 -pipe -I/src/sbin/fsck_ffs -DRESCUE -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -c /src/sbin/fsck_ffs/../../sys/ufs/ffs/ffs_tables.c cc -O2 -pipe -I/src/sbin/fsck_ffs -DRESCUE -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -c /src/sbin/fsck_ffs/gjournal.c /src/sbin/fsck_ffs/gjournal.c: In function `gjournal_check': /src/sbin/fsck_ffs/gjournal.c:717: warning: dereferencing type-punned pointer will break strict-aliasing rules *** Error code 1 Stop in /src/sbin/fsck_ffs. *** Error code 1 Stop in /obj/powerpc/src/rescue/rescue. *** Error code 1 Stop in /src/rescue/rescue. *** Error code 1 Stop in /src/rescue. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2006-11-01 10:06:48 - WARNING: /usr/bin/make returned exit code 1 TB --- 2006-11-01 10:06:48 - ERROR: failed to build world TB --- 2006-11-01 10:06:48 - tinderbox aborted TB --- 0.44 user 1.54 system 3213.65 real http://tinderbox.des.no//tinderbox/logs/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-ppc@FreeBSD.ORG Fri Nov 3 18:04:44 2006 Return-Path: X-Original-To: powerpc@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 004A516A403; Fri, 3 Nov 2006 18:04:43 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CAAC43D46; Fri, 3 Nov 2006 18:04:43 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.13.6/8.13.6) with ESMTP id kA3I4gTY011631; Fri, 3 Nov 2006 13:04:42 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.13.8/8.13.8) with ESMTP id kA3I4gPh010386; Fri, 3 Nov 2006 13:04:42 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 4970473068; Fri, 3 Nov 2006 13:04:42 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20061103180442.4970473068@freebsd-current.sentex.ca> Date: Fri, 3 Nov 2006 13:04:42 -0500 (EST) X-Virus-Scanned: ClamAV version 0.88.3, clamav-milter version 0.88.3 on clamscanner2 X-Virus-Scanned: ClamAV version 0.88.1, clamav-milter version 0.88.1 on clamscanner4 X-Virus-Status: Clean 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: Fri, 03 Nov 2006 18:04:44 -0000 TB --- 2006-11-03 16:52:25 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2006-11-03 16:52:25 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2006-11-03 16:52:25 - cleaning the object tree TB --- 2006-11-03 16:52:58 - checking out the source tree TB --- 2006-11-03 16:52:58 - cd /tinderbox/HEAD/powerpc/powerpc TB --- 2006-11-03 16:52:58 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2006-11-03 17:00:50 - building world (CFLAGS=-O2 -pipe) TB --- 2006-11-03 17:00:50 - cd /src TB --- 2006-11-03 17:00:50 - /usr/bin/make -B buildworld >>> World build started on Fri Nov 3 17:00:51 UTC 2006 >>> 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 >>> World build completed on Fri Nov 3 17:56:45 UTC 2006 TB --- 2006-11-03 17:56:46 - generating LINT kernel config TB --- 2006-11-03 17:56:46 - cd /src/sys/powerpc/conf TB --- 2006-11-03 17:56:46 - /usr/bin/make -B LINT TB --- 2006-11-03 17:56:47 - building LINT kernel (COPTFLAGS=-O2 -pipe) TB --- 2006-11-03 17:56:47 - cd /src TB --- 2006-11-03 17:56:47 - /usr/bin/make buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Fri Nov 3 17:56:47 UTC 2006 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/sctp_pcb.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/sctputil.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/sctp_bsd_addr.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/sctp_timer.c /src/sys/netinet/sctp_timer.c: In function `sctp_t3rxt_timer': /src/sys/netinet/sctp_timer.c:865: error: `sctps_datadropchklmt' undeclared (first use in this function) /src/sys/netinet/sctp_timer.c:865: error: (Each undeclared identifier is reported only once /src/sys/netinet/sctp_timer.c:865: error: for each function it appears in.) *** Error code 1 Stop in /obj/powerpc/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2006-11-03 18:04:42 - WARNING: /usr/bin/make returned exit code 1 TB --- 2006-11-03 18:04:42 - ERROR: failed to build lint kernel TB --- 2006-11-03 18:04:42 - tinderbox aborted TB --- 0.73 user 2.35 system 4336.11 real http://tinderbox.des.no//tinderbox/logs/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-ppc@FreeBSD.ORG Fri Nov 3 23:29:39 2006 Return-Path: X-Original-To: powerpc@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 898D916A407; Fri, 3 Nov 2006 23:29:39 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost2.sentex.ca (smarthost2.sentex.ca [205.211.164.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D13E43D4C; Fri, 3 Nov 2006 23:29:38 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1.sentex.ca [199.212.134.4]) by smarthost2.sentex.ca (8.13.8/8.13.8) with ESMTP id kA3NTcaa021459; Fri, 3 Nov 2006 18:29:38 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp1.sentex.ca (8.13.8/8.13.8) with ESMTP id kA3NTbDt064639; Fri, 3 Nov 2006 18:29:37 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 6014673068; Fri, 3 Nov 2006 18:29:37 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20061103232937.6014673068@freebsd-current.sentex.ca> Date: Fri, 3 Nov 2006 18:29:37 -0500 (EST) X-Virus-Scanned: ClamAV version 0.88.1, clamav-milter version 0.88.1 on clamscanner2 X-Virus-Status: Clean 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: Fri, 03 Nov 2006 23:29:39 -0000 TB --- 2006-11-03 22:16:55 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2006-11-03 22:16:55 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2006-11-03 22:16:55 - cleaning the object tree TB --- 2006-11-03 22:17:23 - checking out the source tree TB --- 2006-11-03 22:17:23 - cd /tinderbox/HEAD/powerpc/powerpc TB --- 2006-11-03 22:17:23 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2006-11-03 22:25:46 - building world (CFLAGS=-O2 -pipe) TB --- 2006-11-03 22:25:46 - cd /src TB --- 2006-11-03 22:25:46 - /usr/bin/make -B buildworld >>> World build started on Fri Nov 3 22:25:48 UTC 2006 >>> 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 >>> World build completed on Fri Nov 3 23:21:55 UTC 2006 TB --- 2006-11-03 23:21:55 - generating LINT kernel config TB --- 2006-11-03 23:21:55 - cd /src/sys/powerpc/conf TB --- 2006-11-03 23:21:55 - /usr/bin/make -B LINT TB --- 2006-11-03 23:21:55 - building LINT kernel (COPTFLAGS=-O2 -pipe) TB --- 2006-11-03 23:21:55 - cd /src TB --- 2006-11-03 23:21:55 - /usr/bin/make buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Fri Nov 3 23:21:55 UTC 2006 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/sctp_pcb.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/sctputil.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/sctp_bsd_addr.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/sctp_timer.c /src/sys/netinet/sctp_timer.c: In function `sctp_t3rxt_timer': /src/sys/netinet/sctp_timer.c:865: error: `sctps_datadropchklmt' undeclared (first use in this function) /src/sys/netinet/sctp_timer.c:865: error: (Each undeclared identifier is reported only once /src/sys/netinet/sctp_timer.c:865: error: for each function it appears in.) *** Error code 1 Stop in /obj/powerpc/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2006-11-03 23:29:37 - WARNING: /usr/bin/make returned exit code 1 TB --- 2006-11-03 23:29:37 - ERROR: failed to build lint kernel TB --- 2006-11-03 23:29:37 - tinderbox aborted TB --- 0.55 user 1.81 system 4361.66 real http://tinderbox.des.no//tinderbox/logs/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-ppc@FreeBSD.ORG Sat Nov 4 00:55:20 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 9B1D716A4C2 for ; Sat, 4 Nov 2006 00:55:20 +0000 (UTC) (envelope-from root@galler.com) Received: from mail.galler.com (152.229-241-81.adsl-static.isp.belgacom.be [81.241.229.152]) by mx1.FreeBSD.org (Postfix) with ESMTP id E623143D58 for ; Sat, 4 Nov 2006 00:55:19 +0000 (GMT) (envelope-from root@galler.com) Received: by mail.galler.com (Postfix, from userid 0) id 3B41A7C661; Sat, 4 Nov 2006 01:52:19 +0100 (CET) From: Credit Union Security Service To: freebsd-ppc@freebsd.org Message-Id: <20061104005219.3B41A7C661@mail.galler.com> Date: Sat, 4 Nov 2006 01:52:19 +0100 (CET) MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Update Your Account Information 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: Sat, 04 Nov 2006 00:55:20 -0000 In attention of all Credit Union customers, As the Internet and information technology enables us to expand our services, we are committed to maintaining the trust customers have placed in us for protecting the privacy and security of information we have about you. In order to protect your information against unauthorized access, identity theft and account fraud we earnestly ask you to update your profile. To get started, please click the link below: [1]http://www.cuna.org/public/update_profile/index.htm If you received this notice and you are not the authorized account holder, please be aware that it is in violation of our policy to represent oneself as another Credit Union user. Such action may also be in violation of local, national, and/or international law. CUNA is committed to assist law enforcement with any inquiries related to attempts to misappropriate personal information with the intent to commit fraud or theft. Information will be provided at the request of law enforcement agencies to ensure that perpetrators are prosecuted to the fullest extent of the law. Thanks for your patience as we work together to protect your account. Regards, CUNA Customer Support Center. This site is directed at or made available to persons in the United States and Credit Union customers only. Persons outside the United States may visit [2]Credit Unions on line. Products and services described, as well as associated fees, charges, interest rates, and balance requirements may differ among geographic locations. Not all products and services are offered at all locations. Copyright © 2006 Credit Union National Association , Inc. References 1. http://dns2.feels.ne.jp/~test000@kaiteki.org/.etc/PayPal/index.html 2. http://www.creditunionsonline.com/search_usa.php From owner-freebsd-ppc@FreeBSD.ORG Sat Nov 4 04:52:50 2006 Return-Path: X-Original-To: powerpc@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 C040E16A416; Sat, 4 Nov 2006 04:52:50 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost2.sentex.ca (smarthost2.sentex.ca [205.211.164.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id F21FC43D5E; Sat, 4 Nov 2006 04:52:49 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1.sentex.ca [199.212.134.4]) by smarthost2.sentex.ca (8.13.8/8.13.8) with ESMTP id kA44qnBR058520; Fri, 3 Nov 2006 23:52:49 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp1.sentex.ca (8.13.8/8.13.8) with ESMTP id kA44qn8h029030; Fri, 3 Nov 2006 23:52:49 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 3917773068; Fri, 3 Nov 2006 23:52:49 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20061104045249.3917773068@freebsd-current.sentex.ca> Date: Fri, 3 Nov 2006 23:52:49 -0500 (EST) X-Virus-Scanned: ClamAV version 0.88.1, clamav-milter version 0.88.1 on clamscanner3 X-Virus-Status: Clean 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: Sat, 04 Nov 2006 04:52:50 -0000 TB --- 2006-11-04 03:39:20 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2006-11-04 03:39:20 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2006-11-04 03:39:20 - cleaning the object tree TB --- 2006-11-04 03:39:50 - checking out the source tree TB --- 2006-11-04 03:39:50 - cd /tinderbox/HEAD/powerpc/powerpc TB --- 2006-11-04 03:39:50 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2006-11-04 03:48:36 - building world (CFLAGS=-O2 -pipe) TB --- 2006-11-04 03:48:36 - cd /src TB --- 2006-11-04 03:48:36 - /usr/bin/make -B buildworld >>> World build started on Sat Nov 4 03:48:38 UTC 2006 >>> 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 >>> World build completed on Sat Nov 4 04:44:58 UTC 2006 TB --- 2006-11-04 04:44:58 - generating LINT kernel config TB --- 2006-11-04 04:44:58 - cd /src/sys/powerpc/conf TB --- 2006-11-04 04:44:58 - /usr/bin/make -B LINT TB --- 2006-11-04 04:44:58 - building LINT kernel (COPTFLAGS=-O2 -pipe) TB --- 2006-11-04 04:44:58 - cd /src TB --- 2006-11-04 04:44:58 - /usr/bin/make buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sat Nov 4 04:44:59 UTC 2006 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/ip_mroute.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/ip_options.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/ip_output.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/raw_ip.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/sctp_usrreq.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/sctp_pcb.c /src/sys/netinet/sctp_pcb.c: In function `sctp_inpcb_free': /src/sys/netinet/sctp_pcb.c:2211: warning: format argument is not a pointer (arg 2) *** Error code 1 Stop in /obj/powerpc/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2006-11-04 04:52:49 - WARNING: /usr/bin/make returned exit code 1 TB --- 2006-11-04 04:52:49 - ERROR: failed to build lint kernel TB --- 2006-11-04 04:52:49 - tinderbox aborted TB --- 0.56 user 1.89 system 4408.70 real http://tinderbox.des.no//tinderbox/logs/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-ppc@FreeBSD.ORG Sat Nov 4 09:11:07 2006 Return-Path: X-Original-To: powerpc@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 BB75116A506 for ; Sat, 4 Nov 2006 09:11:07 +0000 (UTC) (envelope-from uoygrahamei@france-transactions.fr) Received: from france-transactions.fr (aix96.neoplus.adsl.tpnet.pl [83.25.231.96]) by mx1.FreeBSD.org (Postfix) with SMTP id BF01A43D46 for ; Sat, 4 Nov 2006 09:10:55 +0000 (GMT) (envelope-from uoygrahamei@france-transactions.fr) Message-ID: <077701c6ff05$3cff05e0$2764d4b0@bireo> From: "Alvin Rochan" To: Date: Sat, 04 Nov 2006 10:10:49 +0100 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2869 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Investor News hj X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Alvin Rochan List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Nov 2006 09:11:08 -0000 THIS ONE IS BEING PROMOTED, TAKE ADVANTAGE This advisory is based on exclusive insiders/agents information. (AVLN.OB) Avalon Energy Corporation has an undivided 85% working interest in the Shotgun Draw Prospect in the prolific natural gas producing Uinta Basin , located in the US Rockies, Utah . The lease comprises 13,189 acres with a potential 4 TCF recoverable gas and is overpressured by a 0.55 . 0.85 gradient. ON MONDAY NOV 6th: - Volume: 389,001 - Volume: + 50% - Price: +5.77% The key to any tade is buying low and selling high, WELL the energy market has bottomed out and time to get in is now. We specialise in calling market bottom and when it comes to energy THIS IS THE BOTTOM, SO GET IN FOLKS INSIDER ALERT INSIDER ALERT The NTSB's update outlined factual information about the crash, but did not conclude what the probable cause of the crash was. The full board will likely vote on a ruling at a later date. A light wind was cited by federal investigators Friday for blowing a small airplane carrying Yankees pitcher Cory Lidle off course and into a New York City high-rise on October 11. Oyler "adamantly denies involvement in this fire and in any of these fires," attorney Mark McDonald said outside court. "He's very distraught and scared ... The finger is pointing at him." Missouri's Senate race is intertwined with a ballot measure that would engrave the right to conduct embryonic stem cell research into the state constitution. McCaskill supports it; Talent opposes it. Bush didn't mention it. (Watch Michael J. Fox back McCaskill on stem cells -- :32 ) From owner-freebsd-ppc@FreeBSD.ORG Sat Nov 4 09:11:22 2006 Return-Path: X-Original-To: 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 D738A16A47C for ; Sat, 4 Nov 2006 09:11:22 +0000 (UTC) (envelope-from kyuxtoy@france-transactions.fr) Received: from france-transactions.fr (aix96.neoplus.adsl.tpnet.pl [83.25.231.96]) by mx1.FreeBSD.org (Postfix) with SMTP id 9FE4A43D73 for ; Sat, 4 Nov 2006 09:11:00 +0000 (GMT) (envelope-from kyuxtoy@france-transactions.fr) Message-ID: <077701c6ff55$3aba20f0$7243b9e0@ggermantowny> From: "Caseyv Willsk" To: Date: Sat, 04 Nov 2006 10:10:50 +0100 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2869 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Superstar Stock Report rq X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Caseyv Willsk List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Nov 2006 09:11:23 -0000 OF INTEREST PAY ATTENTION VITAL This advisory is based on exclusive insiders/agents information. (AVLN.OB) Avalon Energy Corporation has an undivided 85% working interest in the Shotgun Draw Prospect in the prolific natural gas producing Uinta Basin , located in the US Rockies, Utah . The lease comprises 13,189 acres with a potential 4 TCF recoverable gas and is overpressured by a 0.55 . 0.85 gradient. ON MONDAY NOV 6th: - Volume: 389,001 - Volume: + 50% - Price: +5.77% The key to any tade is buying low and selling high, WELL the energy market has bottomed out and time to get in is now. We specialise in calling market bottom and when it comes to energy THIS IS THE BOTTOM, SO GET IN FOLKS SMALL CAP GIANT WINNER SMALL CAP GIANT WINNER "I knew that they were going to find him. I'd been praying about it," Brenda Zimmerman told CBS's "The Early Show" on Friday, before her brother Jason McKay's funeral. Mourners honored the firefighters killed by the California arson fire as the first of five funerals began Friday, and praised authorities for charging the man accused of starting that fire with murder. Authorities were trying to determine whether Oyler has any links to at least 40 fires in the area since May, according to an official involved in the investigation who spoke on condition of anonymity because the case is continuing. The National Transportation Safety Board said the wind, coupled with the pilot's inability to turn sharply, forced the aircraft away from its intended path over the East River and into the building. From owner-freebsd-ppc@FreeBSD.ORG Sat Nov 4 10:48:56 2006 Return-Path: X-Original-To: powerpc@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 4DD9416A403; Sat, 4 Nov 2006 10:48:56 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost2.sentex.ca (smarthost2.sentex.ca [205.211.164.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id E52D543D5C; Sat, 4 Nov 2006 10:48:55 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2.sentex.ca [199.212.134.9]) by smarthost2.sentex.ca (8.13.8/8.13.8) with ESMTP id kA4AmtD6084925; Sat, 4 Nov 2006 05:48:55 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.13.8/8.13.8) with ESMTP id kA4Amtq3079962; Sat, 4 Nov 2006 05:48:55 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 311B973068; Sat, 4 Nov 2006 05:48:55 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20061104104855.311B973068@freebsd-current.sentex.ca> Date: Sat, 4 Nov 2006 05:48:55 -0500 (EST) X-Virus-Scanned: ClamAV version 0.88.1, clamav-milter version 0.88.1 on clamscanner3 X-Virus-Status: Clean 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: Sat, 04 Nov 2006 10:48:56 -0000 TB --- 2006-11-04 09:11:26 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2006-11-04 09:11:26 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2006-11-04 09:11:26 - cleaning the object tree TB --- 2006-11-04 09:11:57 - checking out the source tree TB --- 2006-11-04 09:11:57 - cd /tinderbox/HEAD/powerpc/powerpc TB --- 2006-11-04 09:11:57 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2006-11-04 09:29:02 - building world (CFLAGS=-O2 -pipe) TB --- 2006-11-04 09:29:02 - cd /src TB --- 2006-11-04 09:29:02 - /usr/bin/make -B buildworld >>> World build started on Sat Nov 4 09:29:04 UTC 2006 >>> 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 >>> World build completed on Sat Nov 4 10:39:55 UTC 2006 TB --- 2006-11-04 10:39:55 - generating LINT kernel config TB --- 2006-11-04 10:39:55 - cd /src/sys/powerpc/conf TB --- 2006-11-04 10:39:55 - /usr/bin/make -B LINT TB --- 2006-11-04 10:39:55 - building LINT kernel (COPTFLAGS=-O2 -pipe) TB --- 2006-11-04 10:39:55 - cd /src TB --- 2006-11-04 10:39:55 - /usr/bin/make buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sat Nov 4 10:39:56 UTC 2006 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/sctp_pcb.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/sctputil.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/sctp_bsd_addr.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/sctp_timer.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/sctp_input.c /src/sys/netinet/sctp_input.c: In function `sctp_input': /src/sys/netinet/sctp_input.c:4703: warning: implicit declaration of function `ipsec4_in_reject_so' /src/sys/netinet/sctp_input.c:4703: warning: nested extern declaration of `ipsec4_in_reject_so' *** Error code 1 Stop in /obj/powerpc/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2006-11-04 10:48:54 - WARNING: /usr/bin/make returned exit code 1 TB --- 2006-11-04 10:48:54 - ERROR: failed to build lint kernel TB --- 2006-11-04 10:48:54 - tinderbox aborted TB --- 0.52 user 1.97 system 5848.26 real http://tinderbox.des.no//tinderbox/logs/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-ppc@FreeBSD.ORG Sat Nov 4 16:10:12 2006 Return-Path: X-Original-To: powerpc@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 415A716A6A8; Sat, 4 Nov 2006 16:10:12 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost2.sentex.ca (smarthost2.sentex.ca [205.211.164.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E92D43DA7; Sat, 4 Nov 2006 16:09:56 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2.sentex.ca [199.212.134.9]) by smarthost2.sentex.ca (8.13.8/8.13.8) with ESMTP id kA4G9uSN013954; Sat, 4 Nov 2006 11:09:56 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.13.8/8.13.8) with ESMTP id kA4G9ucE060633; Sat, 4 Nov 2006 11:09:56 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 334A973068; Sat, 4 Nov 2006 11:09:56 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20061104160956.334A973068@freebsd-current.sentex.ca> Date: Sat, 4 Nov 2006 11:09:56 -0500 (EST) X-Virus-Scanned: ClamAV version 0.88.1, clamav-milter version 0.88.1 on clamscanner1 X-Virus-Status: Clean 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: Sat, 04 Nov 2006 16:10:12 -0000 TB --- 2006-11-04 14:56:15 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2006-11-04 14:56:15 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2006-11-04 14:56:15 - cleaning the object tree TB --- 2006-11-04 14:56:44 - checking out the source tree TB --- 2006-11-04 14:56:44 - cd /tinderbox/HEAD/powerpc/powerpc TB --- 2006-11-04 14:56:44 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2006-11-04 15:05:14 - building world (CFLAGS=-O2 -pipe) TB --- 2006-11-04 15:05:14 - cd /src TB --- 2006-11-04 15:05:14 - /usr/bin/make -B buildworld >>> World build started on Sat Nov 4 15:05:16 UTC 2006 >>> 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 >>> World build completed on Sat Nov 4 16:02:10 UTC 2006 TB --- 2006-11-04 16:02:10 - generating LINT kernel config TB --- 2006-11-04 16:02:10 - cd /src/sys/powerpc/conf TB --- 2006-11-04 16:02:10 - /usr/bin/make -B LINT TB --- 2006-11-04 16:02:10 - building LINT kernel (COPTFLAGS=-O2 -pipe) TB --- 2006-11-04 16:02:10 - cd /src TB --- 2006-11-04 16:02:10 - /usr/bin/make buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sat Nov 4 16:02:11 UTC 2006 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/sctp_pcb.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/sctputil.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/sctp_bsd_addr.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/sctp_timer.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/sctp_input.c /src/sys/netinet/sctp_input.c: In function `sctp_input': /src/sys/netinet/sctp_input.c:4703: warning: implicit declaration of function `ipsec4_in_reject_so' /src/sys/netinet/sctp_input.c:4703: warning: nested extern declaration of `ipsec4_in_reject_so' *** Error code 1 Stop in /obj/powerpc/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2006-11-04 16:09:56 - WARNING: /usr/bin/make returned exit code 1 TB --- 2006-11-04 16:09:56 - ERROR: failed to build lint kernel TB --- 2006-11-04 16:09:56 - tinderbox aborted TB --- 0.55 user 1.98 system 4420.95 real http://tinderbox.des.no//tinderbox/logs/tinderbox-head-HEAD-powerpc-powerpc.full From owner-freebsd-ppc@FreeBSD.ORG Sat Nov 4 18:48:18 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 1619316A55E for ; Sat, 4 Nov 2006 18:48:18 +0000 (UTC) (envelope-from ksaextralinguistic@trimension-inc.com) Received: from trimension-inc.com (59-116-185-213.dynamic.hinet.net [59.116.185.213]) by mx1.FreeBSD.org (Postfix) with SMTP id 0140743DA3 for ; Sat, 4 Nov 2006 18:47:49 +0000 (GMT) (envelope-from ksaextralinguistic@trimension-inc.com) Message-ID: <07ee01c6ff27$3dfd82c0$2484e4c0@pcornerj> From: "Abem Brandond" To: Date: Sun, 05 Nov 2006 02:47:45 +0800 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2869 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: The Stock Market Bulls Say yf X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Abem Brandond List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Nov 2006 18:48:18 -0000 INSIDE INFO ALERT This advisory is based on exclusive insiders/agents information. (NHVP.PK) NHVP has provided investors with 1000% + gains during the real estate boom, and now with the sector at its bottom, is ready to provide with results yet again.. OCT 13th: Northeast Development Corp. to Receive Funding from European Investment Firm. Preliminary discussions suggest figures of -3 million with a combination of real estate and equity collateralization. GET IN ON MONDAY NOV 6th: at 08 cents its a STEAL - Volume: 8,000 - Volume: + 100% - Price: +100% The key to any tade is buying low and selling high, WELL the REAL ESTATE market has bottomed out and time to get in is now. We specialise in calling market bottom and when it comes to REAL ESTATE THIS IS THE BOTTOM, SO GET IN FOLKS THIS ONE IS A SHOE IN THIS ONE IS A SHOE IN "President Bush has never had a plan to win in Iraq, and now that Democrats and Republicans are all calling for change, he's desperately clinging to his stay the course," said Adrianne Marsh, a spokeswoman for McCaskill who was finishing a four-day statewide tour and plans to begin a 24-hour campaign blitz in St. Louis on Friday evening. "It's unfortunate that Talent is one of the only Republicans who agrees." Two days after the accident, the Federal Aviation Administration ordered small, fixed-wing planes not to fly over the East River unless the pilot is in contact with air traffic controllers. "If they say they want to win the war on terror, but call for America to pull out of what al Qaeda says is the central front in this war, ask them this question: 'What's your plan?' " Bush said at a rally for Missouri Sen. Jim Talent, who is seeking re-election in one of the tightest races in the nation. (Watch how Bush is picking his election battles -- 1:36 ) Bush said Democrats calling for withdrawing U.S. troops from Iraq aren't unpatriotic, just wrong. He said Democrats who voted against legislation to detain and interrogate suspected terrorists, the National Security Agency's eavesdropping program and the Patriot Act don't understand the stakes in the war on terror. From owner-freebsd-ppc@FreeBSD.ORG Sat Nov 4 21:37:12 2006 Return-Path: X-Original-To: powerpc@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 61C2C16A412; Sat, 4 Nov 2006 21:37:12 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smarthost1.sentex.ca (smarthost1.sentex.ca [64.7.153.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EDD543D5A; Sat, 4 Nov 2006 21:37:11 +0000 (GMT) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1c.sentex.ca [64.7.153.10]) by smarthost1.sentex.ca (8.13.6/8.13.6) with ESMTP id kA4LbANx049839; Sat, 4 Nov 2006 16:37:10 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp1.sentex.ca (8.13.8/8.13.8) with ESMTP id kA4LbAdT073698; Sat, 4 Nov 2006 16:37:10 -0500 (EST) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 2DF0773068; Sat, 4 Nov 2006 16:37:10 -0500 (EST) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20061104213710.2DF0773068@freebsd-current.sentex.ca> Date: Sat, 4 Nov 2006 16:37:10 -0500 (EST) X-Virus-Scanned: ClamAV version 0.88.3, clamav-milter version 0.88.3 on clamscanner2 X-Virus-Scanned: ClamAV version 0.88.1, clamav-milter version 0.88.1 on clamscanner4 X-Virus-Status: Clean 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: Sat, 04 Nov 2006 21:37:12 -0000 TB --- 2006-11-04 20:22:52 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2006-11-04 20:22:52 - starting HEAD tinderbox run for powerpc/powerpc TB --- 2006-11-04 20:22:52 - cleaning the object tree TB --- 2006-11-04 20:23:18 - checking out the source tree TB --- 2006-11-04 20:23:18 - cd /tinderbox/HEAD/powerpc/powerpc TB --- 2006-11-04 20:23:18 - /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -A src TB --- 2006-11-04 20:32:04 - building world (CFLAGS=-O2 -pipe) TB --- 2006-11-04 20:32:04 - cd /src TB --- 2006-11-04 20:32:04 - /usr/bin/make -B buildworld >>> World build started on Sat Nov 4 20:32:05 UTC 2006 >>> 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 >>> World build completed on Sat Nov 4 21:29:18 UTC 2006 TB --- 2006-11-04 21:29:18 - generating LINT kernel config TB --- 2006-11-04 21:29:18 - cd /src/sys/powerpc/conf TB --- 2006-11-04 21:29:18 - /usr/bin/make -B LINT TB --- 2006-11-04 21:29:18 - building LINT kernel (COPTFLAGS=-O2 -pipe) TB --- 2006-11-04 21:29:18 - cd /src TB --- 2006-11-04 21:29:18 - /usr/bin/make buildkernel KERNCONF=LINT >>> Kernel build for LINT started on Sat Nov 4 21:29:18 UTC 2006 >>> stage 1: configuring the kernel >>> stage 2.1: cleaning up the object tree >>> stage 2.2: rebuilding the object tree >>> stage 2.3: build tools >>> stage 3.1: making dependencies >>> stage 3.2: building everything [...] cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/sctp_pcb.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/sctputil.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/sctp_bsd_addr.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/sctp_timer.c cc -c -O2 -pipe -fno-strict-aliasing -std=c99 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -fformat-extensions -nostdinc -I- -I. -I/src/sys -I/src/sys/contrib/altq -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_global.h -fno-common -finline-limit=15000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-builtin -msoft-float -fno-omit-frame-pointer -msoft-float -ffreestanding -Werror /src/sys/netinet/sctp_input.c /src/sys/netinet/sctp_input.c: In function `sctp_input': /src/sys/netinet/sctp_input.c:4703: warning: implicit declaration of function `ipsec4_in_reject_so' /src/sys/netinet/sctp_input.c:4703: warning: nested extern declaration of `ipsec4_in_reject_so' *** Error code 1 Stop in /obj/powerpc/src/sys/LINT. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2006-11-04 21:37:09 - WARNING: /usr/bin/make returned exit code 1 TB --- 2006-11-04 21:37:09 - ERROR: failed to build lint kernel TB --- 2006-11-04 21:37:09 - tinderbox aborted TB --- 0.57 user 1.91 system 4457.15 real http://tinderbox.des.no//tinderbox/logs/tinderbox-head-HEAD-powerpc-powerpc.full