From owner-freebsd-sparc64@FreeBSD.ORG Mon Jun 10 00:00:01 2013 Return-Path: Delivered-To: freebsd-sparc64@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 9EDE65CC for ; Mon, 10 Jun 2013 00:00:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 91DCB1FDD for ; Mon, 10 Jun 2013 00:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r5A00132053705 for ; Mon, 10 Jun 2013 00:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r5A001br053704; Mon, 10 Jun 2013 00:00:01 GMT (envelope-from gnats) Date: Mon, 10 Jun 2013 00:00:01 GMT Message-Id: <201306100000.r5A001br053704@freefall.freebsd.org> To: freebsd-sparc64@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: sparc64/179289: commit references a PR X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: dfilter service List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jun 2013 00:00:01 -0000 The following reply was made to PR sparc64/179289; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: sparc64/179289: commit references a PR Date: Sun, 9 Jun 2013 23:50:38 +0000 (UTC) Author: marius Date: Sun Jun 9 23:50:30 2013 New Revision: 251589 URL: http://svnweb.freebsd.org/changeset/base/251589 Log: - The method introduced as part of r234898 for not altering the boot path when booting from ZFS turned out to also cause the boot path not being adjusted if booting from CD-ROM with firmware versions that do not employ the "cdrom" alias in that case. So shuffle the code around instead in order to achieve the original intent. Ideally, we shouldn't fiddle with the boot path when booting from UFS on a disk either; unfortunately, there doesn't seem to be an universal way of telling disks and CD-ROMs apart, though. [1] - Use NULL instead of 0 for pointers. PR: 179289 MFC after: 1 week Modified: head/sys/boot/sparc64/loader/main.c Modified: head/sys/boot/sparc64/loader/main.c ============================================================================== --- head/sys/boot/sparc64/loader/main.c Sun Jun 9 23:34:26 2013 (r251588) +++ head/sys/boot/sparc64/loader/main.c Sun Jun 9 23:50:30 2013 (r251589) @@ -160,17 +160,19 @@ struct devsw *devsw[] = { #ifdef LOADER_ZFS_SUPPORT &zfs_dev, #endif - 0 + NULL }; + struct arch_switch archsw; static struct file_format sparc64_elf = { __elfN(loadfile), __elfN(exec) }; + struct file_format *file_formats[] = { &sparc64_elf, - 0 + NULL }; struct fs_ops *file_system[] = { @@ -198,19 +200,20 @@ struct fs_ops *file_system[] = { #ifdef LOADER_TFTP_SUPPORT &tftp_fsops, #endif - 0 + NULL }; + struct netif_driver *netif_drivers[] = { #ifdef LOADER_NET_SUPPORT &ofwnet, #endif - 0 + NULL }; extern struct console ofwconsole; struct console *consoles[] = { &ofwconsole, - 0 + NULL }; #ifdef LOADER_DEBUG @@ -854,24 +857,6 @@ main(int (*openfirm)(void *)) OF_getprop(chosen, "bootpath", bootpath, sizeof(bootpath)); /* - * Sun compatible bootable CD-ROMs have a disk label placed - * before the cd9660 data, with the actual filesystem being - * in the first partition, while the other partitions contain - * pseudo disk labels with embedded boot blocks for different - * architectures, which may be followed by UFS filesystems. - * The firmware will set the boot path to the partition it - * boots from ('f' in the sun4u case), but we want the kernel - * to be loaded from the cd9660 fs ('a'), so the boot path - * needs to be altered. - */ - if (bootpath[strlen(bootpath) - 2] == ':' && - bootpath[strlen(bootpath) - 1] == 'f' && - strstr(bootpath, "cdrom") != NULL) { - bootpath[strlen(bootpath) - 1] = 'a'; - printf("Boot path set to %s\n", bootpath); - } - - /* * Initialize devices. */ for (dp = devsw; *dp != 0; dp++) @@ -883,9 +868,24 @@ main(int (*openfirm)(void *)) (void)strncpy(bootpath, zfs_fmtdev(&zfs_currdev), sizeof(bootpath) - 1); bootpath[sizeof(bootpath) - 1] = '\0'; - } + } else #endif + /* + * Sun compatible bootable CD-ROMs have a disk label placed before + * the ISO 9660 data, with the actual file system being in the first + * partition, while the other partitions contain pseudo disk labels + * with embedded boot blocks for different architectures, which may + * be followed by UFS file systems. + * The firmware will set the boot path to the partition it boots from + * ('f' in the sun4u/sun4v case), but we want the kernel to be loaded + * from the ISO 9660 file system ('a'), so the boot path needs to be + * altered. + */ + if (bootpath[strlen(bootpath) - 2] == ':' && + bootpath[strlen(bootpath) - 1] == 'f') + bootpath[strlen(bootpath) - 1] = 'a'; + env_setenv("currdev", EV_VOLATILE, bootpath, ofw_setcurrdev, env_nounset); env_setenv("loaddev", EV_VOLATILE, bootpath, _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" From owner-freebsd-sparc64@FreeBSD.ORG Mon Jun 10 10:38:25 2013 Return-Path: Delivered-To: freebsd-sparc64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 08C4C365 for ; Mon, 10 Jun 2013 10:38:25 +0000 (UTC) (envelope-from mfi@tf.uni-kiel.de) Received: from mhost.tf.uni-kiel.de (mhost.tf.uni-kiel.de [134.245.247.71]) by mx1.freebsd.org (Postfix) with ESMTP id BE6361AB1 for ; Mon, 10 Jun 2013 10:38:24 +0000 (UTC) Received: from amavis-a.tf.uni-kiel.de (unknown [192.168.247.70]) by mhost.tf.uni-kiel.de (Postfix) with ESMTP id D5E09D4C0ED; Mon, 10 Jun 2013 12:30:57 +0200 (CEST) X-Virus-Scanned: amavisd-new at tf.uni-kiel.de Received: from mhost.tf.uni-kiel.de ([134.245.247.71]) by amavis-a.tf.uni-kiel.de (amavis-a.tf.uni-kiel.de [192.168.247.70]) (amavisd-new, port 10025) with ESMTP id VgSkRtNMo81J; Mon, 10 Jun 2013 12:30:53 +0200 (CEST) Received: from fanty-a.tf.uni-kiel.de (fanty.tf.uni-kiel.de [134.245.247.132]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mhost.tf.uni-kiel.de (Postfix) with ESMTPS id 384DBD4C0DC; Mon, 10 Jun 2013 12:30:53 +0200 (CEST) Received: (from mfi@localhost) by fanty-a.tf.uni-kiel.de (8.14.5/8.14.5/Submit) id r5AAUrDp026694; Mon, 10 Jun 2013 12:30:53 +0200 (CEST) (envelope-from mfi) Date: Mon, 10 Jun 2013 12:30:52 +0200 From: Michael Firnau To: fddi Subject: Re: problems with sun fure v440 Message-ID: <20130610103052.GO26966@fanty-a.tf.uni-kiel.de> References: <51B1FC62.6080801@gmx.it> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <51B1FC62.6080801@gmx.it> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-sparc64 X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jun 2013 10:38:25 -0000 On Fri, Jun 07, 2013 at 05:29:38PM +0200, fddi wrote: > hello. > sorry for boring you. > I have problems with my sun fire v440 > [ snip ] Try default password which is the last 8 digits of the chassis serial number. Username is admin. Or: Boot an installation Solaris CD into single user mode to get a root prompt and do it from there. Don't know about OpenSolaris, might be ok, too. Cheers, Mike From owner-freebsd-sparc64@FreeBSD.ORG Mon Jun 10 11:00:22 2013 Return-Path: Delivered-To: sparc64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 478BF788; Mon, 10 Jun 2013 11:00:22 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 140E21BA0; Mon, 10 Jun 2013 11:00:21 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id r5AB0LMh098814; Mon, 10 Jun 2013 07:00:21 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id r5AB0L2J098798; Mon, 10 Jun 2013 11:00:21 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 10 Jun 2013 11:00:21 GMT Message-Id: <201306101100.r5AB0L2J098798@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on sparc64/sparc64 Precedence: bulk X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jun 2013 11:00:22 -0000 TB --- 2013-06-10 10:30:33 - tinderbox 2.10 running on freebsd-current.sentex.ca TB --- 2013-06-10 10:30:33 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2013-06-10 10:30:33 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2013-06-10 10:30:33 - cleaning the object tree TB --- 2013-06-10 10:30:33 - /usr/local/bin/svn stat /src TB --- 2013-06-10 10:30:36 - At svn revision 251600 TB --- 2013-06-10 10:30:37 - building world TB --- 2013-06-10 10:30:37 - CROSS_BUILD_TESTING=YES TB --- 2013-06-10 10:30:37 - MAKEOBJDIRPREFIX=/obj TB --- 2013-06-10 10:30:37 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2013-06-10 10:30:37 - SRCCONF=/dev/null TB --- 2013-06-10 10:30:37 - TARGET=sparc64 TB --- 2013-06-10 10:30:37 - TARGET_ARCH=sparc64 TB --- 2013-06-10 10:30:37 - TZ=UTC TB --- 2013-06-10 10:30:37 - __MAKE_CONF=/dev/null TB --- 2013-06-10 10:30:37 - cd /src TB --- 2013-06-10 10:30:37 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Mon Jun 10 10:30:44 UTC 2013 >>> 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 [...] *** Error code 1 Stop. make: stopped in /src *** Error code 1 Stop. make: stopped in /src *** Error code 1 Stop in /src. TB --- 2013-06-10 11:00:21 - WARNING: /usr/bin/make returned exit code 1 TB --- 2013-06-10 11:00:21 - ERROR: failed to build world TB --- 2013-06-10 11:00:21 - 1363.90 user 271.85 system 1787.73 real http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-sparc64-sparc64.full From owner-freebsd-sparc64@FreeBSD.ORG Mon Jun 10 11:06:55 2013 Return-Path: Delivered-To: freebsd-sparc64@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id CCAC472 for ; Mon, 10 Jun 2013 11:06:55 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id BBF0B1C98 for ; Mon, 10 Jun 2013 11:06:55 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r5AB6tF0097102 for ; Mon, 10 Jun 2013 11:06:55 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r5AB6te9097100 for freebsd-sparc64@FreeBSD.org; Mon, 10 Jun 2013 11:06:55 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 10 Jun 2013 11:06:55 GMT Message-Id: <201306101106.r5AB6te9097100@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-sparc64@FreeBSD.org Subject: Current problem reports assigned to freebsd-sparc64@FreeBSD.org X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jun 2013 11:06:55 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o sparc/179289 sparc64 Sun Enterprise 450 fails to boot from install CD, "can o sparc/170663 sparc64 panics with VIA 6421 SATA150 controller on Blade 1500 o sparc/169669 sparc64 Something seems broken in sparc64 TLS or lang/lua o sparc/164227 sparc64 [boot] Can't boot 9.0-RELEASE/sparc64 on Blade 1500 s sparc/164226 sparc64 [cd] Data corruption on 9.0-RELEASE when reading from o sparc/162513 sparc64 mpt(4), mptutil(8) reports variable, erroneous drive i o sparc/141918 sparc64 [ehci] ehci_interrupt: unrecoverable error, controller s sparc/139134 sparc64 kernel output corruption s sparc/107087 sparc64 [hang] system is hung during boot from CD o sparc/105048 sparc64 [trm] trm(4) panics on sparc64 o sparc/104428 sparc64 [nullfs] nullfs panics on E4500 (but not E420) o sparc/71729 sparc64 printf in kernel thread causes panic on SPARC 12 problems total. From owner-freebsd-sparc64@FreeBSD.ORG Mon Jun 10 12:03:03 2013 Return-Path: Delivered-To: freebsd-sparc64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 138FBC95 for ; Mon, 10 Jun 2013 12:03:03 +0000 (UTC) (envelope-from fddi@gmx.it) Received: from mout.gmx.net (mout.gmx.net [212.227.17.20]) by mx1.freebsd.org (Postfix) with ESMTP id 8D84411CD for ; Mon, 10 Jun 2013 12:03:02 +0000 (UTC) Received: from darwin.cnaf.infn.it ([131.154.3.242]) by mail.gmx.com (mrgmx001) with ESMTPSA (Nemesis) id 0LjaEi-1UEszF1iBs-00bXDJ; Mon, 10 Jun 2013 14:03:01 +0200 Message-ID: <51B5C070.9080100@gmx.it> Date: Mon, 10 Jun 2013 14:02:56 +0200 From: fddi User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:17.0) Gecko/20130509 Thunderbird/17.0.6 MIME-Version: 1.0 To: Michael Firnau Subject: Re: problems with sun fure v440 References: <51B1FC62.6080801@gmx.it> <20130610103052.GO26966@fanty-a.tf.uni-kiel.de> In-Reply-To: <20130610103052.GO26966@fanty-a.tf.uni-kiel.de> X-Provags-ID: V03:K0:6FyH2Kkte0Nij1PP2dyenZpyOlmqVXQho3nSpyOjx46erC9DhCl 5uq0hYFb4ITX/SdMq6kSAcVXso7y95B9EJE/v7W4hqQEiPEWxyDoWpYRRbIS8CQocgMKsZ0 kQPsm/ZO1Hzu6nzTnSEjIm7/3QvK67Fwrv04UtCiCaHY8tRU3z+WQy/aANi9h+QensOLGOt y967fUdzJyjgPGyLplk8g== Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: freebsd-sparc64 X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jun 2013 12:03:03 -0000 Yes I tried the last 8 digit does nto work and the problem is that I cannot boot anything. the openboot won't start I have this error message: SC Alert: Host Power-On Failed: System Power OK, Open Boot not responding I think this could be a hardware problem... but I cannot identify it. the OK> prompt is not reached... On 6/10/13 12:30 PM, Michael Firnau wrote: > On Fri, Jun 07, 2013 at 05:29:38PM +0200, fddi wrote: >> hello. >> sorry for boring you. >> I have problems with my sun fire v440 >> > [ snip ] > > Try default password which is the last 8 digits of the chassis serial number. > Username is admin. > > Or: > > Boot an installation Solaris CD into single user mode to get a root prompt and > do it from there. Don't know about OpenSolaris, might be ok, too. > > Cheers, > > Mike From owner-freebsd-sparc64@FreeBSD.ORG Mon Jun 10 14:14:08 2013 Return-Path: Delivered-To: sparc64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 5CE1A399; Mon, 10 Jun 2013 14:14:08 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 28EBC1A8C; Mon, 10 Jun 2013 14:14:07 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id r5AEE7oO041807; Mon, 10 Jun 2013 10:14:07 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id r5AEE7ql041806; Mon, 10 Jun 2013 14:14:07 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 10 Jun 2013 14:14:07 GMT Message-Id: <201306101414.r5AEE7ql041806@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on sparc64/sparc64 Precedence: bulk X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jun 2013 14:14:08 -0000 TB --- 2013-06-10 13:43:42 - tinderbox 2.10 running on freebsd-current.sentex.ca TB --- 2013-06-10 13:43:42 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2013-06-10 13:43:42 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2013-06-10 13:43:42 - cleaning the object tree TB --- 2013-06-10 13:44:20 - /usr/local/bin/svn stat /src TB --- 2013-06-10 13:44:23 - At svn revision 251600 TB --- 2013-06-10 13:44:24 - building world TB --- 2013-06-10 13:44:24 - CROSS_BUILD_TESTING=YES TB --- 2013-06-10 13:44:24 - MAKEOBJDIRPREFIX=/obj TB --- 2013-06-10 13:44:24 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2013-06-10 13:44:24 - SRCCONF=/dev/null TB --- 2013-06-10 13:44:24 - TARGET=sparc64 TB --- 2013-06-10 13:44:24 - TARGET_ARCH=sparc64 TB --- 2013-06-10 13:44:24 - TZ=UTC TB --- 2013-06-10 13:44:24 - __MAKE_CONF=/dev/null TB --- 2013-06-10 13:44:24 - cd /src TB --- 2013-06-10 13:44:24 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Mon Jun 10 13:44:31 UTC 2013 >>> 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 [...] *** Error code 1 Stop. make: stopped in /src *** Error code 1 Stop. make: stopped in /src *** Error code 1 Stop in /src. TB --- 2013-06-10 14:14:07 - WARNING: /usr/bin/make returned exit code 1 TB --- 2013-06-10 14:14:07 - ERROR: failed to build world TB --- 2013-06-10 14:14:07 - 1366.35 user 272.67 system 1824.92 real http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-sparc64-sparc64.full From owner-freebsd-sparc64@FreeBSD.ORG Mon Jun 10 17:34:53 2013 Return-Path: Delivered-To: sparc64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 263ACD43; Mon, 10 Jun 2013 17:34:53 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id E4ABE17A3; Mon, 10 Jun 2013 17:34:52 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id r5AHYpOO089917; Mon, 10 Jun 2013 13:34:51 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id r5AHYpws089907; Mon, 10 Jun 2013 17:34:51 GMT (envelope-from tinderbox@freebsd.org) Date: Mon, 10 Jun 2013 17:34:51 GMT Message-Id: <201306101734.r5AHYpws089907@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on sparc64/sparc64 Precedence: bulk X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jun 2013 17:34:53 -0000 TB --- 2013-06-10 17:04:37 - tinderbox 2.10 running on freebsd-current.sentex.ca TB --- 2013-06-10 17:04:37 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2013-06-10 17:04:37 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2013-06-10 17:04:37 - cleaning the object tree TB --- 2013-06-10 17:05:05 - /usr/local/bin/svn stat /src TB --- 2013-06-10 17:05:08 - At svn revision 251603 TB --- 2013-06-10 17:05:09 - building world TB --- 2013-06-10 17:05:09 - CROSS_BUILD_TESTING=YES TB --- 2013-06-10 17:05:09 - MAKEOBJDIRPREFIX=/obj TB --- 2013-06-10 17:05:09 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2013-06-10 17:05:09 - SRCCONF=/dev/null TB --- 2013-06-10 17:05:09 - TARGET=sparc64 TB --- 2013-06-10 17:05:09 - TARGET_ARCH=sparc64 TB --- 2013-06-10 17:05:09 - TZ=UTC TB --- 2013-06-10 17:05:09 - __MAKE_CONF=/dev/null TB --- 2013-06-10 17:05:09 - cd /src TB --- 2013-06-10 17:05:09 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Mon Jun 10 17:05:16 UTC 2013 >>> 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 [...] *** Error code 1 Stop. make: stopped in /src *** Error code 1 Stop. make: stopped in /src *** Error code 1 Stop in /src. TB --- 2013-06-10 17:34:51 - WARNING: /usr/bin/make returned exit code 1 TB --- 2013-06-10 17:34:51 - ERROR: failed to build world TB --- 2013-06-10 17:34:51 - 1365.49 user 272.62 system 1814.60 real http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-sparc64-sparc64.full From owner-freebsd-sparc64@FreeBSD.ORG Wed Jun 12 20:11:28 2013 Return-Path: Delivered-To: sparc64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 837F1754; Wed, 12 Jun 2013 20:11:28 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-current.sentex.ca (freebsd-current.sentex.ca [64.7.128.98]) by mx1.freebsd.org (Postfix) with ESMTP id 370101EDB; Wed, 12 Jun 2013 20:11:27 +0000 (UTC) Received: from freebsd-current.sentex.ca (localhost [127.0.0.1]) by freebsd-current.sentex.ca (8.14.5/8.14.5) with ESMTP id r5CKBMMP079093; Wed, 12 Jun 2013 16:11:27 -0400 (EDT) (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-current.sentex.ca (8.14.5/8.14.5/Submit) id r5CKBMhE079092; Wed, 12 Jun 2013 20:11:22 GMT (envelope-from tinderbox@freebsd.org) Date: Wed, 12 Jun 2013 20:11:22 GMT Message-Id: <201306122011.r5CKBMhE079092@freebsd-current.sentex.ca> X-Authentication-Warning: freebsd-current.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [head tinderbox] failure on sparc64/sparc64 Precedence: bulk X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jun 2013 20:11:28 -0000 TB --- 2013-06-12 19:17:28 - tinderbox 2.10 running on freebsd-current.sentex.ca TB --- 2013-06-12 19:17:28 - FreeBSD freebsd-current.sentex.ca 8.3-PRERELEASE FreeBSD 8.3-PRERELEASE #0: Mon Mar 26 13:54:12 EDT 2012 des@freebsd-current.sentex.ca:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2013-06-12 19:17:28 - starting HEAD tinderbox run for sparc64/sparc64 TB --- 2013-06-12 19:17:28 - cleaning the object tree TB --- 2013-06-12 19:17:28 - /usr/local/bin/svn stat /src TB --- 2013-06-12 19:17:31 - At svn revision 251658 TB --- 2013-06-12 19:17:32 - building world TB --- 2013-06-12 19:17:32 - CROSS_BUILD_TESTING=YES TB --- 2013-06-12 19:17:32 - MAKEOBJDIRPREFIX=/obj TB --- 2013-06-12 19:17:32 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2013-06-12 19:17:32 - SRCCONF=/dev/null TB --- 2013-06-12 19:17:32 - TARGET=sparc64 TB --- 2013-06-12 19:17:32 - TARGET_ARCH=sparc64 TB --- 2013-06-12 19:17:32 - TZ=UTC TB --- 2013-06-12 19:17:32 - __MAKE_CONF=/dev/null TB --- 2013-06-12 19:17:32 - cd /src TB --- 2013-06-12 19:17:32 - /usr/bin/make -B buildworld >>> Building an up-to-date make(1) >>> World build started on Wed Jun 12 19:17:39 UTC 2013 >>> 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 [...] *** Error code 1 Stop. make: stopped in /src *** Error code 1 Stop. make: stopped in /src *** Error code 1 Stop in /src. TB --- 2013-06-12 20:11:22 - WARNING: /usr/bin/make returned exit code 1 TB --- 2013-06-12 20:11:22 - ERROR: failed to build world TB --- 2013-06-12 20:11:22 - 2406.41 user 493.29 system 3234.23 real http://tinderbox.freebsd.org/tinderbox-head-build-HEAD-sparc64-sparc64.full From owner-freebsd-sparc64@FreeBSD.ORG Thu Jun 13 10:15:01 2013 Return-Path: Delivered-To: freebsd-sparc64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 7CF91F86 for ; Thu, 13 Jun 2013 10:15:01 +0000 (UTC) (envelope-from mexas@bristol.ac.uk) Received: from eu1sys200aog125.obsmtp.com (eu1sys200aog125.obsmtp.com [207.126.144.159]) by mx1.freebsd.org (Postfix) with ESMTP id D2B331371 for ; Thu, 13 Jun 2013 10:15:00 +0000 (UTC) Received: from mail-we0-f175.google.com ([74.125.82.175]) (using TLSv1) by eu1sys200aob125.postini.com ([207.126.147.11]) with SMTP ID DSNKUbmbivb0x8X2Qh048+/Y7+2M2AOncCx9@postini.com; Thu, 13 Jun 2013 10:15:00 UTC Received: by mail-we0-f175.google.com with SMTP id t59so7940282wes.34 for ; Thu, 13 Jun 2013 03:14:33 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=sender:date:from:message-id:to:subject:reply-to:x-gm-message-state; bh=vIvxlHEwxi2xzAQW5YxEwev3ng12agXE7Z4SE3OMuqo=; b=KW5ymk/8VFb+DNaAhcC0CrDfqwpPvdK385BsDLdTjhX2GzgQNo00O8Swxw3RXG64ge BeGkWER4HeCFznBmmcRDZdNKgH7RC0nNC3P5YXwURV5DiV6+NtPordQvL7vYHlnoB9Ly 3K9nchBlvSuc8MFnRpZE1RVaeUxEDhWMrY/7+gtSB/5SYrx1iwUK04wVmB+6t1IaWNNk xz+EILQCCvJIKecwyWXlAo/nHQC0FXLXJRmQfioTZBZ/f7gaUfW38pXAlM8X4MCT467h 6G1RF83SlvAXBOSMUBE445IC5BvWUA6S3CE25tO21ZAlltAwy5wOD68GsygVnNGm2NKP itxA== X-Received: by 10.180.20.208 with SMTP id p16mr37765wie.59.1371118473898; Thu, 13 Jun 2013 03:14:33 -0700 (PDT) X-Received: by 10.180.20.208 with SMTP id p16mr37760wie.59.1371118473797; Thu, 13 Jun 2013 03:14:33 -0700 (PDT) Received: from mech-cluster241.men.bris.ac.uk (mech-cluster241.men.bris.ac.uk. [137.222.187.241]) by mx.google.com with ESMTPSA id k10sm30252406wia.4.2013.06.13.03.14.31 for (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 13 Jun 2013 03:14:32 -0700 (PDT) Sender: Anton Shterenlikht Received: from mech-cluster241.men.bris.ac.uk (localhost [127.0.0.1]) by mech-cluster241.men.bris.ac.uk (8.14.6/8.14.6) with ESMTP id r5DAEUgZ030100 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Thu, 13 Jun 2013 11:14:30 +0100 (BST) (envelope-from mexas@mech-cluster241.men.bris.ac.uk) Received: (from mexas@localhost) by mech-cluster241.men.bris.ac.uk (8.14.6/8.14.6/Submit) id r5DAEUmh030099; Thu, 13 Jun 2013 11:14:30 +0100 (BST) (envelope-from mexas) Date: Thu, 13 Jun 2013 11:14:30 +0100 (BST) From: Anton Shterenlikht Message-Id: <201306131014.r5DAEUmh030099@mech-cluster241.men.bris.ac.uk> To: freebsd-sparc64@freebsd.org, freebsd-x11@freebsd.org Subject: sparc64 machfb: (EE) Unable to map mmio aperture. Invalid argument (22) X-Gm-Message-State: ALoCoQmy5nh9He/2YopufkOYyh5biSA9ozhpe2HYrjPx3MPyCuWC1ffEzuFuXwKbYW5JdhcfgmTuMuK29rJ08llmrTFxdknh0THF/kq2k5ITMTT2Q99lTokqE78thJpxCUsEoL7tabavHhmYfj9i/OCsBl8ra/3CF5OGMCxAI8EttTcIhTf+06I= X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: mexas@bristol.ac.uk List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jun 2013 10:15:01 -0000 I've just updated my Sun Blade 1500 silver to 10.0-CURRENT #11 r251648. The graphics broke. I get: (EE) Unable to map mmio aperture. Invalid argument (22) from X -configure # dmesg|grep mach machfb0: port 0xb00-0xbff mem 0x3000000-0x3ffffff,0x102000-0x102ff f at device 2.0 on pci0 machfb0: console machfb0: 16 MB aperture at 0xfddcc000 not swapped machfb0: 8188 KB SGRAM 114.992 MHz, maximum RAMDAC clock 230 MHz, DSP machfb0: resolution 1280x1024 at 8 bpp # # pkg info -xo mach6 xf86-video-mach64-6.9.3: x11-drivers/xf86-video-mach64 # # cat /var/log/Xorg.0.log X.Org X Server 1.7.7 Release Date: 2010-05-04 X Protocol Version 11, Revision 0 Build Operating System: FreeBSD 10.0-CURRENT sparc64 Current Operating System: FreeBSD mech-anton240.men.bris.ac.uk 10.0-CURRENT Free BSD 10.0-CURRENT #11 r251648: Thu Jun 13 10:20:15 BST 2013 root@mech-anton24 0.men.bris.ac.uk:/usr/obj/usr/src/sys/QOF sparc64 Build Date: 03 June 2013 03:14:51PM Current version of pixman: 0.28.2 Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.0.log", Time: Thu Jun 13 11:07:01 2013 (II) Loader magic: 0x3c5768 (II) Module ABI versions: X.Org ANSI C Emulation: 0.4 X.Org Video Driver: 6.0 X.Org XInput driver : 7.0 X.Org Server Extension : 2.0 (--) Using syscons driver with X support (version 8589945424.11) (--) using VT number 11 (--) PCI: (0:0:6:0) 10b9:7101:0000:0000 ULi Electronics Inc. M7101 Power Managem ent Controller [PMU] rev 0 (--) PCI: (0:0:2:0) 1002:4752:0000:0000 Advanced Micro Devices, Inc. [AMD/ATI] R age XL PCI rev 39, Mem @ 0x03000000/16777216, 0x00102000/4096, I/O @ 0x00000b00/ 256, BIOS @ 0x????????/65536 List of video drivers: mach64 (II) LoadModule: "mach64" (II) Loading /usr/local/lib/xorg/modules/drivers/mach64_drv.so (II) Module mach64: vendor="X.Org Foundation" compiled for 1.7.7, module version = 6.9.3 Module class: X.Org Video Driver ABI class: X.Org Video Driver, version 6.0 (II) MACH64: Driver for ATI Mach64 chipsets (++) Using config file: "/root/xorg.conf.new" (==) ServerLayout "X.org Configured" (**) |-->Screen "Screen0" (0) (**) | |-->Monitor "Monitor0" (**) | |-->Device "Card0" (**) |-->Input Device "Mouse0" (**) |-->Input Device "Keyboard0" (==) Not automatically adding devices (==) Not automatically enabling devices (**) FontPath set to: /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/OTF, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/75dpi/, /usr/local/lib/X11/fonts/misc/, /usr/local/lib/X11/fonts/TTF/, /usr/local/lib/X11/fonts/OTF, /usr/local/lib/X11/fonts/Type1/, /usr/local/lib/X11/fonts/100dpi/, /usr/local/lib/X11/fonts/75dpi/ (**) ModulePath set to "/usr/local/lib/xorg/modules" (EE) Unable to map mmio aperture. Invalid argument (22) (WW) MACH64: Mach64 in slot 0:2:0 could not be detected! Xorg detected your mouse at device /dev/sysmouse. Please check your config if the mouse is still not operational, as by default Xorg tries to autodetect the protocol. Your xorg.conf file is /root/xorg.conf.new To test the server, run 'X -config /root/xorg.conf.new' Maybe I need to rebuild some ports? Please advise Thanks Anton From owner-freebsd-sparc64@FreeBSD.ORG Fri Jun 14 05:19:27 2013 Return-Path: Delivered-To: sparc64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 5D2B05AA; Fri, 14 Jun 2013 05:19:27 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 266941131; Fri, 14 Jun 2013 05:19:27 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id r5E5JQwY078540; Fri, 14 Jun 2013 05:19:26 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id r5E5JQ1l078539; Fri, 14 Jun 2013 05:19:26 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 14 Jun 2013 05:19:26 GMT Message-Id: <201306140519.r5E5JQ1l078539@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [releng_8 tinderbox] failure on sparc64/sparc64 Precedence: bulk X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jun 2013 05:19:27 -0000 TB --- 2013-06-14 05:15:05 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca TB --- 2013-06-14 05:15:05 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec 4 09:23:10 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2013-06-14 05:15:05 - starting RELENG_8 tinderbox run for sparc64/sparc64 TB --- 2013-06-14 05:15:05 - cleaning the object tree TB --- 2013-06-14 05:15:05 - /usr/local/bin/svn stat /src TB --- 2013-06-14 05:15:06 - At svn revision 251732 TB --- 2013-06-14 05:15:07 - building world TB --- 2013-06-14 05:15:07 - CROSS_BUILD_TESTING=YES TB --- 2013-06-14 05:15:07 - MAKEOBJDIRPREFIX=/obj TB --- 2013-06-14 05:15:07 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2013-06-14 05:15:07 - SRCCONF=/dev/null TB --- 2013-06-14 05:15:07 - TARGET=sparc64 TB --- 2013-06-14 05:15:07 - TARGET_ARCH=sparc64 TB --- 2013-06-14 05:15:07 - TZ=UTC TB --- 2013-06-14 05:15:07 - __MAKE_CONF=/dev/null TB --- 2013-06-14 05:15:07 - cd /src TB --- 2013-06-14 05:15:07 - /usr/bin/make -B buildworld >>> World build started on Fri Jun 14 05:15:08 UTC 2013 >>> 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 [...] cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/sparc64/src/tmp/usr\" -DCROSS_COMPILE -I/obj/sparc64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber -I/obj/sparc64/src/tmp/legacy/usr/include -c /src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config/sparc/sparc.c cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/sparc64/src/tmp/usr\" -DCROSS_COMPILE -I/obj/sparc64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber -I/obj/sparc64/src/tmp/legacy/usr/include -c /src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/attribs.c cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/sparc64/src/tmp/usr\" -DCROSS_COMPILE -I/obj/sparc64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber -I/obj/sparc64/src/tmp/legacy/usr/include -c /src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-errors.c cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/sparc64/src/tmp/usr\" -DCROSS_COMPILE -I/obj/sparc64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber -I/obj/sparc64/src/tmp/legacy/usr/include -c /src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c /src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c: In function 'interpret_float': /src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: 'CPP_N_DEFAULT' undeclared (first use in this function) /src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: (Each undeclared identifier is reported only once /src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: for each function it appears in.) *** [c-lex.o] Error code 1 Stop in /src/gnu/usr.bin/cc/cc_int. *** [all] Error code 1 Stop in /src/gnu/usr.bin/cc. *** [cross-tools] Error code 1 Stop in /src. *** [_cross-tools] Error code 1 Stop in /src. *** [buildworld] Error code 1 Stop in /src. TB --- 2013-06-14 05:19:26 - WARNING: /usr/bin/make returned exit code 1 TB --- 2013-06-14 05:19:26 - ERROR: failed to build world TB --- 2013-06-14 05:19:26 - 225.00 user 35.31 system 261.70 real http://tinderbox.freebsd.org/tinderbox-freebsd8-build-RELENG_8-sparc64-sparc64.full From owner-freebsd-sparc64@FreeBSD.ORG Fri Jun 14 07:49:37 2013 Return-Path: Delivered-To: sparc64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 6745CD68; Fri, 14 Jun 2013 07:49:37 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 2E5CD19F9; Fri, 14 Jun 2013 07:49:37 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id r5E7naKr002701; Fri, 14 Jun 2013 07:49:36 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id r5E7naxt002700; Fri, 14 Jun 2013 07:49:36 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 14 Jun 2013 07:49:36 GMT Message-Id: <201306140749.r5E7naxt002700@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [releng_8 tinderbox] failure on sparc64/sparc64 Precedence: bulk X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jun 2013 07:49:37 -0000 TB --- 2013-06-14 07:45:11 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca TB --- 2013-06-14 07:45:11 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec 4 09:23:10 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2013-06-14 07:45:11 - starting RELENG_8 tinderbox run for sparc64/sparc64 TB --- 2013-06-14 07:45:11 - cleaning the object tree TB --- 2013-06-14 07:45:12 - /usr/local/bin/svn stat /src TB --- 2013-06-14 07:45:14 - At svn revision 251736 TB --- 2013-06-14 07:45:15 - building world TB --- 2013-06-14 07:45:15 - CROSS_BUILD_TESTING=YES TB --- 2013-06-14 07:45:15 - MAKEOBJDIRPREFIX=/obj TB --- 2013-06-14 07:45:15 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2013-06-14 07:45:15 - SRCCONF=/dev/null TB --- 2013-06-14 07:45:15 - TARGET=sparc64 TB --- 2013-06-14 07:45:15 - TARGET_ARCH=sparc64 TB --- 2013-06-14 07:45:15 - TZ=UTC TB --- 2013-06-14 07:45:15 - __MAKE_CONF=/dev/null TB --- 2013-06-14 07:45:15 - cd /src TB --- 2013-06-14 07:45:15 - /usr/bin/make -B buildworld >>> World build started on Fri Jun 14 07:45:16 UTC 2013 >>> 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 [...] cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/sparc64/src/tmp/usr\" -DCROSS_COMPILE -I/obj/sparc64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber -I/obj/sparc64/src/tmp/legacy/usr/include -c /src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config/sparc/sparc.c cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/sparc64/src/tmp/usr\" -DCROSS_COMPILE -I/obj/sparc64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber -I/obj/sparc64/src/tmp/legacy/usr/include -c /src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/attribs.c cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/sparc64/src/tmp/usr\" -DCROSS_COMPILE -I/obj/sparc64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber -I/obj/sparc64/src/tmp/legacy/usr/include -c /src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-errors.c cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/sparc64/src/tmp/usr\" -DCROSS_COMPILE -I/obj/sparc64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber -I/obj/sparc64/src/tmp/legacy/usr/include -c /src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c /src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c: In function 'interpret_float': /src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: 'CPP_N_DEFAULT' undeclared (first use in this function) /src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: (Each undeclared identifier is reported only once /src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: for each function it appears in.) *** [c-lex.o] Error code 1 Stop in /src/gnu/usr.bin/cc/cc_int. *** [all] Error code 1 Stop in /src/gnu/usr.bin/cc. *** [cross-tools] Error code 1 Stop in /src. *** [_cross-tools] Error code 1 Stop in /src. *** [buildworld] Error code 1 Stop in /src. TB --- 2013-06-14 07:49:36 - WARNING: /usr/bin/make returned exit code 1 TB --- 2013-06-14 07:49:36 - ERROR: failed to build world TB --- 2013-06-14 07:49:36 - 226.46 user 36.68 system 265.01 real http://tinderbox.freebsd.org/tinderbox-freebsd8-build-RELENG_8-sparc64-sparc64.full From owner-freebsd-sparc64@FreeBSD.ORG Fri Jun 14 11:23:43 2013 Return-Path: Delivered-To: sparc64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 9E42EB37; Fri, 14 Jun 2013 11:23:43 +0000 (UTC) (envelope-from tinderbox@freebsd.org) Received: from freebsd-legacy2.sentex.ca (freebsd-legacy2.sentex.ca [IPv6:2607:f3e0:0:3::6502:9c]) by mx1.freebsd.org (Postfix) with ESMTP id 5846115FF; Fri, 14 Jun 2013 11:23:43 +0000 (UTC) Received: from freebsd-legacy2.sentex.ca (localhost [127.0.0.1]) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5) with ESMTP id r5EAJWYQ026741; Fri, 14 Jun 2013 10:19:32 GMT (envelope-from tinderbox@freebsd.org) Received: (from tinderbox@localhost) by freebsd-legacy2.sentex.ca (8.14.5/8.14.5/Submit) id r5EAJWQX026740; Fri, 14 Jun 2013 10:19:32 GMT (envelope-from tinderbox@freebsd.org) Date: Fri, 14 Jun 2013 10:19:32 GMT Message-Id: <201306141019.r5EAJWQX026740@freebsd-legacy2.sentex.ca> X-Authentication-Warning: freebsd-legacy2.sentex.ca: tinderbox set sender to FreeBSD Tinderbox using -f Sender: FreeBSD Tinderbox From: FreeBSD Tinderbox To: FreeBSD Tinderbox , , Subject: [releng_8 tinderbox] failure on sparc64/sparc64 Precedence: bulk X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.14 List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jun 2013 11:23:43 -0000 TB --- 2013-06-14 10:15:09 - tinderbox 2.10 running on freebsd-legacy2.sentex.ca TB --- 2013-06-14 10:15:09 - FreeBSD freebsd-legacy2.sentex.ca 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec 4 09:23:10 UTC 2012 root@farrell.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC amd64 TB --- 2013-06-14 10:15:09 - starting RELENG_8 tinderbox run for sparc64/sparc64 TB --- 2013-06-14 10:15:09 - cleaning the object tree TB --- 2013-06-14 10:15:10 - /usr/local/bin/svn stat /src TB --- 2013-06-14 10:15:12 - At svn revision 251744 TB --- 2013-06-14 10:15:13 - building world TB --- 2013-06-14 10:15:13 - CROSS_BUILD_TESTING=YES TB --- 2013-06-14 10:15:13 - MAKEOBJDIRPREFIX=/obj TB --- 2013-06-14 10:15:13 - PATH=/usr/bin:/usr/sbin:/bin:/sbin TB --- 2013-06-14 10:15:13 - SRCCONF=/dev/null TB --- 2013-06-14 10:15:13 - TARGET=sparc64 TB --- 2013-06-14 10:15:13 - TARGET_ARCH=sparc64 TB --- 2013-06-14 10:15:13 - TZ=UTC TB --- 2013-06-14 10:15:13 - __MAKE_CONF=/dev/null TB --- 2013-06-14 10:15:13 - cd /src TB --- 2013-06-14 10:15:13 - /usr/bin/make -B buildworld >>> World build started on Fri Jun 14 10:15:13 UTC 2013 >>> 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 [...] cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/sparc64/src/tmp/usr\" -DCROSS_COMPILE -I/obj/sparc64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber -I/obj/sparc64/src/tmp/legacy/usr/include -c /src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config/sparc/sparc.c cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/sparc64/src/tmp/usr\" -DCROSS_COMPILE -I/obj/sparc64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber -I/obj/sparc64/src/tmp/legacy/usr/include -c /src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/attribs.c cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/sparc64/src/tmp/usr\" -DCROSS_COMPILE -I/obj/sparc64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber -I/obj/sparc64/src/tmp/legacy/usr/include -c /src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-errors.c cc -O2 -pipe -DIN_GCC -DHAVE_CONFIG_H -DPREFIX=\"/obj/sparc64/src/tmp/usr\" -DCROSS_COMPILE -I/obj/sparc64/src/tmp/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/src/gnu/usr.bin/cc/cc_int/../cc_tools -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/config -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/include -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libcpp/include -I/src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcclibs/libdecnumber -I/obj/sparc64/src/tmp/legacy/usr/include -c /src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c /src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c: In function 'interpret_float': /src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: 'CPP_N_DEFAULT' undeclared (first use in this function) /src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: (Each undeclared identifier is reported only once /src/gnu/usr.bin/cc/cc_int/../../../../contrib/gcc/c-lex.c:644: error: for each function it appears in.) *** [c-lex.o] Error code 1 Stop in /src/gnu/usr.bin/cc/cc_int. *** [all] Error code 1 Stop in /src/gnu/usr.bin/cc. *** [cross-tools] Error code 1 Stop in /src. *** [_cross-tools] Error code 1 Stop in /src. *** [buildworld] Error code 1 Stop in /src. TB --- 2013-06-14 10:19:32 - WARNING: /usr/bin/make returned exit code 1 TB --- 2013-06-14 10:19:32 - ERROR: failed to build world TB --- 2013-06-14 10:19:32 - 225.12 user 36.28 system 263.32 real http://tinderbox.freebsd.org/tinderbox-freebsd8-build-RELENG_8-sparc64-sparc64.full From owner-freebsd-sparc64@FreeBSD.ORG Sat Jun 15 13:47:19 2013 Return-Path: Delivered-To: freebsd-sparc64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 749D41F3; Sat, 15 Jun 2013 13:47:19 +0000 (UTC) (envelope-from marius@alchemy.franken.de) Received: from alchemy.franken.de (alchemy.franken.de [194.94.249.214]) by mx1.freebsd.org (Postfix) with ESMTP id 1309E1877; Sat, 15 Jun 2013 13:47:18 +0000 (UTC) Received: from alchemy.franken.de (localhost [127.0.0.1]) by alchemy.franken.de (8.14.6/8.14.6/ALCHEMY.FRANKEN.DE) with ESMTP id r5FDlGZW022657; Sat, 15 Jun 2013 15:47:16 +0200 (CEST) (envelope-from marius@alchemy.franken.de) Received: (from marius@localhost) by alchemy.franken.de (8.14.6/8.14.6/Submit) id r5FDlGsQ022656; Sat, 15 Jun 2013 15:47:16 +0200 (CEST) (envelope-from marius) Date: Sat, 15 Jun 2013 15:47:16 +0200 From: Marius Strobl To: mexas@bristol.ac.uk Subject: Re: sparc64 machfb: (EE) Unable to map mmio aperture. Invalid argument (22) Message-ID: <20130615134716.GA22046@alchemy.franken.de> References: <201306131014.r5DAEUmh030099@mech-cluster241.men.bris.ac.uk> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201306131014.r5DAEUmh030099@mech-cluster241.men.bris.ac.uk> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: freebsd-x11@freebsd.org, freebsd-sparc64@freebsd.org X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jun 2013 13:47:19 -0000 On Thu, Jun 13, 2013 at 11:14:30AM +0100, Anton Shterenlikht wrote: > I've just updated my Sun Blade 1500 silver > to 10.0-CURRENT #11 r251648. The graphics broke. > I get: > > (EE) Unable to map mmio aperture. Invalid argument (22) > > from X -configure > > # dmesg|grep mach > machfb0: port 0xb00-0xbff mem 0x3000000-0x3ffffff,0x102000-0x102ff > f at device 2.0 on pci0 > machfb0: console > machfb0: 16 MB aperture at 0xfddcc000 not swapped > machfb0: 8188 KB SGRAM 114.992 MHz, maximum RAMDAC clock 230 MHz, DSP > machfb0: resolution 1280x1024 at 8 bpp > # > > # pkg info -xo mach6 > xf86-video-mach64-6.9.3: x11-drivers/xf86-video-mach64 > # > > # cat /var/log/Xorg.0.log > > X.Org X Server 1.7.7 > Release Date: 2010-05-04 > X Protocol Version 11, Revision 0 > Build Operating System: FreeBSD 10.0-CURRENT sparc64 > Current Operating System: FreeBSD mech-anton240.men.bris.ac.uk 10.0-CURRENT Free > BSD 10.0-CURRENT #11 r251648: Thu Jun 13 10:20:15 BST 2013 root@mech-anton24 > 0.men.bris.ac.uk:/usr/obj/usr/src/sys/QOF sparc64 > Build Date: 03 June 2013 03:14:51PM Well, at least machfb(4) hasn't changed in quite some time so it's not immediately obvious what is causing this problem. However, that Xorg.0.log suggests that the server also has been rebuilt recently and in fact there was an Xorg update on May 25. Could you please determine (at least by using the old/previous known-working kernel) whether a change to the kernel or to ports is the culprit? Marius