From owner-freebsd-arm@FreeBSD.ORG Mon Jul 28 16:26:11 2008 Return-Path: Delivered-To: freebsd-arm@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 95FD31065678 for ; Mon, 28 Jul 2008 16:26:11 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from pele.citylink.co.nz (pele.citylink.co.nz [202.8.44.226]) by mx1.freebsd.org (Postfix) with ESMTP id 1DCFC8FC1C for ; Mon, 28 Jul 2008 16:26:10 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by pele.citylink.co.nz (Postfix) with ESMTP id 243D32BD8D for ; Tue, 29 Jul 2008 04:26:09 +1200 (NZST) X-Virus-Scanned: Debian amavisd-new at citylink.co.nz Received: from pele.citylink.co.nz ([127.0.0.1]) by localhost (pele.citylink.co.nz [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id gqBrYFIWvoCS for ; Tue, 29 Jul 2008 04:26:04 +1200 (NZST) Received: from citylink.fud.org.nz (unknown [202.8.44.45]) by pele.citylink.co.nz (Postfix) with ESMTP for ; Tue, 29 Jul 2008 04:26:04 +1200 (NZST) Received: by citylink.fud.org.nz (Postfix, from userid 1001) id 1567E11430; Tue, 29 Jul 2008 04:26:04 +1200 (NZST) Date: Mon, 28 Jul 2008 09:26:03 -0700 From: Andrew Thompson To: freebsd-arm@FreeBSD.org Message-ID: <20080728162603.GI40256@citylink.fud.org.nz> References: <20080725181751.GB13638@citylink.fud.org.nz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20080725181751.GB13638@citylink.fud.org.nz> User-Agent: Mutt/1.5.17 (2007-11-01) Cc: Subject: Re: ARM mfc list X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the StrongARM Processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Jul 2008 16:26:11 -0000 On Fri, Jul 25, 2008 at 11:17:51AM -0700, Andrew Thompson wrote: > Hi, > > I would like to do a large merge of arm fixes to 7-stable, some bugfixes > and many just to reduce diffs. In particular 174051+177457+177459 fix > usb on the avila board. > > The commit logs and diffs can also be found at > http://people.freebsd.org/~thompsa/arm-mfc/ > > Please review this list and let me know if anything shouldnt be merged > (or if you would like to handle your own commits). This has been completed. regards, Andrew > r172568 (kevlo) Spelling fix for interupt -> interrupt > > r172613 (cognet) Define _ARM_ARCH_5E too, so that we know if > pld/strd/ldrd are available. > > r172614 (cognet) Do not use __XSCALE__ to detect if pld/strd/ldrd is > available, use_ARM_ARCH_5E instead. > > r172738 (imp) Merge support from p4 (from NetBSD) for arm9e and arm10, > arm11 cores. > > r172739 (imp) correct guard variable names. > > r173155 (imp) kill commented out line of code. > > r173215 (kevlo) Don't define get_cachetype() for CPU_ARM9E unless it's > going to be used. > > r173249 (kevlo) __CPU_XSCALE_PXA2XX -> CPU_XSCALE_PXA2X0 > > r173336 (cognet) Remove a staled comment, NPE-C should work fine. > > r173442 (cognet) Add entries for the L2 cache-related functions for armv5. > > r174051 (cognet) Correct the logic : we can just invalidate the cache > lines, and notwrite-back them, only if PREWRITE is not set, and > if the buffer iscache-line aligned. > > r174058 (cognet) Fixes for ARM9/ARM10 :Call uma_sel_align() there at > well.Set CPU_CONTROL_VECRELOC if we're using the high vectors page. > > r174176 (cognet) Move the strongarm-specific files from conf/files.arm > to sa11x0/files.sa11xO. > > r174700 (kevlo) Use M_NOWAIT instead of M_WAITOK to cause malloc() to > return NULL > > r174781 (imp) Actually program the interrupt controller for priorities. > As wesupport more AT91 platforms, we'll need to move this into > someplatform init routine. > > r175120 (cognet) Add a missing \n. > > r176759 (kevlo) Convert to be a 2-clause bsd-only license. > > r177103 (raj) Improve ARM bus_dmamap_load_buffer() error handling. > > r177105 (raj) Respect RF_SHAREABLE flag in ARM nexus_setup_intr() > > r177457 (sam) Correct cache handling for xfer requests marked > URQ_REQUEST: many (if notall uses) involve a read but > usbd_start_transfer only does a PREWRITE; changethis to > BUS_DMASYNC_PREREAD | BUS_DMASYNC_PREWRITE as I'm not sure if > anyusers do write+read. > > r177459 (sam) Workaround design botch in usb: blindly mixing bus_dma > with PIO does notwork on architectures with a write-back cache > as the PIO writes end upin the cache which the > sync(BUS_DMASYNC_POSTREAD) in usb_transfer_completethen > discards; compensate in the xfer methods that do PIO by pushing > thewrites out of the cache before usb_transfer_complete is > called. > > r177505 (sam) Improve mac+phy configuration so that hints can be used to > describelayouts different than the defaults:o > hint.npe.0.mac="A", "B", etc. specifies the window for MAC > register accesseso hint.npe.0.mii="A", "B", etc. specifies PHY > registerso hint.npe.1.phy=%d specifies the PHY to map to a port > > r177874 (imp) KERNBASE + 0x00200000 is the same thing as KERNVIRTADDR on > thisplatform, so use the latter in preference to the former. > This makesthe fake_preload setup be the same between > kb920x_machdep.c andavila_machdep.c.... > > r177883 (imp) Take the first baby step towards unifying and cleaning up > arminit(): > - Pull all the code to deal with the trampoline stuff into one > centeralized place and use it from everywhere. > - Some minor style tidiness > > r177886 (raj) Fix AVILA build. > > r177887 (raj) Refactor certain ARM bus space methods: instead of having > multiple copies ofthe same code introduce > sys/arm/arm/bus_space_generic.c for a shared set ofroutines. > > r177888 (raj) Now really add the bus_space_generic.c file... > > r177916 (raj) Make kernel.tramp build properly on ARM9E. > > r177943 (cognet) Add bus_space_generic.c for the i81342 as well. > > r177944 (cognet) Remove bus_space_generic.c from the per-plarform files. > Having it in theper-cpu files should be enough. > > r178001 (kevlo) Remove some long-dead code > > r179375 (imp) Release the resources for the registers for the TWI device > withSYS_RES_MEMORY to match how we allocate them... > > r179664 (kevlo) Remove sa1_cache_clean_addr > > r179693 (wkoszek) Since we create a DMA tag "mtag" for TX map with > bus_dmamap_create(),we must synchronize such a map against > "mtag" with bus_dmamap_sync(),not the tag designated for RX map. > > r179745 (kevlo) Fix a typo: i80321_pci_probe -> i81342_pci_probe > > r180486 (ticso) fix multicast hash register definition > > r180584 (alc) Eliminate unused global variables. (These global > variables became fields ofstruct kva_md_info many years ago.) > > _______________________________________________ > freebsd-arm@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-arm > To unsubscribe, send any mail to "freebsd-arm-unsubscribe@freebsd.org" From owner-freebsd-arm@FreeBSD.ORG Tue Jul 29 04:04:48 2008 Return-Path: Delivered-To: arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5269A106567A; Tue, 29 Jul 2008 04:04:48 +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 0B0868FC17; Tue, 29 Jul 2008 04:04:47 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1.sentex.ca [199.212.134.4]) by smarthost2.sentex.ca (8.14.2/8.14.2) with ESMTP id m6T44jBJ000700; Tue, 29 Jul 2008 00:04:45 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp1.sentex.ca (8.14.2/8.14.2) with ESMTP id m6T44jcn043298; Tue, 29 Jul 2008 00:04:45 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 5042273039; Tue, 29 Jul 2008 00:04:45 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20080729040445.5042273039@freebsd-current.sentex.ca> Date: Tue, 29 Jul 2008 00:04:45 -0400 (EDT) X-Virus-Scanned: ClamAV 0.93.1/7870/Mon Jul 28 16:26:35 2008 clamav-milter version 0.93 on clamscanner3 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 205.211.164.50 Cc: Subject: [head tinderbox] failure on arm/arm X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the StrongARM Processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jul 2008 04:04:48 -0000 TB --- 2008-07-29 03:05:00 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2008-07-29 03:05:00 - starting HEAD tinderbox run for arm/arm TB --- 2008-07-29 03:05:00 - cleaning the object tree TB --- 2008-07-29 03:05:21 - cvsupping the source tree TB --- 2008-07-29 03:05:21 - /usr/bin/csup -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/arm/arm/supfile TB --- 2008-07-29 03:05:31 - building world (CFLAGS=-O -pipe) TB --- 2008-07-29 03:05:31 - cd /src TB --- 2008-07-29 03:05:31 - /usr/bin/make -B buildworld >>> World build started on Tue Jul 29 03:05:32 UTC 2008 >>> 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 [...] grep -v '^#' < /src/share/timedef/lt_LT.ISO8859-4.src > lt_LT.ISO8859-4.out grep -v '^#' < /src/share/timedef/lt_LT.ISO8859-13.src > lt_LT.ISO8859-13.out grep -v '^#' < /src/share/timedef/lt_LT.UTF-8.src > lt_LT.UTF-8.out grep -v '^#' < /src/share/timedef/mn_MN.UTF-8.src > mn_MN.UTF-8.out grep -v '^#' < /src/share/timedef/nl_NL.ISO8859-1.src > nl_NL.ISO8859-1.out grep -v '^#' < /src/share/timedef/nn_NO.ISO8859-1.src > nn_NO.ISO8859-1.out grep -v '^#' < /src/share/timedef/nn_NO.UTF-8.src > nn_NO.UTF-8.out make: don't know how to make no_NO.ISO8859-1.out. Stop *** Error code 2 Stop in /src/share. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2008-07-29 04:04:44 - WARNING: /usr/bin/make returned exit code 1 TB --- 2008-07-29 04:04:44 - ERROR: failed to build world TB --- 2008-07-29 04:04:44 - tinderbox aborted TB --- 2667.58 user 343.83 system 3584.30 real http://tinderbox.des.no/tinderbox-head-HEAD-arm-arm.full From owner-freebsd-arm@FreeBSD.ORG Tue Jul 29 08:20:15 2008 Return-Path: Delivered-To: arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1F7761065672; Tue, 29 Jul 2008 08:20:15 +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 C3AE88FC20; Tue, 29 Jul 2008 08:20:14 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1.sentex.ca [199.212.134.4]) by smarthost2.sentex.ca (8.14.2/8.14.2) with ESMTP id m6T8KCsR009756; Tue, 29 Jul 2008 04:20:12 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp1.sentex.ca (8.14.2/8.14.2) with ESMTP id m6T8KBZc033655; Tue, 29 Jul 2008 04:20:12 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id CCD6573039; Tue, 29 Jul 2008 04:20:11 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20080729082011.CCD6573039@freebsd-current.sentex.ca> Date: Tue, 29 Jul 2008 04:20:11 -0400 (EDT) X-Virus-Scanned: ClamAV 0.93.1/7873/Tue Jul 29 01:16:14 2008 clamav-milter version 0.93 on clamscanner2 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 205.211.164.50 Cc: Subject: [head tinderbox] failure on arm/arm X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the StrongARM Processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jul 2008 08:20:15 -0000 TB --- 2008-07-29 07:20:00 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2008-07-29 07:20:00 - starting HEAD tinderbox run for arm/arm TB --- 2008-07-29 07:20:00 - cleaning the object tree TB --- 2008-07-29 07:20:20 - cvsupping the source tree TB --- 2008-07-29 07:20:20 - /usr/bin/csup -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/arm/arm/supfile TB --- 2008-07-29 07:20:31 - building world (CFLAGS=-O -pipe) TB --- 2008-07-29 07:20:31 - cd /src TB --- 2008-07-29 07:20:31 - /usr/bin/make -B buildworld >>> World build started on Tue Jul 29 07:20:33 UTC 2008 >>> 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 [...] grep -v '^#' < /src/share/timedef/lt_LT.ISO8859-4.src > lt_LT.ISO8859-4.out grep -v '^#' < /src/share/timedef/lt_LT.ISO8859-13.src > lt_LT.ISO8859-13.out grep -v '^#' < /src/share/timedef/lt_LT.UTF-8.src > lt_LT.UTF-8.out grep -v '^#' < /src/share/timedef/mn_MN.UTF-8.src > mn_MN.UTF-8.out grep -v '^#' < /src/share/timedef/nl_NL.ISO8859-1.src > nl_NL.ISO8859-1.out grep -v '^#' < /src/share/timedef/nn_NO.ISO8859-1.src > nn_NO.ISO8859-1.out grep -v '^#' < /src/share/timedef/nn_NO.UTF-8.src > nn_NO.UTF-8.out make: don't know how to make no_NO.ISO8859-1.out. Stop *** Error code 2 Stop in /src/share. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2008-07-29 08:20:11 - WARNING: /usr/bin/make returned exit code 1 TB --- 2008-07-29 08:20:11 - ERROR: failed to build world TB --- 2008-07-29 08:20:11 - tinderbox aborted TB --- 2662.49 user 345.87 system 3611.02 real http://tinderbox.des.no/tinderbox-head-HEAD-arm-arm.full From owner-freebsd-arm@FreeBSD.ORG Tue Jul 29 12:34:42 2008 Return-Path: Delivered-To: arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 56CD7106567A; Tue, 29 Jul 2008 12:34:42 +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 063518FC15; Tue, 29 Jul 2008 12:34:41 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp1.sentex.ca (smtp1.sentex.ca [199.212.134.4]) by smarthost2.sentex.ca (8.14.2/8.14.2) with ESMTP id m6TCYdeZ036245; Tue, 29 Jul 2008 08:34:40 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp1.sentex.ca (8.14.2/8.14.2) with ESMTP id m6TCYdB5071950; Tue, 29 Jul 2008 08:34:39 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 91A9973039; Tue, 29 Jul 2008 08:34:39 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20080729123439.91A9973039@freebsd-current.sentex.ca> Date: Tue, 29 Jul 2008 08:34:39 -0400 (EDT) X-Virus-Scanned: ClamAV 0.93.1/7873/Tue Jul 29 01:16:14 2008 clamav-milter version 0.93 on clamscanner1 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 205.211.164.50 Cc: Subject: [head tinderbox] failure on arm/arm X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the StrongARM Processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jul 2008 12:34:42 -0000 TB --- 2008-07-29 11:35:00 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2008-07-29 11:35:00 - starting HEAD tinderbox run for arm/arm TB --- 2008-07-29 11:35:00 - cleaning the object tree TB --- 2008-07-29 11:35:24 - cvsupping the source tree TB --- 2008-07-29 11:35:24 - /usr/bin/csup -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/arm/arm/supfile TB --- 2008-07-29 11:35:31 - building world (CFLAGS=-O -pipe) TB --- 2008-07-29 11:35:31 - cd /src TB --- 2008-07-29 11:35:31 - /usr/bin/make -B buildworld >>> World build started on Tue Jul 29 11:35:34 UTC 2008 >>> 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 [...] grep -v '^#' < /src/share/timedef/lt_LT.ISO8859-4.src > lt_LT.ISO8859-4.out grep -v '^#' < /src/share/timedef/lt_LT.ISO8859-13.src > lt_LT.ISO8859-13.out grep -v '^#' < /src/share/timedef/lt_LT.UTF-8.src > lt_LT.UTF-8.out grep -v '^#' < /src/share/timedef/mn_MN.UTF-8.src > mn_MN.UTF-8.out grep -v '^#' < /src/share/timedef/nl_NL.ISO8859-1.src > nl_NL.ISO8859-1.out grep -v '^#' < /src/share/timedef/nn_NO.ISO8859-1.src > nn_NO.ISO8859-1.out grep -v '^#' < /src/share/timedef/nn_NO.UTF-8.src > nn_NO.UTF-8.out make: don't know how to make no_NO.ISO8859-1.out. Stop *** Error code 2 Stop in /src/share. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2008-07-29 12:34:39 - WARNING: /usr/bin/make returned exit code 1 TB --- 2008-07-29 12:34:39 - ERROR: failed to build world TB --- 2008-07-29 12:34:39 - tinderbox aborted TB --- 2666.48 user 342.23 system 3578.92 real http://tinderbox.des.no/tinderbox-head-HEAD-arm-arm.full From owner-freebsd-arm@FreeBSD.ORG Tue Jul 29 16:49:40 2008 Return-Path: Delivered-To: arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CE21A1065670; Tue, 29 Jul 2008 16:49:40 +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 77DFD8FC0C; Tue, 29 Jul 2008 16:49:40 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.14.2/8.14.2) with ESMTP id m6TGncg2053050; Tue, 29 Jul 2008 12:49:38 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.14.2/8.14.2) with ESMTP id m6TGncWB011259; Tue, 29 Jul 2008 12:49:38 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id D3B3773039; Tue, 29 Jul 2008 12:49:37 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20080729164937.D3B3773039@freebsd-current.sentex.ca> Date: Tue, 29 Jul 2008 12:49:37 -0400 (EDT) X-Virus-Scanned: ClamAV 0.93.3/7824/Thu Jul 24 21:48:33 2008 clamav-milter version 0.93 on clamscanner3 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 Cc: Subject: [head tinderbox] failure on arm/arm X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the StrongARM Processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jul 2008 16:49:40 -0000 TB --- 2008-07-29 15:50:01 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2008-07-29 15:50:01 - starting HEAD tinderbox run for arm/arm TB --- 2008-07-29 15:50:01 - cleaning the object tree TB --- 2008-07-29 15:50:23 - cvsupping the source tree TB --- 2008-07-29 15:50:23 - /usr/bin/csup -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/arm/arm/supfile TB --- 2008-07-29 15:50:32 - building world (CFLAGS=-O -pipe) TB --- 2008-07-29 15:50:32 - cd /src TB --- 2008-07-29 15:50:32 - /usr/bin/make -B buildworld >>> World build started on Tue Jul 29 15:50:34 UTC 2008 >>> 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 [...] ===> usr.bin/bluetooth/btsockstat (all) cc -O -pipe -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -c /src/usr.bin/bluetooth/btsockstat/btsockstat.c cc1: warnings being treated as errors In file included from /obj/arm/src/tmp/usr/include/sys/socketvar.h:42, from /src/usr.bin/bluetooth/btsockstat/btsockstat.c:37: /obj/arm/src/tmp/usr/include/sys/sockbuf.h:128: warning: 'struct thread' declared inside parameter list /obj/arm/src/tmp/usr/include/sys/sockbuf.h:128: warning: its scope is only this definition or declaration, which is probably not what you want /obj/arm/src/tmp/usr/include/sys/sockbuf.h:130: warning: 'struct thread' declared inside parameter list *** Error code 1 Stop in /src/usr.bin/bluetooth/btsockstat. *** Error code 1 Stop in /src/usr.bin/bluetooth. *** Error code 1 Stop in /src/usr.bin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2008-07-29 16:49:37 - WARNING: /usr/bin/make returned exit code 1 TB --- 2008-07-29 16:49:37 - ERROR: failed to build world TB --- 2008-07-29 16:49:37 - tinderbox aborted TB --- 2674.14 user 343.02 system 3576.34 real http://tinderbox.des.no/tinderbox-head-HEAD-arm-arm.full From owner-freebsd-arm@FreeBSD.ORG Tue Jul 29 21:05:46 2008 Return-Path: Delivered-To: arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1312A106567B; Tue, 29 Jul 2008 21:05:46 +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 B08718FC13; Tue, 29 Jul 2008 21:05:45 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.14.2/8.14.2) with ESMTP id m6TL5g2U017516; Tue, 29 Jul 2008 17:05:42 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.14.2/8.14.2) with ESMTP id m6TL5gPq030724; Tue, 29 Jul 2008 17:05:42 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 9223073039; Tue, 29 Jul 2008 17:05:42 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20080729210542.9223073039@freebsd-current.sentex.ca> Date: Tue, 29 Jul 2008 17:05:42 -0400 (EDT) X-Virus-Scanned: ClamAV 0.93.3/7824/Thu Jul 24 21:48:33 2008 clamav-milter version 0.93 on clamscanner4 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 Cc: Subject: [head tinderbox] failure on arm/arm X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the StrongARM Processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jul 2008 21:05:46 -0000 TB --- 2008-07-29 20:05:00 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2008-07-29 20:05:00 - starting HEAD tinderbox run for arm/arm TB --- 2008-07-29 20:05:00 - cleaning the object tree TB --- 2008-07-29 20:05:21 - cvsupping the source tree TB --- 2008-07-29 20:05:21 - /usr/bin/csup -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/arm/arm/supfile TB --- 2008-07-29 20:05:31 - building world (CFLAGS=-O -pipe) TB --- 2008-07-29 20:05:31 - cd /src TB --- 2008-07-29 20:05:31 - /usr/bin/make -B buildworld >>> World build started on Tue Jul 29 20:05:34 UTC 2008 >>> 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 [...] cc1: warnings being treated as errors In file included from /obj/arm/src/tmp/usr/include/sys/socketvar.h:42, from /src/usr.bin/netstat/inet.c:47: /obj/arm/src/tmp/usr/include/sys/sockbuf.h:128: warning: 'struct thread' declared inside parameter list /obj/arm/src/tmp/usr/include/sys/sockbuf.h:128: warning: its scope is only this definition or declaration, which is probably not what you want /obj/arm/src/tmp/usr/include/sys/sockbuf.h:130: warning: 'struct thread' declared inside parameter list /src/usr.bin/netstat/inet.c:141: error: static declaration of 'sbtoxsockbuf' follows non-static declaration /obj/arm/src/tmp/usr/include/sys/sockbuf.h:133: error: previous declaration of 'sbtoxsockbuf' was here *** Error code 1 Stop in /src/usr.bin/netstat. *** Error code 1 Stop in /src/usr.bin. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2008-07-29 21:05:42 - WARNING: /usr/bin/make returned exit code 1 TB --- 2008-07-29 21:05:42 - ERROR: failed to build world TB --- 2008-07-29 21:05:42 - tinderbox aborted TB --- 2726.13 user 350.61 system 3642.01 real http://tinderbox.des.no/tinderbox-head-HEAD-arm-arm.full From owner-freebsd-arm@FreeBSD.ORG Sat Aug 2 04:59:42 2008 Return-Path: Delivered-To: arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F32391065677; Sat, 2 Aug 2008 04:59:41 +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 CA79E8FC0A; Sat, 2 Aug 2008 04:59:41 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.14.2/8.14.2) with ESMTP id m724xcAY064145; Sat, 2 Aug 2008 00:59:39 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.14.2/8.14.2) with ESMTP id m724xcL6024352; Sat, 2 Aug 2008 00:59:38 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id A3EB773039; Sat, 2 Aug 2008 00:59:38 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20080802045938.A3EB773039@freebsd-current.sentex.ca> Date: Sat, 2 Aug 2008 00:59:38 -0400 (EDT) X-Virus-Scanned: ClamAV 0.93.3/7824/Thu Jul 24 21:48:33 2008 clamav-milter version 0.93 on clamscanner3 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 Cc: Subject: [head tinderbox] failure on arm/arm X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the StrongARM Processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Aug 2008 04:59:42 -0000 TB --- 2008-08-02 04:10:00 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2008-08-02 04:10:00 - starting HEAD tinderbox run for arm/arm TB --- 2008-08-02 04:10:00 - cleaning the object tree TB --- 2008-08-02 04:10:33 - cvsupping the source tree TB --- 2008-08-02 04:10:33 - /usr/bin/csup -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/arm/arm/supfile TB --- 2008-08-02 04:10:42 - building world (CFLAGS=-O -pipe) TB --- 2008-08-02 04:10:42 - cd /src TB --- 2008-08-02 04:10:42 - /usr/bin/make -B buildworld >>> World build started on Sat Aug 2 04:10:45 UTC 2008 >>> 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 -O -pipe -Dxregcomp=regcomp -Dxre_exec=re_exec -Dxregexec=regexec -Dxre_search=re_search -Dxre_compile_fastmap=re_compile_fastmap -Dxregerror=regerror -Dxre_comp=re_comp -Dxre_set_syntax=re_set_syntax -DHAVE_CONFIG_H -DRL_NO_COMPAT -DMI_OUT=1 -DTUI=1 -I. -I/src/gnu/usr.bin/gdb/libgdb/../arch/arm -I/src/gnu/usr.bin/gdb/libgdb/../../binutils/libbfd -I/src/gnu/usr.bin/gdb/libgdb/../../binutils/libbfd/arm -I/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/gdb/gdb -I/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/gdb/gdb/config -I/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/gdb/include -I/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/binutils/include -I/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/binutils/bfd -c version.c building static gdb library ranlib libgdb.a ===> gnu/usr.bin/gdb/gdb (all) cc -O -pipe -DHAVE_CONFIG_H -DRL_NO_COMPAT -DMI_OUT=1 -DTUI=1 -I. -I/src/gnu/usr.bin/gdb/gdb/../arch/arm -I/src/gnu/usr.bin/gdb/gdb/../../binutils/libbfd -I/src/gnu/usr.bin/gdb/gdb/../../binutils/libbfd/arm -I/src/gnu/usr.bin/gdb/gdb/../../../../contrib/gdb/gdb -I/src/gnu/usr.bin/gdb/gdb/../../../../contrib/gdb/gdb/config -I/src/gnu/usr.bin/gdb/gdb/../../../../contrib/gdb/include -I/src/gnu/usr.bin/gdb/gdb/../../../../contrib/binutils/include -I/src/gnu/usr.bin/gdb/gdb/../../../../contrib/binutils/bfd -c /src/gnu/usr.bin/gdb/gdb/../../../../contrib/gdb/gdb/gdb.c cc -O -pipe -DHAVE_CONFIG_H -DRL_NO_COMPAT -DMI_OUT=1 -DTUI=1 -I. -I/src/gnu/usr.bin/gdb/gdb/../arch/arm -I/src/gnu/usr.bin/gdb/gdb/../../binutils/libbfd -I/src/gnu/usr.bin/gdb/gdb/../../binutils/libbfd/arm -I/src/gnu/usr.bin/gdb/gdb/../../../../contrib/gdb/gdb -I/src/gnu/usr.bin/gdb/gdb/../../../../contrib/gdb/gdb/config -I/src/gnu/usr.bin/gdb/gdb/../../../../contrib/gdb/include -I/src/gnu/usr.bin/gdb/gdb/../../../../contrib/binutils/include -I/src/gnu/usr.bin/gdb/gdb/../../../../contrib/binutils/bfd -Wl,-E -o gdb gdb.o /obj/arm/src/gnu/usr.bin/gdb/gdb/../../gdb/libgdb/libgdb.a /obj/arm/src/gnu/usr.bin/gdb/gdb/../../binutils/libbfd/libbfd.a /obj/arm/src/gnu/usr.bin/gdb/gdb/../../binutils/libopcodes/libopcodes.a /obj/arm/src/gnu/usr.bin/gdb/gdb/../../binutils/libiberty/libiberty.a -lm -lreadline -ltermcap -lgnuregex /obj/arm/src/gnu/usr.bin/gdb/gdb/../../gdb/libgdb/libgdb.a(init.o)(.text+0x3c): In function `initialize_all_files': : undefined reference to `_initialize_thread_db' *** Error code 1 Stop in /src/gnu/usr.bin/gdb/gdb. *** Error code 1 Stop in /src/gnu/usr.bin/gdb. *** Error code 1 Stop in /src/gnu/usr.bin. *** Error code 1 Stop in /src/gnu. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2008-08-02 04:59:38 - WARNING: /usr/bin/make returned exit code 1 TB --- 2008-08-02 04:59:38 - ERROR: failed to build world TB --- 2008-08-02 04:59:38 - tinderbox aborted TB --- 2195.65 user 287.64 system 2978.12 real http://tinderbox.des.no/tinderbox-head-HEAD-arm-arm.full From owner-freebsd-arm@FreeBSD.ORG Sat Aug 2 12:09:34 2008 Return-Path: Delivered-To: arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C44881065681; Sat, 2 Aug 2008 12:09:34 +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 964E28FC0C; Sat, 2 Aug 2008 12:09:34 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from smtp2.sentex.ca (smtp2c.sentex.ca [64.7.153.30]) by smarthost1.sentex.ca (8.14.2/8.14.2) with ESMTP id m72C9VbW079645; Sat, 2 Aug 2008 08:09:31 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by smtp2.sentex.ca (8.14.2/8.14.2) with ESMTP id m72C9V0m050988; Sat, 2 Aug 2008 08:09:31 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: by freebsd-current.sentex.ca (Postfix, from userid 666) id 0417C73039; Sat, 2 Aug 2008 08:09:30 -0400 (EDT) Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Precedence: bulk Message-Id: <20080802120931.0417C73039@freebsd-current.sentex.ca> Date: Sat, 2 Aug 2008 08:09:30 -0400 (EDT) X-Virus-Scanned: ClamAV 0.93.3/7824/Thu Jul 24 21:48:33 2008 clamav-milter version 0.93 on clamscanner3 X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.64 on 64.7.153.18 Cc: Subject: [head tinderbox] failure on arm/arm X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.5 List-Id: Porting FreeBSD to the StrongARM Processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 Aug 2008 12:09:34 -0000 TB --- 2008-08-02 11:20:00 - tinderbox 2.3 running on freebsd-current.sentex.ca TB --- 2008-08-02 11:20:00 - starting HEAD tinderbox run for arm/arm TB --- 2008-08-02 11:20:00 - cleaning the object tree TB --- 2008-08-02 11:20:22 - cvsupping the source tree TB --- 2008-08-02 11:20:22 - /usr/bin/csup -r 3 -g -L 1 -h localhost -s /tinderbox/HEAD/arm/arm/supfile TB --- 2008-08-02 11:20:29 - building world (CFLAGS=-O -pipe) TB --- 2008-08-02 11:20:29 - cd /src TB --- 2008-08-02 11:20:29 - /usr/bin/make -B buildworld >>> World build started on Sat Aug 2 11:20:31 UTC 2008 >>> 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 -O -pipe -Dxregcomp=regcomp -Dxre_exec=re_exec -Dxregexec=regexec -Dxre_search=re_search -Dxre_compile_fastmap=re_compile_fastmap -Dxregerror=regerror -Dxre_comp=re_comp -Dxre_set_syntax=re_set_syntax -DHAVE_CONFIG_H -DRL_NO_COMPAT -DMI_OUT=1 -DTUI=1 -I. -I/src/gnu/usr.bin/gdb/libgdb/../arch/arm -I/src/gnu/usr.bin/gdb/libgdb/../../binutils/libbfd -I/src/gnu/usr.bin/gdb/libgdb/../../binutils/libbfd/arm -I/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/gdb/gdb -I/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/gdb/gdb/config -I/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/gdb/include -I/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/binutils/include -I/src/gnu/usr.bin/gdb/libgdb/../../../../contrib/binutils/bfd -c version.c building static gdb library ranlib libgdb.a ===> gnu/usr.bin/gdb/gdb (all) cc -O -pipe -DHAVE_CONFIG_H -DRL_NO_COMPAT -DMI_OUT=1 -DTUI=1 -I. -I/src/gnu/usr.bin/gdb/gdb/../arch/arm -I/src/gnu/usr.bin/gdb/gdb/../../binutils/libbfd -I/src/gnu/usr.bin/gdb/gdb/../../binutils/libbfd/arm -I/src/gnu/usr.bin/gdb/gdb/../../../../contrib/gdb/gdb -I/src/gnu/usr.bin/gdb/gdb/../../../../contrib/gdb/gdb/config -I/src/gnu/usr.bin/gdb/gdb/../../../../contrib/gdb/include -I/src/gnu/usr.bin/gdb/gdb/../../../../contrib/binutils/include -I/src/gnu/usr.bin/gdb/gdb/../../../../contrib/binutils/bfd -c /src/gnu/usr.bin/gdb/gdb/../../../../contrib/gdb/gdb/gdb.c cc -O -pipe -DHAVE_CONFIG_H -DRL_NO_COMPAT -DMI_OUT=1 -DTUI=1 -I. -I/src/gnu/usr.bin/gdb/gdb/../arch/arm -I/src/gnu/usr.bin/gdb/gdb/../../binutils/libbfd -I/src/gnu/usr.bin/gdb/gdb/../../binutils/libbfd/arm -I/src/gnu/usr.bin/gdb/gdb/../../../../contrib/gdb/gdb -I/src/gnu/usr.bin/gdb/gdb/../../../../contrib/gdb/gdb/config -I/src/gnu/usr.bin/gdb/gdb/../../../../contrib/gdb/include -I/src/gnu/usr.bin/gdb/gdb/../../../../contrib/binutils/include -I/src/gnu/usr.bin/gdb/gdb/../../../../contrib/binutils/bfd -Wl,-E -o gdb gdb.o /obj/arm/src/gnu/usr.bin/gdb/gdb/../../gdb/libgdb/libgdb.a /obj/arm/src/gnu/usr.bin/gdb/gdb/../../binutils/libbfd/libbfd.a /obj/arm/src/gnu/usr.bin/gdb/gdb/../../binutils/libopcodes/libopcodes.a /obj/arm/src/gnu/usr.bin/gdb/gdb/../../binutils/libiberty/libiberty.a -lm -lreadline -ltermcap -lgnuregex /obj/arm/src/gnu/usr.bin/gdb/gdb/../../gdb/libgdb/libgdb.a(init.o)(.text+0x3c): In function `initialize_all_files': : undefined reference to `_initialize_thread_db' *** Error code 1 Stop in /src/gnu/usr.bin/gdb/gdb. *** Error code 1 Stop in /src/gnu/usr.bin/gdb. *** Error code 1 Stop in /src/gnu/usr.bin. *** Error code 1 Stop in /src/gnu. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. *** Error code 1 Stop in /src. TB --- 2008-08-02 12:09:30 - WARNING: /usr/bin/make returned exit code 1 TB --- 2008-08-02 12:09:30 - ERROR: failed to build world TB --- 2008-08-02 12:09:30 - tinderbox aborted TB --- 2193.87 user 288.49 system 2970.03 real http://tinderbox.des.no/tinderbox-head-HEAD-arm-arm.full