From owner-freebsd-sparc Sun Mar 10 1: 7:32 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from ns1.reaction.org (ns1.reaction.org [216.86.143.22]) by hub.freebsd.org (Postfix) with ESMTP id 7DC1137B402 for ; Sun, 10 Mar 2002 01:07:31 -0800 (PST) Received: from ns1.reaction.org (localhost [127.0.0.1]) by ns1.reaction.org (8.12.1/8.12.1) with ESMTP id g2A975D2070802 for ; Sun, 10 Mar 2002 01:07:06 -0800 (PST) Received: from localhost (brad@localhost) by ns1.reaction.org (8.12.1/8.12.1/Submit) with ESMTP id g2A95jjC070787 for ; Sun, 10 Mar 2002 01:05:45 -0800 (PST) X-Authentication-Warning: ns1.reaction.org: brad owned process doing -bs Date: Sun, 10 Mar 2002 01:05:45 -0800 (PST) From: brad X-X-Sender: brad@ns1.reaction.org To: freebsd-sparc@freebsd.org Message-ID: <20020310010536.V70486-100000@ns1.reaction.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org subscribe To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Sun Mar 10 14:53:18 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from horsey.gshapiro.net (horsey.gshapiro.net [209.220.147.178]) by hub.freebsd.org (Postfix) with ESMTP id 5243B37B405 for ; Sun, 10 Mar 2002 14:53:09 -0800 (PST) Received: from horsey.gshapiro.net (gshapiro@localhost [IPv6:::1]) by horsey.gshapiro.net (8.12.3.Beta0/8.12.3.Beta0) with ESMTP id g2AMr8Iq008366 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Sun, 10 Mar 2002 14:53:08 -0800 (PST) Received: (from gshapiro@localhost) by horsey.gshapiro.net (8.12.3.Beta0/8.12.3.Beta0/Submit) id g2AMr8GG008363; Sun, 10 Mar 2002 14:53:08 -0800 (PST) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15499.58324.267110.225254@horsey.gshapiro.net> Date: Sun, 10 Mar 2002 14:53:08 -0800 From: Gregory Neil Shapiro To: freebsd-sparc@freebsd.org Subject: userland porting for sendmail X-Mailer: VM 7.00 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Thanks to Mike Barcroft, I have access to a machine running the sparc64 port to test the sendmail build. It turned up one compile time warning (fixed for sendmail 8.12.3) and one problem. The shared memory libsm test core dumps (signal 12). I believe I recall seeing shared memory hadn't been implemented yet to this is of no big surprise. Does this patch look reasonable for 8.12.3? If not, is there a better cpp symbol to use? Index: include/sm/os/sm_os_freebsd.h diff -u include/sm/os/sm_os_freebsd.h:1.9 include/sm/os/sm_os_freebsd.h:1.10 --- include/sm/os/sm_os_freebsd.h:1.9 Wed Jun 27 14:46:48 2001 +++ include/sm/os/sm_os_freebsd.h Sun Mar 10 14:41:03 2002 @@ -31,7 +31,11 @@ #endif #ifndef SM_CONF_SHM -# define SM_CONF_SHM 1 +# ifdef __sparc64__ +# define SM_CONF_SHM 0 +# else /* __sparc64__ */ +# define SM_CONF_SHM 1 +# endif /* __sparc64__ */ #endif /* SM_CONF_SHM */ #ifndef SM_CONF_SEM # define SM_CONF_SEM 1 Finally, what is the proper Makefile magic? Should ${MACHINE_ARCH} be used, i.e.: --- Makefile 17 Feb 2002 22:01:40 -0000 1.1 +++ Makefile 10 Mar 2002 22:50:50 -0000 @@ -8,6 +8,11 @@ CFLAGS+=-I${SENDMAIL_DIR}/src -I${SENDMAIL_DIR}/include -I. CFLAGS+=-DNETINET6 -DNEWDB -DNIS -DMAP_REGEX -DNOT_SENDMAIL +# Temporary fix for sparc64 port until 8.12.3 imported +.if ${MACHINE_ARCH} == sparc64 +CFLAGS+=-DSM_CONF_SHM=0 +.endif + # User customizations to the sendmail build environment CFLAGS+=${SENDMAIL_CFLAGS} To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Sun Mar 10 17:55:19 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by hub.freebsd.org (Postfix) with SMTP id 4DF3C37B405 for ; Sun, 10 Mar 2002 17:55:13 -0800 (PST) Received: (qmail 25629 invoked by uid 0); 11 Mar 2002 01:55:11 -0000 Received: from pd9e1648f.dip.t-dialin.net (HELO forge.local) (217.225.100.143) by mail.gmx.net (mp016-rz3) with SMTP; 11 Mar 2002 01:55:11 -0000 Received: from tmm by forge.local with local (Exim 3.34 #1) id 16kF1t-00036r-00; Mon, 11 Mar 2002 02:55:13 +0100 Date: Mon, 11 Mar 2002 02:55:12 +0100 From: Thomas Moestl To: Gregory Neil Shapiro Cc: freebsd-sparc@freebsd.org Subject: Re: userland porting for sendmail Message-ID: <20020311015512.GE282@crow.dom2ip.de> Mail-Followup-To: Gregory Neil Shapiro , freebsd-sparc@freebsd.org References: <15499.58324.267110.225254@horsey.gshapiro.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <15499.58324.267110.225254@horsey.gshapiro.net> User-Agent: Mutt/1.3.27i Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, 2002/03/10 at 14:53:08 -0800, Gregory Neil Shapiro wrote: > Thanks to Mike Barcroft, I have access to a machine running the sparc64 > port to test the sendmail build. Cool, thanks for working on that! > It turned up one compile time warning > (fixed for sendmail 8.12.3) and one problem. The shared memory libsm test > core dumps (signal 12). I believe I recall seeing shared memory hadn't > been implemented yet to this is of no big surprise. It is not enabled in the sparc64 GENERIC, so I guess Mike's kernel was built without it. I've included it on my box tried the sendmail tests; there were indeed some problems, but I hope that I've fixed them now (the fix requires a rebuild of parts of libc, I'll ask Mike to update his box when I see him on IRC). It seems to pass all the tests now. - thomas -- Thomas Moestl http://www.tu-bs.de/~y0015675/ http://people.FreeBSD.org/~tmm/ PGP fingerprint: 1C97 A604 2BD0 E492 51D0 9C0F 1FE6 4F1D 419C 776C To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Sun Mar 10 20: 4:21 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 9C0AA37B402; Sun, 10 Mar 2002 20:04:19 -0800 (PST) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g2B44Jlv043743; Sun, 10 Mar 2002 20:04:19 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g2B434Fa043734; Sun, 10 Mar 2002 20:03:04 -0800 (PST) Date: Sun, 10 Mar 2002 20:03:04 -0800 From: "David O'Brien" To: Gregory Neil Shapiro Cc: freebsd-sparc@freebsd.org Subject: Re: userland porting for sendmail Message-ID: <20020310200304.A43695@dragon.nuxi.com> Reply-To: obrien@freebsd.org References: <15499.58324.267110.225254@horsey.gshapiro.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <15499.58324.267110.225254@horsey.gshapiro.net>; from gshapiro@freebsd.org on Sun, Mar 10, 2002 at 02:53:08PM -0800 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, Mar 10, 2002 at 02:53:08PM -0800, Gregory Neil Shapiro wrote: > Does this patch look reasonable for 8.12.3? If not, is there a better cpp > symbol to use? __sparc64__ is fine. > Finally, what is the proper Makefile magic? Should ${MACHINE_ARCH} be > used, i.e.: TARGET_ARCH instead of MACHINE_ARCH To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Sun Mar 10 22:14: 8 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from k6.locore.ca (k6.locore.ca [198.96.117.170]) by hub.freebsd.org (Postfix) with ESMTP id 8618137B405 for ; Sun, 10 Mar 2002 22:14:04 -0800 (PST) Received: (from jake@localhost) by k6.locore.ca (8.11.6/8.11.6) id g2B6JTR33863 for freebsd-sparc@freebsd.org; Mon, 11 Mar 2002 01:19:29 -0500 (EST) (envelope-from jake) Date: Mon, 11 Mar 2002 01:19:28 -0500 From: Jake Burkholder To: freebsd-sparc@freebsd.org Subject: new tarball Message-ID: <20020311011928.G20687@locore.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I uploaded a new distribution tarball which fixes a number of issues. I will update the kernels as soon as they finish compiling :) The keyboard issue should be fixed with the generic kernel, a problem with the kvm size not scaling to physical memory has been fixed, and a bug in the fpu emaulator has been fixed, which allowed me to bootstrap perl. The tarball also contains David Obrien's hosted toolchain, and since we now have perl you can build a new kernel yourself. We're still working to get some stuff committed to cvs, so it is best to use cvsup on another machine to get the perforce repository using the sparc64-supfile on my web page. It is best to replace all your existing binaries in cases they are out of sync with the new libraries. The distribution also contains a plain etc, so you may want to back up parts of your existing one, if you have anything of use in it. The cd burner I was hoping to use to test a new ISO is having problems, so I haven't made a new one yet. http://people.freebsd.org/~jake/sparc64/ Jake To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Sun Mar 10 22:27:33 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from horsey.gshapiro.net (horsey.gshapiro.net [209.220.147.178]) by hub.freebsd.org (Postfix) with ESMTP id 0307237B402 for ; Sun, 10 Mar 2002 22:27:31 -0800 (PST) Received: from horsey.gshapiro.net (gshapiro@localhost [IPv6:::1]) by horsey.gshapiro.net (8.12.3.Beta0/8.12.3.Beta0) with ESMTP id g2B6RTIq011014 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Sun, 10 Mar 2002 22:27:30 -0800 (PST) Received: (from gshapiro@localhost) by horsey.gshapiro.net (8.12.3.Beta0/8.12.3.Beta0/Submit) id g2B6RTj1011011; Sun, 10 Mar 2002 22:27:29 -0800 (PST) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15500.20048.979487.781861@horsey.gshapiro.net> Date: Sun, 10 Mar 2002 22:27:28 -0800 From: Gregory Neil Shapiro To: Thomas Moestl Cc: freebsd-sparc@freebsd.org Subject: Re: userland porting for sendmail In-Reply-To: <20020311015512.GE282@crow.dom2ip.de> References: <15499.58324.267110.225254@horsey.gshapiro.net> <20020311015512.GE282@crow.dom2ip.de> X-Mailer: VM 7.00 under 21.1 (patch 14) "Cuyahoga Valley" XEmacs Lucid Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >> It turned up one compile time warning >> (fixed for sendmail 8.12.3) and one problem. The shared memory libsm test >> core dumps (signal 12). I believe I recall seeing shared memory hadn't >> been implemented yet to this is of no big surprise. tmoestl> It is not enabled in the sparc64 GENERIC, so I guess Mike's kernel was tmoestl> built without it. Yes, but even without kernel support, should a userland application die? I would have figured shmget() or the like would return -1. I've actually never tried doing this on an x86 FreeBSD box without SYSVSHM enabled. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Mon Mar 11 7: 7:56 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by hub.freebsd.org (Postfix) with SMTP id C7FB137B417 for ; Mon, 11 Mar 2002 07:07:51 -0800 (PST) Received: (qmail 25814 invoked by uid 0); 11 Mar 2002 15:07:50 -0000 Received: from pd9e1621c.dip.t-dialin.net (HELO forge.local) (217.225.98.28) by mail.gmx.net (mp001-rz3) with SMTP; 11 Mar 2002 15:07:50 -0000 Received: from tmm by forge.local with local (Exim 3.34 #1) id 16kROz-0000l2-00; Mon, 11 Mar 2002 16:07:53 +0100 Date: Mon, 11 Mar 2002 16:07:53 +0100 From: Thomas Moestl To: Gregory Neil Shapiro Cc: freebsd-sparc@freebsd.org Subject: Re: userland porting for sendmail Message-ID: <20020311150753.GA273@crow.dom2ip.de> Mail-Followup-To: Gregory Neil Shapiro , freebsd-sparc@freebsd.org References: <15499.58324.267110.225254@horsey.gshapiro.net> <20020311015512.GE282@crow.dom2ip.de> <15500.20048.979487.781861@horsey.gshapiro.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <15500.20048.979487.781861@horsey.gshapiro.net> User-Agent: Mutt/1.3.27i Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, 2002/03/10 at 22:27:28 -0800, Gregory Neil Shapiro wrote: > >> It turned up one compile time warning > >> (fixed for sendmail 8.12.3) and one problem. The shared memory libsm test > >> core dumps (signal 12). I believe I recall seeing shared memory hadn't > >> been implemented yet to this is of no big surprise. > > tmoestl> It is not enabled in the sparc64 GENERIC, so I guess Mike's kernel was > tmoestl> built without it. > > Yes, but even without kernel support, should a userland application die? I > would have figured shmget() or the like would return -1. I've actually > never tried doing this on an x86 FreeBSD box without SYSVSHM enabled. If no real entry for a syscall is present in the syscall table (just a placeholder like nosys or lkmressys, or in the case of a syscall number exceeding the table size), SIGSYS is delivered, as in this case; some other options work by #ifdef'ing the implementation away and returning ENOSYS. - thomas -- Thomas Moestl http://www.tu-bs.de/~y0015675/ http://people.FreeBSD.org/~tmm/ PGP fingerprint: 1C97 A604 2BD0 E492 51D0 9C0F 1FE6 4F1D 419C 776C To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Mon Mar 11 10:36: 3 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 3B1A037B400 for ; Mon, 11 Mar 2002 10:35:44 -0800 (PST) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.11.4/8.11.6) id g2BIZhM08797; Mon, 11 Mar 2002 13:35:43 -0500 (EST) (envelope-from wollman) Date: Mon, 11 Mar 2002 13:35:43 -0500 (EST) From: Garrett Wollman Message-Id: <200203111835.g2BIZhM08797@khavrinen.lcs.mit.edu> To: sparc@freebsd.org Subject: Latest toolchain broken... Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org (David, you already have the text of foo.c.) $ cc -v foo.c Reading specs from /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/specs Configured with: ../uberbaum/configure --target=sparc64-deo-freebsd5 --host=sparc64-deo-freebsd5 --build=i386-deo-freebsd5 --prefix=/arch/sparc64/native-uberbaum --enable-languages=c --disable-shared --disable-multilibs --disable-nls --disable-threads --without-newlib --without-libgloss Thread model: single gcc version 3.1 20020310 (prerelease) /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/cc1 -lang-c -v -iprefix /usr/bin/../lib/gcc-lib/sparc64-deo-freebsd5/3.1/ -D__GNUC__=3 -D__GNUC_MINOR__=1 -D__GNUC_PATCHLEVEL__=0 -D__FreeBSD__=5 -Dunix -D__ELF__ -D__KPRINTF_ATTRIBUTE__ -D__FreeBSD__=5 -D__unix__ -D__ELF__ -D__KPRINTF_ATTRIBUTE__ -D__unix -Asystem=unix -Asystem=bsd -Asystem=FreeBSD -D__NO_INLINE__ -D__STDC_HOSTED__=1 -D__sparc64__ -D__sparc_v9__ foo.c -quiet -dumpbase foo.c -version -o /var/tmp//ccPGjdcK.s GNU CPP version 3.1 20020310 (prerelease) (cpplib) (FreeBSD/sparc64 ELF) GNU C version 3.1 20020310 (prerelease) (sparc64-deo-freebsd5) compiled by GNU C version 3.1 20020310 (prerelease). ignoring nonexistent directory "/usr/lib/gcc-lib/sparc64-deo-freebsd5/3.1/include" ignoring nonexistent directory "/usr/lib/gcc-lib/sparc64-deo-freebsd5/3.1/../../../../sparc64-deo-freebsd5/include" ignoring nonexistent directory "/arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/include" ignoring duplicate directory "/usr/include" #include "..." search starts here: #include <...> search starts here: /usr/local/include /arch/sparc64/native-uberbaum/include /arch/sparc64/native-uberbaum/sparc64-deo-freebsd5/include End of search list. /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/../../../../sparc64-deo-freebsd5/bin/as -V -Qy -Av9a -o /var/tmp//ccgr3e1u.o /var/tmp//ccPGjdcK.s GNU assembler version 2.12.90 (sparc64-deo-freebsd5) using BFD version 2.12.90 20020310 cc: Internal error: Illegal instruction (program as) Please submit a full bug report. See for instructions. -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Mon Mar 11 22:40:30 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id EF8A637B405 for ; Mon, 11 Mar 2002 22:40:05 -0800 (PST) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.11.4/8.11.6) id g2C6e5c14628; Tue, 12 Mar 2002 01:40:05 -0500 (EST) (envelope-from wollman) Date: Tue, 12 Mar 2002 01:40:05 -0500 (EST) From: Garrett Wollman Message-Id: <200203120640.g2C6e5c14628@khavrinen.lcs.mit.edu> To: sparc@FreeBSD.org Subject: VM problems? X-Fingerprint: A80D 04DD A9A7 F651 F53A A8E4 23E7 86E9 BEED 946E X-Key-Id: 1024D/BEED946E Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I found the origin of my problem with `as' -- well, sort of. Apparently the `as' executable was corrupted. This appears to be happening with other executables as well; consider the following. Both of these arch/ trees were extracted from the distrib tarball on Jake's Web page, a few hours apart: wollman@tsornin(199)$ md5 ~wollman/usr/arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/cc1 MD5 (/home/wollman/usr/arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/cc1) = 54e6eb9b3d17d9a84ae1ef5a5d7699c2 wollman@tsornin(200)$ md5 /usr/arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/cc1 MD5 (/usr/arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/cc1) = ea5cacd61d5121c1e3d2a21a0c045f2d wollman@tsornin(201)$ ls -l /usr/arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/cc1 -rwxr-xr-x 1 root wheel 4016304 Mar 10 17:46 /usr/arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/cc1* wollman@tsornin(202)$ ls -l ~wollman/usr/arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/cc1 -rwxr-xr-x 1 wollman users 4016304 Mar 10 17:46 /home/wollman/usr/arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/cc1* wollman@tsornin(203)$ cmp -l ~wollman/usr/arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/cc1 /usr/arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/cc1 2962849 0 141 2962850 0 154 2962851 0 165 2962852 0 145 2962853 0 40 2962854 0 156 2962855 0 157 2962856 0 164 2962857 0 40 2962858 0 151 2962859 0 156 2962860 0 166 2962861 0 141 2962862 0 162 2962863 0 151 2962864 0 141 2962865 0 156 2962866 0 164 2962867 0 56 2962868 0 12 2962873 0 120 2962874 0 162 2962875 0 145 2962876 0 143 2962877 0 157 2962878 0 156 2962879 0 144 2962880 0 151 2964065 162 0 2964066 141 0 2964067 164 0 2964068 151 0 2964069 157 0 2964070 156 0 2964071 163 0 2964072 72 0 2964073 40 0 2964074 114 0 2964075 157 0 2964076 157 0 2964077 160 0 2964078 40 0 2964079 150 0 2964080 141 0 2964081 163 0 2964082 40 0 2964083 155 0 2964084 165 0 2964085 154 0 2964086 164 0 2964087 151 0 2964088 160 0 2964089 154 0 2964090 145 0 2964091 40 0 2964092 142 0 2964093 141 0 2964094 143 0 2964095 153 0 2964096 40 0 2964129 162 0 2964130 141 0 2964131 164 0 2964132 151 0 2964133 157 0 2964134 156 0 2964135 163 0 2964136 72 0 2964137 40 0 2964138 103 0 2964139 157 0 2964140 155 0 2964141 160 0 2964142 141 0 2964143 162 0 2964144 151 0 2964145 163 0 2964146 157 0 2964147 156 0 2964148 40 0 2964149 156 0 2964150 157 0 2964151 164 0 2964152 40 0 2964153 141 0 2964154 147 0 2964155 141 0 2964156 151 0 2964157 156 0 2964158 163 0 2964159 164 0 2964160 40 0 2964321 162 0 2964322 141 0 2964323 164 0 2964324 151 0 2964325 157 0 2964326 156 0 2964327 163 0 2964328 72 0 2964329 40 0 2964330 111 0 2964331 164 0 2964332 145 0 2964333 162 0 2964334 141 0 2964335 164 0 2964336 151 0 2964337 157 0 2964338 156 0 2964339 40 0 2964340 166 0 2964341 141 0 2964342 162 0 2964343 40 0 2964344 156 0 2964345 157 0 2964346 164 0 2964347 40 0 2964348 141 0 2964349 156 0 2964350 40 0 2964351 151 0 2964352 156 0 2964385 151 0 2964386 143 0 2964387 40 0 2964388 157 0 2964389 162 0 2964390 40 0 2964391 147 0 2964392 145 0 2964393 156 0 2964394 145 0 2964395 162 0 2964396 141 0 2964397 154 0 2964398 40 0 2964399 151 0 2964400 156 0 2964401 144 0 2964402 165 0 2964403 143 0 2964404 164 0 2964405 151 0 2964406 157 0 2964407 156 0 2964408 40 0 2964409 166 0 2964410 141 0 2964411 162 0 2964412 56 0 2964413 12 0 2979233 0 141 2979234 0 154 2979235 0 165 2979236 0 145 2979237 0 40 2979238 0 156 2979239 0 157 2979240 0 164 2979241 0 40 2979242 0 151 2979243 0 156 2979244 0 166 2979245 0 141 2979246 0 162 2979247 0 151 2979248 0 141 2979249 0 156 2979250 0 164 2979251 0 56 2979252 0 12 2979257 0 120 2979258 0 162 2979259 0 145 2979260 0 143 2979261 0 157 2979262 0 156 2979263 0 144 2979264 0 151 2980449 162 0 2980450 141 0 2980451 164 0 2980452 151 0 2980453 157 0 2980454 156 0 2980455 163 0 2980456 72 0 2980457 40 0 2980458 114 0 2980459 157 0 2980460 157 0 2980461 160 0 2980462 40 0 2980463 150 0 2980464 141 0 2980465 163 0 2980466 40 0 2980467 155 0 2980468 165 0 2980469 154 0 2980470 164 0 2980471 151 0 2980472 160 0 2980473 154 0 2980474 145 0 2980475 40 0 2980476 142 0 2980477 141 0 2980478 143 0 2980479 153 0 2980480 40 0 2980513 162 0 2980514 141 0 2980515 164 0 2980516 151 0 2980517 157 0 2980518 156 0 2980519 163 0 2980520 72 0 2980521 40 0 2980522 103 0 2980523 157 0 2980524 155 0 2980525 160 0 2980526 141 0 2980527 162 0 2980528 151 0 2980529 163 0 2980530 157 0 2980531 156 0 2980532 40 0 2980533 156 0 2980534 157 0 2980535 164 0 2980536 40 0 2980537 141 0 2980538 147 0 2980539 141 0 2980540 151 0 2980541 156 0 2980542 163 0 2980543 164 0 2980544 40 0 2980705 162 0 2980706 141 0 2980707 164 0 2980708 151 0 2980709 157 0 2980710 156 0 2980711 163 0 2980712 72 0 2980713 40 0 2980714 111 0 2980715 164 0 2980716 145 0 2980717 162 0 2980718 141 0 2980719 164 0 2980720 151 0 2980721 157 0 2980722 156 0 2980723 40 0 2980724 166 0 2980725 141 0 2980726 162 0 2980727 40 0 2980728 156 0 2980729 157 0 2980730 164 0 2980731 40 0 2980732 141 0 2980733 156 0 2980734 40 0 2980735 151 0 2980736 156 0 2980769 151 0 2980770 143 0 2980771 40 0 2980772 157 0 2980773 162 0 2980774 40 0 2980775 147 0 2980776 145 0 2980777 156 0 2980778 145 0 2980779 162 0 2980780 141 0 2980781 154 0 2980782 40 0 2980783 151 0 2980784 156 0 2980785 144 0 2980786 165 0 2980787 143 0 2980788 164 0 2980789 151 0 2980790 157 0 2980791 156 0 2980792 40 0 2980793 166 0 2980794 141 0 2980795 162 0 2980796 56 0 2980797 12 0 2995617 0 141 2995618 0 154 2995619 0 165 2995620 0 145 2995621 0 40 2995622 0 156 2995623 0 157 2995624 0 164 2995625 0 40 2995626 0 151 2995627 0 156 2995628 0 166 2995629 0 141 2995630 0 162 2995631 0 151 2995632 0 141 2995633 0 156 2995634 0 164 2995635 0 56 2995636 0 12 2995641 0 120 2995642 0 162 2995643 0 145 2995644 0 143 2995645 0 157 2995646 0 156 2995647 0 144 2995648 0 151 3012001 0 141 3012002 0 154 3012003 0 165 3012004 0 145 3012005 0 40 3012006 0 156 3012007 0 157 3012008 0 164 3012009 0 40 3012010 0 151 3012011 0 156 3012012 0 166 3012013 0 141 3012014 0 162 3012015 0 151 3012016 0 141 3012017 0 156 3012018 0 164 3012019 0 56 3012020 0 12 3012025 0 120 3012026 0 162 3012027 0 145 3012028 0 143 3012029 0 157 3012030 0 156 3012031 0 144 3012032 0 151 3028385 0 141 3028386 0 154 3028387 0 165 3028388 0 145 3028389 0 40 3028390 0 156 3028391 0 157 3028392 0 164 3028393 0 40 3028394 0 151 3028395 0 156 3028396 0 166 3028397 0 141 3028398 0 162 3028399 0 151 3028400 0 141 3028401 0 156 3028402 0 164 3028403 0 56 3028404 0 12 3028409 0 120 3028410 0 162 3028411 0 145 3028412 0 143 3028413 0 157 3028414 0 156 3028415 0 144 3028416 0 151 3044769 0 141 3044770 0 154 3044771 0 165 3044772 0 145 3044773 0 40 3044774 0 156 3044775 0 157 3044776 0 164 3044777 0 40 3044778 0 151 3044779 0 156 3044780 0 166 3044781 0 141 3044782 0 162 3044783 0 151 3044784 0 141 3044785 0 156 3044786 0 164 3044787 0 56 3044788 0 12 3044793 0 120 3044794 0 162 3044795 0 145 3044796 0 143 3044797 0 157 3044798 0 156 3044799 0 144 3044800 0 151 3061153 0 141 3061154 0 154 3061155 0 165 3061156 0 145 3061157 0 40 3061158 0 156 3061159 0 157 3061160 0 164 3061161 0 40 3061162 0 151 3061163 0 156 3061164 0 166 3061165 0 141 3061166 0 162 3061167 0 151 3061168 0 141 3061169 0 156 3061170 0 164 3061171 0 56 3061172 0 12 3061177 0 120 3061178 0 162 3061179 0 145 3061180 0 143 3061181 0 157 3061182 0 156 3061183 0 144 3061184 0 151 wollman@tsornin(204)$ The nature of the differences makes me suspect either VM or SCSI controller difficulties. This is with: wollman@tsornin(204)$ sysctl kern.version kern.version: FreeBSD 5.0-CURRENT #6: Mon Mar 11 04:45:36 GMT 2002 root@u10.locore.ca:/usr/p4/sparc64/sys/sparc64/compile/GENERIC Anyone care to tell me what the *correct* MD5 of these executables should be? -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Mon Mar 11 23:13:43 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 8AFC737B404 for ; Mon, 11 Mar 2002 23:13:40 -0800 (PST) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.11.4/8.11.6) id g2C7DdF14965; Tue, 12 Mar 2002 02:13:39 -0500 (EST) (envelope-from wollman) Date: Tue, 12 Mar 2002 02:13:39 -0500 (EST) From: Garrett Wollman Message-Id: <200203120713.g2C7DdF14965@khavrinen.lcs.mit.edu> To: sparc@freebsd.org Subject: Or perhaps it's bunzip2 (was: Re: VM problems?) In-Reply-To: <200203120640.g2C6e5c14628@khavrinen.lcs.mit.edu> Organization: MIT Laboratory for Computer Science Cc: Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I wrote: >The nature of the differences makes me suspect either VM or SCSI >controller difficulties. Or perhaps it's something completely different. If I get the distrib tarball on my Intel machine.... wollman@khavrinen(1)$ fetch http://people.freebsd.org/~jake/sparc64/distrib-20020310.tar.bz2 Receiving distrib-20020310.tar.bz2 (32788574 bytes): 100% 32788574 bytes transferred in 183.9 seconds (174.12 kBps) wollman@khavrinen(2)$ md5 distrib-20020310.tar.bz2 MD5 (distrib-20020310.tar.bz2) = c7ef01eb2b518b79c6659605156f1a03 OK, this matches what I have on the Ultra5: wollman@tsornin(228)$ md5 distrib-20020310.tar.bz2 MD5 (distrib-20020310.tar.bz2) = c7ef01eb2b518b79c6659605156f1a03 So far, so good. But what happens when we uncompress them? wollman@khavrinen(4)$ bunzip2 -c distrib-20020310.tar.bz2 | md5 ff450f0e0b06003dbb8c71e5232abb0d wollman@tsornin(229)$ bunzip2 -c distrib-20020310.tar.bz2 | md5 12b008501b0051d25854d27a91de3200 Uh-oh! Looks like something's broken with bunzip2! I get the same MD5 if I run bunzip2 to a file (on the Ultra), so it must not be a problem with pipes. I'm about to try recompressing on the PC with gzip and copying that over, just to see what sort of difference it makes. -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Tue Mar 12 20:55:43 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id DEE9037B402; Tue, 12 Mar 2002 20:55:37 -0800 (PST) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.11.4/8.11.6) id g2D4tbR64388; Tue, 12 Mar 2002 23:55:37 -0500 (EST) (envelope-from wollman) Date: Tue, 12 Mar 2002 23:55:37 -0500 (EST) From: Garrett Wollman Message-Id: <200203130455.g2D4tbR64388@khavrinen.lcs.mit.edu> To: Jake Burkholder Cc: sparc@FreeBSD.org Subject: cvs commit: src/libexec/rtld-elf/sparc64 Makefile.inc lockdflt.c reloc.c rtld_machdep.h rtld_start.S In-Reply-To: <200203130240.g2D2eeb60194@freefall.freebsd.org> References: <200203130240.g2D2eeb60194@freefall.freebsd.org> Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org < said: > rtld support for sparc64. Is this the same as the code in the last snapshot? I'm still have very strange behavior on my Ultra5, and I think it's a bug in rtld. I originally ended up down this path when I noticed that the configure script for GNU make was hanging; I determined that by removing -lintl from the command line, things would proceed normally. Then I went over to gettext, and ran *its* regression tests, and found that things were no better over there. Since gettext uses libtool, I then backed up to libtool itself and found the tests failing. I made a trivial shared library the non-libtool way, and suspect that RPATH processing is broken. Watch: wollman@tsornin(66)$ sh demo.sh cc -O -o baz.o -c baz.c cc -O -o libbaz.o -c libbaz.c cc -O -fPIC -o libbaz.So -c libbaz.c ar cru libbaz.a libbaz.o ranlib libbaz.a cc -static -o baz.static baz.o -L. -lbaz ./baz.static cc -shared -o libbaz.so.1 -Wl,-soname -Wl,libbaz.so.1 ln -s libbaz.so.1 libbaz.so cc -o baz.shared baz.o -L. -Wl,-rpath -Wl,/usr/home/wollman/test -lbaz Next command will hang... ./baz.shared ^C Here is a shar file with the trivial programs and the test script: # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # baz.c # libbaz.c # demo.sh # echo x - baz.c sed 's/^X//' >baz.c << 'END-of-baz.c' Xint Xmain(void) X{ X return 0; X} END-of-baz.c echo x - libbaz.c sed 's/^X//' >libbaz.c << 'END-of-libbaz.c' Xint baz(void) { return 19721222; } END-of-libbaz.c echo x - demo.sh sed 's/^X//' >demo.sh << 'END-of-demo.sh' X#!/bin/sh X Xset -e Xsay() { X echo "$@" X $@ X} X Xsay cc -O -o baz.o -c baz.c Xsay cc -O -o libbaz.o -c libbaz.c Xsay cc -O -fPIC -o libbaz.So -c libbaz.c Xsay ar cru libbaz.a libbaz.o Xsay ranlib libbaz.a X X: testing static baz Xsay cc -static -o baz.static baz.o -L. -lbaz Xsay ./baz.static X X: testing dynamic baz Xsay cc -shared -o libbaz.so.1 -Wl,-soname -Wl,libbaz.so.1 Xsay ln -s libbaz.so.1 libbaz.so Xsay cc -o baz.shared baz.o -L. -Wl,-rpath -Wl,$(pwd) -lbaz Xecho "Next command will hang..." Xsay ./baz.shared Xexit 0 END-of-demo.sh exit To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Tue Mar 12 23:29: 8 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 22D7637B428 for ; Tue, 12 Mar 2002 23:27:50 -0800 (PST) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g2D7Rolv073725 for ; Tue, 12 Mar 2002 23:27:50 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g2D7QZJu073701 for sparc@FreeBSD.org; Tue, 12 Mar 2002 23:26:35 -0800 (PST) Date: Tue, 12 Mar 2002 23:26:35 -0800 From: "David O'Brien" To: sparc@FreeBSD.org Subject: bad toolchain Message-ID: <20020312232635.B73618@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org There is a problem with the 3/10 toolchain (don't ask). The easy "fix" until I cut a new one is: cd /arch/sparc64/uber*/lib/gcc-lib/*/3.1 ln -sf /usr/lib/*.o . this should fix the "hanging" binary problem. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Wed Mar 13 2:36:39 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from web21107.mail.yahoo.com (web21107.mail.yahoo.com [216.136.227.109]) by hub.freebsd.org (Postfix) with SMTP id 3261337B404 for ; Wed, 13 Mar 2002 02:36:38 -0800 (PST) Message-ID: <20020313103638.30294.qmail@web21107.mail.yahoo.com> Received: from [62.254.0.5] by web21107.mail.yahoo.com via HTTP; Wed, 13 Mar 2002 02:36:38 PST Date: Wed, 13 Mar 2002 02:36:38 -0800 (PST) From: Hiten Pandya Reply-To: hiten@uk.FreeBSD.org Subject: Using FreeBSD on a Sun Fire 280R server To: freebsd-sparc@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org hello and greetings, Is it possible to run FreeBSD on a Sun Fire 280R server? Most of the applications we want to run are: o MySQL o Perl / C and C++ o and the base operating system with networking support. Thanks, Regards, -- Hiten Pandya -- __________________________________________________ Do You Yahoo!? Try FREE Yahoo! Mail - the world's greatest free email! http://mail.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Wed Mar 13 12: 3:12 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 184F237B416; Wed, 13 Mar 2002 12:03:07 -0800 (PST) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.11.4/8.11.6) id g2DK36k73844; Wed, 13 Mar 2002 15:03:06 -0500 (EST) (envelope-from wollman) Date: Wed, 13 Mar 2002 15:03:06 -0500 (EST) From: Garrett Wollman Message-Id: <200203132003.g2DK36k73844@khavrinen.lcs.mit.edu> To: obrien@FreeBSD.ORG Subject: Re: bad toolchain In-Reply-To: <20020312232635.B73618@dragon.nuxi.com> Organization: MIT Laboratory for Computer Science Cc: sparc@FreeBSD.ORG Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 In article <20020312232635.B73618@dragon.nuxi.com> you write: > cd /arch/sparc64/uber*/lib/gcc-lib/*/3.1 > ln -sf /usr/lib/*.o . > >this should fix the "hanging" binary problem. Well, sort of. Now I don't even get that far: cc -static -o baz.static baz.o -L. -lbaz /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/crtbegin.o: In function `_init': /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/crtbegin.o(.init+0x0): multiple definition of `_init' /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/crti.o(.init+0x0): first defined here /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/../../../../sparc64-deo-freebsd5/bin/ld: Disabling relaxation: it will not work with multiple definitions /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/crtbegin.o: In function `_fini': /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/crtbegin.o(.fini+0x0): multiple definition of `_fini' /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/crti.o(.fini+0x0): first defined here collect2: ld returned 1 exit status My copies of the object files look like: - -r--r--r-- 1 root wheel 2589 Mar 10 18:14 crtbegin.o - -r--r--r-- 1 root wheel 1157 Jan 9 00:12 crti.o MD5 (crtbegin.o) = 08b86d6d5582b61c0362ec85d5322f4e MD5 (crti.o) = adeab31f1ebd52ab04a805fd0caaac94 Here's the full output from cc -v: cc -v -static -o baz.static baz.o -L. -lbaz Reading specs from /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/specs Configured with: ../uberbaum/configure --target=sparc64-deo-freebsd5 --host=sparc64-deo-freebsd5 --build=i386-deo-freebsd5 --prefix=/arch/sparc64/native-uberbaum --enable-languages=c --disable-shared --disable-multilibs --disable-nls --disable-threads --without-newlib --without-libgloss Thread model: single gcc version 3.1 20020310 (prerelease) /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/collect2 -m elf64_sparc -relax -Bstatic -o baz.static /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/crt1.o /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/crti.o /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/crtbegin.o -L. -L/arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1 -L/arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/../../../../sparc64-deo-freebsd5/lib baz.o -lbaz -lgcc -lc -lgcc /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/crtend.o /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/crtn.o /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/crtbegin.o: In function `_init': /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/crtbegin.o(.init+0x0): multiple definition of `_init' /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/crti.o(.init+0x0): first defined here /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/../../../../sparc64-deo-freebsd5/bin/ld: Disabling relaxation: it will not work with multiple definitions /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/crtbegin.o: In function `_fini': /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/crtbegin.o(.fini+0x0): multiple definition of `_fini' /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/crti.o(.fini+0x0): first defined here collect2: ld returned 1 exit status - -GAWollman -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (FreeBSD) Comment: For info see http://www.gnupg.org iD8DBQE8j7BvI+eG6b7tlG4RAkBpAJ9xS4enDcepTsngpuXM2bFSs5MfzwCfWuLm 9WssmEBHx2T7Jz8tQSSOiYs= =ahba -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Wed Mar 13 12:27:42 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 18E7E37B6EE for ; Wed, 13 Mar 2002 12:26:52 -0800 (PST) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g2DKQqlv013108; Wed, 13 Mar 2002 12:26:53 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g2DKPbmG013086; Wed, 13 Mar 2002 12:25:37 -0800 (PST) Date: Wed, 13 Mar 2002 12:25:37 -0800 From: "David O'Brien" To: Garrett Wollman Cc: sparc@FreeBSD.ORG Subject: Re: bad toolchain Message-ID: <20020313122537.B13044@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <20020312232635.B73618@dragon.nuxi.com> <200203132003.g2DK36k73844@khavrinen.lcs.mit.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200203132003.g2DK36k73844@khavrinen.lcs.mit.edu>; from wollman@lcs.mit.edu on Wed, Mar 13, 2002 at 03:03:06PM -0500 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Wed, Mar 13, 2002 at 03:03:06PM -0500, Garrett Wollman wrote: > In article <20020312232635.B73618@dragon.nuxi.com> you write: > > > cd /arch/sparc64/uber*/lib/gcc-lib/*/3.1 > > ln -sf /usr/lib/*.o . > > > >this should fix the "hanging" binary problem. > > Well, sort of. Now I don't even get that far: You can rm /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/crt{i,n}.o but that still might not make the world totally happy. I am trying to get my Blade back into a state where all the binaries and libs match so I can cut a new toolchain tarball. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Wed Mar 13 13:14:56 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (Postfix) with ESMTP id 7338037B417; Wed, 13 Mar 2002 13:14:50 -0800 (PST) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.11.4/8.11.6) id g2DLEkF74468; Wed, 13 Mar 2002 16:14:46 -0500 (EST) (envelope-from wollman) Date: Wed, 13 Mar 2002 16:14:46 -0500 (EST) From: Garrett Wollman Message-Id: <200203132114.g2DLEkF74468@khavrinen.lcs.mit.edu> To: obrien@FreeBSD.ORG Cc: sparc@FreeBSD.ORG Subject: Re: bad toolchain In-Reply-To: <20020313122537.B13044@dragon.nuxi.com> References: <20020312232635.B73618@dragon.nuxi.com> <200203132003.g2DK36k73844@khavrinen.lcs.mit.edu> <20020313122537.B13044@dragon.nuxi.com> Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org < said: > You can rm > /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/crt{i,n}.o > but that still might not make the world totally happy. I also had to remove references to crti.o and crtn.o from the specfile, but it does appear to be happy now. libtool passes all but two if its tests, and of the two that fail, both also fail on IA32 and one of them fails because of a shell-programming bug in the test script. -GAWollman To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Wed Mar 13 13:23:51 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 22F5C37B402 for ; Wed, 13 Mar 2002 13:23:46 -0800 (PST) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g2DLNklv013696; Wed, 13 Mar 2002 13:23:46 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g2DLMVtc013695; Wed, 13 Mar 2002 13:22:31 -0800 (PST) Date: Wed, 13 Mar 2002 13:22:31 -0800 From: "David O'Brien" To: Garrett Wollman Cc: sparc@FreeBSD.ORG Subject: Re: bad toolchain Message-ID: <20020313132231.A13664@dragon.nuxi.com> Reply-To: obrien@FreeBSD.ORG References: <20020312232635.B73618@dragon.nuxi.com> <200203132003.g2DK36k73844@khavrinen.lcs.mit.edu> <20020313122537.B13044@dragon.nuxi.com> <200203132114.g2DLEkF74468@khavrinen.lcs.mit.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200203132114.g2DLEkF74468@khavrinen.lcs.mit.edu>; from wollman@lcs.mit.edu on Wed, Mar 13, 2002 at 04:14:46PM -0500 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Wed, Mar 13, 2002 at 04:14:46PM -0500, Garrett Wollman wrote: > < said: > > > You can rm > > /arch/sparc64/native-uberbaum/lib/gcc-lib/sparc64-deo-freebsd5/3.1/crt{i,n}.o > > > but that still might not make the world totally happy. > > I also had to remove references to crti.o and crtn.o from the > specfile, but it does appear to be happy now. libtool passes all but Yes, that too. Sorry, I should have sent an email out at the time I did that locally so I would have mentioned all the steps. Instead I've been thinking there will be a new tarball RSN. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Wed Mar 13 15: 0:48 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from ns2.via-net-works.net.ar (ns2.via-net-works.net.ar [200.10.100.11]) by hub.freebsd.org (Postfix) with ESMTP id 9F1F137B41C for ; Wed, 13 Mar 2002 15:00:24 -0800 (PST) Received: from ns2.via-net-works.net.ar (localhost [127.0.0.1]) by ns2.via-net-works.net.ar (8.12.1/8.12.1) with ESMTP id g2DN0CfN024064; Wed, 13 Mar 2002 20:00:15 -0300 (GMT) Received: from schapachnik.com.ar (uucp@localhost) by ns2.via-net-works.net.ar (8.12.1/8.12.1/Submit) with UUCP id g2DMWBEI021352; Wed, 13 Mar 2002 19:32:11 -0300 (GMT) Received: (from fpscha@localhost) by funes.schapachnik.com.ar (8.11.6/8.11.6) id g2DMOYk07652; Wed, 13 Mar 2002 19:24:34 -0300 (ART) (envelope-from fernando@schapachnik.com.ar) Date: Wed, 13 Mar 2002 19:24:33 -0300 From: Fernando Schapachnik To: hiten@uk.FreeBSD.org Cc: freebsd-sparc@FreeBSD.ORG Subject: Re: Using FreeBSD on a Sun Fire 280R server Message-ID: <20020313192433.B7219@funes.schapachnik.com.ar> References: <20020313103638.30294.qmail@web21107.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5i In-Reply-To: <20020313103638.30294.qmail@web21107.mail.yahoo.com>; from hitmaster2k@yahoo.com on Wed, Mar 13, 2002 at 02:36:38AM -0800 X-OS: FreeBSD 4.4 - http://www.freebsd.org Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org As you can see from reading the list, the port is moving fast but still at an early stage, not yet production ready. Good luck. En un mensaje anterior, Hiten Pandya escribió: > hello and greetings, > > Is it possible to run FreeBSD on a Sun Fire 280R server? Most of the > applications we want to run are: > > o MySQL > o Perl / C and C++ > o and the base operating system with networking support. > > Thanks, > Regards, > > > -- Hiten Pandya > -- Fernando P. Schapachnik fernando@schapachnik.com.ar To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Wed Mar 13 21:43:47 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from rwcrmhc53.attbi.com (rwcrmhc53.attbi.com [204.127.198.39]) by hub.freebsd.org (Postfix) with ESMTP id F0FFE37B404; Wed, 13 Mar 2002 21:43:40 -0800 (PST) Received: from bmah.dyndns.org ([12.233.149.189]) by rwcrmhc53.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020314054340.XITG2951.rwcrmhc53.attbi.com@bmah.dyndns.org>; Thu, 14 Mar 2002 05:43:40 +0000 Received: (from bmah@localhost) by bmah.dyndns.org (8.11.6/8.11.6) id g2E5hek56478; Wed, 13 Mar 2002 21:43:40 -0800 (PST) (envelope-from bmah) Message-Id: <200203140543.g2E5hek56478@bmah.dyndns.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: freebsd-sparc@freebsd.org, freebsd-doc@freebsd.org Cc: bmah@freebsd.org Subject: FreeBSD/sparc64 install document active in -CURRENT From: bmah@freebsd.org (Bruce A. Mah) Reply-To: bmah@freebsd.org X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 13 Mar 2002 21:43:40 -0800 Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi folks-- I've activated the sparc64 install document in the release documentation for 5.0-CURRENT. It's largely a collaboration between tmm, jake, and murray, with me doing some tweaking and kibitzing. A few rough spots: This document will eventually give the URLs for obtaining FreeBSD/sparc64; right now, the URLs point to where we *plan* to put the files. There's a warning in the document about this. Also, there's also some places where I've tried to streamline the document, but stalled because I don't actually have a sparc64 system to work with. The main reason I'm activating the document up now is to give the translation teams time to work on it before 5.0-DP1. In the src tree: src/release/doc/en_US-ISO8859-1/installation/sparc64/ Rendered versions: http://people.freebsd.org/~bmah/relnotes/ Comments (and commits) welcome. Cheers, Bruce. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Thu Mar 14 8:20:16 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from mail.ruhr.de (in-ruhr4.ruhr.de [212.23.134.2]) by hub.freebsd.org (Postfix) with SMTP id 3EBDA37B435 for ; Thu, 14 Mar 2002 08:19:55 -0800 (PST) Received: (qmail 4240 invoked by uid 10); 14 Mar 2002 16:19:53 -0000 Received: (from ue@localhost) by nathan.ruhr.de (8.11.6/8.11.2) id g2EGG1q16008; Thu, 14 Mar 2002 17:16:01 +0100 (CET) (envelope-from ue) Date: Thu, 14 Mar 2002 17:16:01 +0100 From: Udo Erdelhoff To: "Bruce A. Mah" Cc: freebsd-doc@FreeBSD.ORG, freebsd-sparc@freebsd.org Subject: Re: FreeBSD/sparc64 install document active in -CURRENT Message-ID: <20020314161601.GL90154@nathan.ruhr.de> Mail-Followup-To: "Bruce A. Mah" , freebsd-doc@FreeBSD.ORG, freebsd-sparc@freebsd.org References: <200203140543.g2E5hek56478@bmah.dyndns.org> <20020314131849.GJ90154@nathan.ruhr.de> <200203141555.g2EFtun61009@bmah.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203141555.g2EFtun61009@bmah.dyndns.org> User-Agent: Mutt/1.3.27i Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thu, Mar 14, 2002 at 07:55:56AM -0800, Bruce A. Mah wrote: > > And a note that older OpenBoot versions do not support DHCP correctly > > and that you should update your OpenBoot firmware if you have mysterios > > DHCP problems cannot hurt, either. > > [snip] > > > PS: On second thought, make that a note that you should have the > > most current version of the OpenBoot firmware, period. Even if > > some firmware updates (most notably those for the Netra T1 AC > > 100/105) are only available for customers with a support contract. > > It sounds like you have more experience with this than I...I'd say > either run it past some sparc64 developers or if if this is something > obvious that doesn't need checking, go ahead and fix it. I prefer to run it past the crowd on freebsd-sparc in any because I do not know much basic stuff they want in the installation docs. Right now, this kind of notice is probably not neccessary as anybody who works with OpenBoot on a regular basis knows about the problems. > (Ditto for the IP/Ethernet address thing in the BOOTP/DHCP section.) Same one for this one. /s/Udo -- There's more than one way to skin a cat: Way number 32 -- Wrap it around a lonely frat man's pecker. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Thu Mar 14 11: 0:25 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from mail.ruhr.de (in-ruhr4.ruhr.de [212.23.134.2]) by hub.freebsd.org (Postfix) with SMTP id CBFF737B41C for ; Thu, 14 Mar 2002 10:59:58 -0800 (PST) Received: (qmail 11066 invoked by uid 10); 14 Mar 2002 18:59:56 -0000 Received: (from ue@localhost) by nathan.ruhr.de (8.11.6/8.11.2) id g2EIumD17297; Thu, 14 Mar 2002 19:56:48 +0100 (CET) (envelope-from ue) Date: Thu, 14 Mar 2002 19:56:48 +0100 From: Udo Erdelhoff To: "Bruce A. Mah" Cc: freebsd-sparc@freebsd.org, freebsd-doc@freebsd.org Subject: Re: FreeBSD/sparc64 install document active in -CURRENT Message-ID: <20020314185648.GO90154@nathan.ruhr.de> Mail-Followup-To: "Bruce A. Mah" , freebsd-sparc@freebsd.org, freebsd-doc@freebsd.org References: <200203140543.g2E5hek56478@bmah.dyndns.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="/9DWx/yDrRhgMJTb" Content-Disposition: inline In-Reply-To: <200203140543.g2E5hek56478@bmah.dyndns.org> User-Agent: Mutt/1.3.27i Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --/9DWx/yDrRhgMJTb Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, On Wed, Mar 13, 2002 at 09:43:40PM -0800, Bruce A. Mah wrote: > Comments (and commits) welcome. as promised, I have included the second version of my patch: - add some forgotten - and friends should not be inside a entity - Use foo instead of screen in the disk label section - Use for this section - disklabel -e auto was replaced by disklabel -e (looks like an artifact from a copy&paste action) - use instead of <>, <>, <> in some places - tags should snuggle up to their content - reduce the number of sentences torn apart by screen presentations /s/Udo -- Tell init to lock and load - we're going zombie slaying --/9DWx/yDrRhgMJTb Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="install.diff" Index: install.sgml =================================================================== RCS file: /home/ncvs/src/release/doc/en_US.ISO8859-1/installation/sparc64/install.sgml,v retrieving revision 1.7 diff -u -r1.7 install.sgml --- install.sgml 14 Mar 2002 01:40:47 -0000 1.7 +++ install.sgml 14 Mar 2002 18:49:31 -0000 @@ -56,7 +56,7 @@ This section describes the files you will need for a &os;/&arch; installation. The links in this document point to the main &os; FTP server. Please use a mirror site instead if - possible. + possible. The URLs in this section are provisional and subject to @@ -139,12 +139,10 @@ on the keyboard, or send a BREAK over the serial console (using for example ~# in &man.tip.1; or &man.cu.1;) to - get to the PROM prompt. It looks like + get to the PROM prompt. It looks like this: - ok - or - ok {0} - (on SMP systems). + ok (systems with one CPU) +ok {0} (SMP systems) @@ -242,7 +240,7 @@ :rp="tftp-server-ip-address:nfs-root-directory":\ :sm=ip-netmask -<name of the entry>:\ +name of the entry:\ ha=sparc64-ethernet-address:ip=sparc64-ip-address:tc=.default The Ethernet address must be the same as the one in the @@ -287,7 +285,7 @@ option host-name is resolvable, i.e. has a DNS entry or is associated with an address in /etc/hosts, the - fixed-address specification can be omitted. + fixed-address specification can be omitted. @@ -396,18 +394,22 @@ To create a disk label, the following procedure is the easiest: - First, use: -&prompt.root; disklabel -w -r <device> auto - This will create a basic disk label. The third argument you need + + + Run +disklabel -w -r device auto + to create a basic disk label. The third argument you need specify here is just the name of the device, not the complete path to the device node (e.g. ad0 for the first ATA disk). + + - Now, use: -&prompt.root; disklabel -e <device> auto - This will open an editor in which you can edit the disk - label. The information presented to you should look like: + Use +disklabel -e device + to open an editor in which you can edit the disk + label. The information presented to you should look like: # /dev/ad6c: type: unknown @@ -430,10 +432,9 @@ 8 partitions: # size offset fstype [fsize bsize bps/cpg] - c: 80418240 0 unused 0 0 # (Cyl. 0 - 79779) - + c: 80418240 0 unused 0 0 # (Cyl. 0 - 79779) - You can now add new partitions in the same format as the already + You can now add new partitions in the same format as the already present line. Using * in the offset field makes the procedure easier; please refer to the &man.disklabel.8; manual page for more information. @@ -451,7 +452,9 @@ this disk must have their respective partition entries in the old and new label match exactly, or they will be lost. + + Use disklabel -B if you want to make the disk bootable for &os;/&arch;. @@ -467,6 +470,8 @@ + + @@ -491,19 +496,19 @@ To create file systems and to install the base system, boot from CDROM or via NFS and create a disk label as described in - . + . When booting the first time and you have not entered your root partition into /etc/fstab yet, you may need to specify your root partition on the mountroot prompt when booting (use a format like - ufs:<disk><partition>, i.e. leave the + ufs:diskpartition, i.e. leave the slice specification out). If the kernel does automatically attempt to boot from another file system, press a key other than Enter on the loader - prompt: + prompt: Hit [Enter] to boot immediately, or any other key for command prompt. - Then, boot the kernel using boot -a -s, which + Then, boot the kernel using boot -a -s, which will cause the kernel to ask you for the root partition and then boot into single-user mode. Once the root file system has been entered into /etc/fstab, it should be --/9DWx/yDrRhgMJTb-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Thu Mar 14 12:52:28 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from mailhost1.dircon.co.uk (mailhost1.dircon.co.uk [194.112.32.65]) by hub.freebsd.org (Postfix) with ESMTP id DA59537B405 for ; Thu, 14 Mar 2002 12:52:22 -0800 (PST) Received: from desk43.ch.dircon.net (desk43.ch.netscalibur.co.uk [195.157.3.43]) by mailhost1.dircon.co.uk (Postfix) with ESMTP id B49B457386 for ; Thu, 14 Mar 2002 20:52:21 +0000 (GMT) From: "Mark Blackman" To: freebsd-sparc@freebsd.org Subject: netra T1 booted. Date: Thu, 14 Mar 2002 20:52:48 +0000 Message-Id: <20020314205221.B49B457386@mailhost1.dircon.co.uk> Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org FWIW, I got the 10 March kernel/tarball up and running multi-user on a netra T1 / 105 . Copyright (c) 1992-2002 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-CURRENT #250: Mon Mar 11 02:29:19 GMT 2002 root@u60.locore.ca:/usr/p4/sparc64/sys/sparc64/compile/SUN4U Preloaded elf kernel "/boot/kernel/kernel" at 0x8032a000. Timecounter "tick" frequency 360047593 Hz cpu0: Sun Microsystems UltraSparc-IIi Processor (360.05 MHZ CPU) nexus0: pcib0: on nexus0 pcib0: SUNW,sabre: impl 0, version 0: ign 7c0 bus range 0 to 3; PCI bus 0 DVMA map: c0000000 to dfffffff ofw_pci_init_intr: could not get interrupt map properties pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 pcib2: at device 1.0 on pci1 pci2: on pcib2 atapci0: port 0x1020-0x102f,0x1018-0x101b,0x1010-0x1017,0x1008-0x100b,0x1000-0x1007 irq 14 at device 14.0 on pci2 ata2: at 0x1000 on atapci0 ata3: at 0x1010 on atapci0 pcib3: at device 1.1 on pci0 pci3: on pcib3 ebus0: revision 0x01 ebus0: mem 0xf1000000-0xf17fffff,0xf0000000-0xf0ffffff at device 1.0 on pci3 ebus0: addr 0x140072f000-0x140072f003,0x140072c000-0x140072c003,0x140072a000-0x140072a003,0x1400728000-0x1400728003,0x1400726000-0x1400726003 (no driver attached) ebus0: addr 0x1400724000-0x1400724003 irq 37 (no driver attached) ebus0: addr 0x1400504000-0x1400504002 (no driver attached) ebus0: addr 0x14003803f8-0x14003803ff irq 28 (no driver attached) ebus0: addr 0x14003602f8-0x14003602ff irq 20 (no driver attached) ebus0: addr 0x1400700000-0x140070000f,0x140030015c-0x140030015d,0x1400340278-0x1400340287 irq 34 (no driver attached) ebus0: addr 0x1400720000-0x1400720003,0x1400706000-0x140070600f,0x14003203f0-0x14003203f7 irq 39 (no driver attached) eeprom0: addr 0x1400000000-0x1400001fff on ebus0 eeprom0: model mk48t59 eeprom0: hostid 80d982ec ebus0: addr 0x1000000000-0x10000fffff (no driver attached) ebus0: addr 0x1400200000-0x140020003f irq 4 (no driver attached) ebus0: addr 0x1400200040 (no driver attached) ebus0: addr 0x1400722000-0x1400722003 (no driver attached) ebus0: addr 0x1000400000-0x10005fffff (no driver attached) ebus0: addr 0x1000800000-0x10009fffff (no driver attached) ebus0: addr 0x1400600000-0x1400600003 irq 40 (no driver attached) ebus0: addr 0x1400100000-0x1400100003 irq 27 (no driver attached) ebus0: addr 0x1400400000-0x1400400063 (no driver attached) hme0: mem 0xe0000000-0xe0007fff irq 33 at device 1.1 on pci3 hme0: Ethernet address: 08:00:20:d9:82:ec miibus0: on hme0 ukphy0: on miibus0 ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto ukphy1: on miibus0 ukphy1: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto ifmedia_match: multiple match for 0x20/0xfffffff sym0: <875> port 0xc00000-0xc000ff mem 0xe000a000-0xe000afff,0xe0008000-0xe00080ff irq 32 at device 2.0 on pci3 sym0: No NVRAM, ID 7, Fast-20, SE, parity checking nexus0: , type cpu (no driver attached) Waiting 2 seconds for SCSI devices to settle da0 at sym0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 40.000MB/s transfers (20.000MHz, offset 16, 16bit), Tagged Queueing Enabled da0: 17274MB (35378533 512 byte sectors: 255H 63S/T 2202C) Mounting root from ufs:/dev/da0a WARNING: / was not properly dismounted To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Thu Mar 14 13:34:18 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from rwcrmhc54.attbi.com (rwcrmhc54.attbi.com [216.148.227.87]) by hub.freebsd.org (Postfix) with ESMTP id 3429437B404; Thu, 14 Mar 2002 13:34:09 -0800 (PST) Received: from bmah.dyndns.org ([12.233.149.189]) by rwcrmhc54.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020314213408.GFUD1214.rwcrmhc54.attbi.com@bmah.dyndns.org>; Thu, 14 Mar 2002 21:34:08 +0000 Received: (from bmah@localhost) by bmah.dyndns.org (8.11.6/8.11.6) id g2ELY8O23997; Thu, 14 Mar 2002 13:34:08 -0800 (PST) (envelope-from bmah) Message-Id: <200203142134.g2ELY8O23997@bmah.dyndns.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Udo Erdelhoff Cc: "Bruce A. Mah" , freebsd-sparc@freebsd.org, freebsd-doc@freebsd.org Subject: Re: FreeBSD/sparc64 install document active in -CURRENT In-reply-to: <20020314185648.GO90154@nathan.ruhr.de> References: <200203140543.g2E5hek56478@bmah.dyndns.org> <20020314185648.GO90154@nathan.ruhr.de> Comments: In-reply-to Udo Erdelhoff message dated "Thu, 14 Mar 2002 19:56:48 +0100." From: bmah@freebsd.org (Bruce A. Mah) Reply-To: bmah@freebsd.org X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 14 Mar 2002 13:34:08 -0800 Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org If memory serves me right, Udo Erdelhoff wrote: Good job...I can't believe I left off so many closing tags (admittedly I wasn't looking for them). Two minor things... > @@ -139,12 +139,10 @@ > on the keyboard, or send a > BREAK over the serial console (using for > example ~# in &man.tip.1; or &man.cu.1;) to > - get to the PROM prompt. It looks like > + get to the PROM prompt. It looks like this: > > - ok > - or > - ok {0} > - (on SMP systems). > + ok (systems with one CPU) > +ok {0} (SMP systems) Can we get "(systems with one CPU)" and "(SMP systems)" outside the element? They're explanatory text, not literal stuff that shows up on the screen. Not sure if there's an easy way to do this. > @@ -242,7 +240,7 @@ > :rp="tftp-server-ip-address:nfs-ro > ot-directory":\ > :sm=ip-netmask > > -<name of the entry>:\ > +name of the entry:\ > ha=sparc64-ethernet-address:ip=spa > rc64-ip-address:tc=.default I went through a little bit of work to make sure all of the multi-word replaceables had hyphens separating the words. "name of entry" should probably be "name-of-entry" to be consistent with this. Other than these, I have no changes to suggest. Thanks! Bruce. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Thu Mar 14 13:41:55 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from mail12.speakeasy.net (mail12.speakeasy.net [216.254.0.212]) by hub.freebsd.org (Postfix) with ESMTP id 91E4E37B425 for ; Thu, 14 Mar 2002 13:41:34 -0800 (PST) Received: (qmail 6811 invoked from network); 14 Mar 2002 21:41:33 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail12.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 14 Mar 2002 21:41:33 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.11.6/8.11.6) with ESMTP id g2ELfxv36887; Thu, 14 Mar 2002 16:41:59 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.2 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <200203142134.g2ELY8O23997@bmah.dyndns.org> Date: Thu, 14 Mar 2002 16:41:35 -0500 (EST) From: John Baldwin To: (Bruce A. Mah) Subject: Re: FreeBSD/sparc64 install document active in -CURRENT Cc: freebsd-doc@freebsd.org, freebsd-sparc@freebsd.org, Udo Erdelhoff Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On 14-Mar-2002 Bruce A. Mah wrote: > If memory serves me right, Udo Erdelhoff wrote: > > Good job...I can't believe I left off so many closing tags (admittedly > I wasn't looking for them). Two minor things... > >> @@ -139,12 +139,10 @@ >> on the keyboard, or send a >> BREAK over the serial console (using for >> example ~# in &man.tip.1; or &man.cu.1;) to >> - get to the PROM prompt. It looks like >> + get to the PROM prompt. It looks like this: >> >> - ok >> - or >> - ok {0} >> - (on SMP systems). >> + ok (systems with one CPU) >> +ok {0} (SMP systems) > > Can we get "(systems with one CPU)" and "(SMP systems)" outside the > element? They're explanatory text, not literal stuff > that shows up on the screen. Not sure if there's an easy way to do > this. Use a callout. See the docbook docs on how to do callouts. They are specifically designed for these types of things. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Thu Mar 14 13:42:24 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by hub.freebsd.org (Postfix) with ESMTP id CB2DF37B41B for ; Thu, 14 Mar 2002 13:42:17 -0800 (PST) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.2/8.12.2) with ESMTP id g2ELgGUD003335 for ; Thu, 14 Mar 2002 22:42:16 +0100 (CET) (envelope-from phk@critter.freebsd.dk) To: sparc@freebsd.org Subject: Netra T1 AC200/DC200 dmesg Date: Thu, 14 Mar 2002 22:42:16 +0100 Message-ID: <3334.1016142136@critter.freebsd.dk> From: Poul-Henning Kamp Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org ------- Forwarded Message To: jake@freebsd.org Subject: Netra T1 AC200/DC200 dmesg From: Poul-Henning Kamp Date: Thu, 14 Mar 2002 22:39:04 +0100 Message-ID: <3299.1016141944@critter.freebsd.dk> Sender: phk@critter.freebsd.dk Copyright (c) 1992-2002 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-CURRENT #0: Sun Mar 3 02:15:33 EST 2002 jake@k7.locore.ca:/usr/p4/sparc64/sys/sparc64/compile/GENERIC Preloaded elf kernel "/boot/kernel/kernel" at 0x80334000. Timecounter "tick" frequency 500000000 Hz cpu0: Sun Microsystems UltraSparc-IIe Processor (500.00 MHZ CPU) nexus0: pcib0: on nexus0 pcib0: SUNW,sabre: impl 0, version 0: ign 7c0 bus range 0 to 2; PCI bus 0 DVMA map: c0000000 to dfffffff pci0: on pcib0 pcib1: at device 1.0 on pci0 pci1: on pcib1 sym0: <896> port 0xc00000-0xc000ff mem 0x4000-0x5fff,0x2000-0x23ff irq 32 at device 8.0 on pci1 sym0: No NVRAM, ID 7, Fast-40, LVD, parity checking sym1: <896> port 0xc00100-0xc001ff mem 0x8000-0x9fff,0x6000-0x63ff irq 32 at device 8.1 on pci1 sym1: No NVRAM, ID 7, Fast-40, LVD, parity checking pcib2: at device 1.1 on pci0 pci2: on pcib2 pci2: at device 3.0 (no driver attached) isab0: at device 7.0 on pci2 isa0: on isab0 ebus0: revision 0x01 ebus0: : incomplete ebus0: mem 0xf1000000-0xf17fffff,0xf0000000-0xf0ffffff at device 12.0 on pci2 ebus0: addr 0x1000000000-0x10000fffff (no driver attached) eeprom0: addr 0x1400000000-0x1400001fff on ebus0 eeprom0: model mk48t59 eeprom0: hostid 0 ebus0: addr 0x1400200000-0x1400200003 irq 42 (no driver attached) gem0: mem 0xe0400000-0xe041ffff irq 6 at device 12.1 on pci2 miibus0: on gem0 ukphy0: on miibus0 ukphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto gem0: Ethernet address: 08:00:20:fd:f4:c0 using internal phy pci2: at device 12.3 (no driver attached) atapci0: port 0x420-0x42f,0x408-0x40b,0x410-0x417,0x418-0x41b,0x400-0x407 irq 12 at device 13.0 on pci2 ata2: at 0x400 on atapci0 ata3: at 0x410 on atapci0 timing ar 31, s 0x1 for dev 0, channel 0, devno 0 word54 is 0x44405555 acd0: CDROM at ata2-master PIO4 Waiting 2 seconds for SCSI devices to settle Mounting root from ufs:/dev/da1a da0 at sym0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-3 device da0: 80.000MB/s transfers (40.000MHz, offset 31, 16bit), Tagged Queueing Enabled da0: 17274MB (35378533 512 byte sectors: 255H 63S/T 2202C) da1 at sym0 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI-3 device da1: 80.000MB/s transfers (40.000MHz, offset 31, 16bit), Tagged Queueing Enabled da1: 35003MB (71687340 512 byte sectors: 255H 63S/T 4462C) da1c: raw partition size != slice size da1c: start 0, end 71687339, size 71687340 da1cc: start 0, end 17689266, size 17689267 Invalid time in real time clock. Check and reset the date immediately! - -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. ------- End of Forwarded Message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Thu Mar 14 14: 0:24 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from mail.ruhr.de (in-ruhr4.ruhr.de [212.23.134.2]) by hub.freebsd.org (Postfix) with SMTP id D76EF37B417 for ; Thu, 14 Mar 2002 13:59:52 -0800 (PST) Received: (qmail 18530 invoked by uid 10); 14 Mar 2002 21:59:51 -0000 Received: (from ue@localhost) by nathan.ruhr.de (8.11.6/8.11.2) id g2ELsgi21859; Thu, 14 Mar 2002 22:54:42 +0100 (CET) (envelope-from ue) Date: Thu, 14 Mar 2002 22:54:42 +0100 From: Udo Erdelhoff To: "Bruce A. Mah" Cc: freebsd-sparc@freebsd.org, freebsd-doc@freebsd.org Subject: Re: FreeBSD/sparc64 install document active in -CURRENT Message-ID: <20020314215442.GR90154@nathan.ruhr.de> Mail-Followup-To: "Bruce A. Mah" , freebsd-sparc@freebsd.org, freebsd-doc@freebsd.org References: <200203140543.g2E5hek56478@bmah.dyndns.org> <20020314185648.GO90154@nathan.ruhr.de> <200203142134.g2ELY8O23997@bmah.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200203142134.g2ELY8O23997@bmah.dyndns.org> User-Agent: Mutt/1.3.27i Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi Bruce, On Thu, Mar 14, 2002 at 01:34:08PM -0800, Bruce A. Mah wrote: > Good job...I can't believe I left off so many closing tags (admittedly > I wasn't looking for them). Two minor things... looking for missing closing tags is a stupid task best left to a program. I have to admit that at least half of them are not only missing closing tags, but also missing opening tags as well. > Can we get "(systems with one CPU)" and "(SMP systems)" outside the > element? They're explanatory text, not literal stuff > that shows up on the screen. Not sure if there's an easy way to do > this. Sure, I can always use callouts - the bullet images cannot be mistaken for 'real' screen output. > I went through a little bit of work to make sure all of the multi-word > replaceables had hyphens separating the words. "name of entry" should > probably be "name-of-entry" to be consistent with this. No problem there. /s/Udo -- "God, root, where's the difference?" (http://www.userfriendly.org) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Thu Mar 14 14: 0: 7 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from mail.ruhr.de (in-ruhr4.ruhr.de [212.23.134.2]) by hub.freebsd.org (Postfix) with SMTP id 1F94037B41A for ; Thu, 14 Mar 2002 13:59:53 -0800 (PST) Received: (qmail 18538 invoked by uid 10); 14 Mar 2002 21:59:52 -0000 Received: (from ue@localhost) by nathan.ruhr.de (8.11.6/8.11.2) id g2ELvVY21885; Thu, 14 Mar 2002 22:57:31 +0100 (CET) (envelope-from ue) Date: Thu, 14 Mar 2002 22:57:31 +0100 From: Udo Erdelhoff To: John Baldwin Cc: "Bruce A. Mah" , freebsd-doc@freebsd.org, freebsd-sparc@freebsd.org Subject: Re: FreeBSD/sparc64 install document active in -CURRENT Message-ID: <20020314215730.GS90154@nathan.ruhr.de> Mail-Followup-To: John Baldwin , "Bruce A. Mah" , freebsd-doc@freebsd.org, freebsd-sparc@freebsd.org References: <200203142134.g2ELY8O23997@bmah.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.3.27i Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thu, Mar 14, 2002 at 04:41:35PM -0500, John Baldwin wrote: > See the docbook docs on how to do callouts. They are > specifically designed for these types of things. I can always take a peek at my own document about the things: http://www.ruhr.de/home/nathan/FreeBSD/callout/english.html (SCNR) /s/Udo -- Schnell und schluepfrig wie geoeltes Ferkel auf Crack To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Thu Mar 14 14:29:57 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from mail.ruhr.de (in-ruhr4.ruhr.de [212.23.134.2]) by hub.freebsd.org (Postfix) with SMTP id 25DFF37B417 for ; Thu, 14 Mar 2002 14:29:53 -0800 (PST) Received: (qmail 19419 invoked by uid 10); 14 Mar 2002 22:29:51 -0000 Received: (from ue@localhost) by nathan.ruhr.de (8.11.6/8.11.2) id g2EMQ5i22293; Thu, 14 Mar 2002 23:26:05 +0100 (CET) (envelope-from ue) Date: Thu, 14 Mar 2002 23:26:05 +0100 From: Udo Erdelhoff To: "Bruce A. Mah" Cc: freebsd-sparc@freebsd.org, freebsd-doc@freebsd.org Subject: Re: FreeBSD/sparc64 install document active in -CURRENT Message-ID: <20020314222604.GU90154@nathan.ruhr.de> Mail-Followup-To: "Bruce A. Mah" , freebsd-sparc@freebsd.org, freebsd-doc@freebsd.org References: <200203140543.g2E5hek56478@bmah.dyndns.org> <20020314185648.GO90154@nathan.ruhr.de> <200203142134.g2ELY8O23997@bmah.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <200203142134.g2ELY8O23997@bmah.dyndns.org> User-Agent: Mutt/1.3.27i Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Thu, Mar 14, 2002 at 01:34:08PM -0800, Bruce A. Mah wrote: > Other than these, I have no changes to suggest. The third version of the patch is included. As we are using callouts now, we have to add to them to the Makefile and put a copy of the critters into src/release/doc/en_EN.ISO8859-1/share/images/callout. Yes, they are language-specific and our whole repository is littered with copies of them. The little images are like cockroaches in this regards... /s/Udo -- "Ich kann rennen wie ein Hirsch!" "Zustoßen wie ein Stier!" "Kämpfen wie ein Löwe!" "Wer sagte 'Saufen wie ein Kamel?'" - Hägar To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Thu Mar 14 14:43:34 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from mail11.speakeasy.net (mail11.speakeasy.net [216.254.0.211]) by hub.freebsd.org (Postfix) with ESMTP id 21BC437B404 for ; Thu, 14 Mar 2002 14:43:30 -0800 (PST) Received: (qmail 21004 invoked from network); 14 Mar 2002 22:43:28 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail11.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 14 Mar 2002 22:43:28 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.11.6/8.11.6) with ESMTP id g2EMhsv37189; Thu, 14 Mar 2002 17:43:54 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.2 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20020314222604.GU90154@nathan.ruhr.de> Date: Thu, 14 Mar 2002 17:43:30 -0500 (EST) From: John Baldwin To: Udo Erdelhoff Subject: Re: FreeBSD/sparc64 install document active in -CURRENT Cc: freebsd-doc@freebsd.org, freebsd-sparc@freebsd.org, "Bruce A. Mah" Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On 14-Mar-2002 Udo Erdelhoff wrote: > On Thu, Mar 14, 2002 at 01:34:08PM -0800, Bruce A. Mah wrote: >> Other than these, I have no changes to suggest. > > The third version of the patch is included. As we are using callouts > now, we have to add to them to the Makefile and put a copy of the > critters into src/release/doc/en_EN.ISO8859-1/share/images/callout. > > Yes, they are language-specific and our whole repository is littered > with copies of them. The little images are like cockroaches in this > regards... You can use text callouts that are directly in the DocBook source IIRC. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Thu Mar 14 14:50:39 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from mail.ruhr.de (in-ruhr4.ruhr.de [212.23.134.2]) by hub.freebsd.org (Postfix) with SMTP id 22DFE37B405 for ; Thu, 14 Mar 2002 14:49:53 -0800 (PST) Received: (qmail 19981 invoked by uid 10); 14 Mar 2002 22:49:51 -0000 Received: (from ue@localhost) by nathan.ruhr.de (8.11.6/8.11.2) id g2EMhca22400; Thu, 14 Mar 2002 23:43:38 +0100 (CET) (envelope-from ue) Date: Thu, 14 Mar 2002 23:43:38 +0100 From: Udo Erdelhoff To: "Bruce A. Mah" Cc: freebsd-sparc@freebsd.org, freebsd-doc@freebsd.org Subject: Re: FreeBSD/sparc64 install document active in -CURRENT Message-ID: <20020314224338.GV90154@nathan.ruhr.de> Mail-Followup-To: "Bruce A. Mah" , freebsd-sparc@freebsd.org, freebsd-doc@freebsd.org References: <200203140543.g2E5hek56478@bmah.dyndns.org> <20020314185648.GO90154@nathan.ruhr.de> <200203142134.g2ELY8O23997@bmah.dyndns.org> <20020314222604.GU90154@nathan.ruhr.de> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="U+BazGySraz5kW0T" Content-Disposition: inline In-Reply-To: <20020314222604.GU90154@nathan.ruhr.de> User-Agent: Mutt/1.3.27i Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --U+BazGySraz5kW0T Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Mar 14, 2002 at 11:26:05PM +0100, Udo Erdelhoff wrote: > The third version of the patch is included. Ok, let's try this again a) write message b) attach file c) send -- There's more than one way to skin a cat: Way number 15 -- Krazy Glue and a toothbrush. --U+BazGySraz5kW0T Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="install.3" Index: Makefile =================================================================== RCS file: /home/ncvs/src/release/doc/en_US.ISO8859-1/installation/sparc64/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- Makefile 5 Mar 2002 23:22:08 -0000 1.1 +++ Makefile 14 Mar 2002 22:13:31 -0000 @@ -14,5 +14,9 @@ SRCS+= ../common/install.sgml SRCS+= ../common/layout.sgml +# Needed for the callouts +IMAGES_LIB= callouts/1.png +IMAGES_LIB+= callouts/2.png + .include "${RELN_ROOT}/share/mk/doc.relnotes.mk" .include "${DOC_PREFIX}/share/mk/doc.project.mk" Index: install.sgml =================================================================== RCS file: /home/ncvs/src/release/doc/en_US.ISO8859-1/installation/sparc64/install.sgml,v retrieving revision 1.7 diff -u -r1.7 install.sgml --- install.sgml 14 Mar 2002 01:40:47 -0000 1.7 +++ install.sgml 14 Mar 2002 22:19:54 -0000 @@ -56,7 +56,7 @@ This section describes the files you will need for a &os;/&arch; installation. The links in this document point to the main &os; FTP server. Please use a mirror site instead if - possible. + possible. The URLs in this section are provisional and subject to @@ -139,12 +139,29 @@ on the keyboard, or send a BREAK over the serial console (using for example ~# in &man.tip.1; or &man.cu.1;) to - get to the PROM prompt. It looks like + get to the PROM prompt. It looks like this: - ok - or - ok {0} - (on SMP systems). + + + + + + + ok +ok {0} + + + + This is the prompt used on systems with just + one CPU. + + + + This is the prompt used on SMP systems, the digit + indicates the number of the active CPU. + + + @@ -242,7 +259,7 @@ :rp="tftp-server-ip-address:nfs-root-directory":\ :sm=ip-netmask -<name of the entry>:\ +name-of-the-entry:\ ha=sparc64-ethernet-address:ip=sparc64-ip-address:tc=.default The Ethernet address must be the same as the one in the @@ -287,7 +304,7 @@ option host-name is resolvable, i.e. has a DNS entry or is associated with an address in /etc/hosts, the - fixed-address specification can be omitted. + fixed-address specification can be omitted. @@ -396,18 +413,22 @@ To create a disk label, the following procedure is the easiest: - First, use: -&prompt.root; disklabel -w -r <device> auto - This will create a basic disk label. The third argument you need + + + Run +disklabel -w -r device auto + to create a basic disk label. The third argument you need specify here is just the name of the device, not the complete path to the device node (e.g. ad0 for the first ATA disk). + + - Now, use: -&prompt.root; disklabel -e <device> auto - This will open an editor in which you can edit the disk - label. The information presented to you should look like: + Use +disklabel -e device + to open an editor in which you can edit the disk + label. The information presented to you should look like: # /dev/ad6c: type: unknown @@ -430,10 +451,9 @@ 8 partitions: # size offset fstype [fsize bsize bps/cpg] - c: 80418240 0 unused 0 0 # (Cyl. 0 - 79779) - + c: 80418240 0 unused 0 0 # (Cyl. 0 - 79779) - You can now add new partitions in the same format as the already + You can now add new partitions in the same format as the already present line. Using * in the offset field makes the procedure easier; please refer to the &man.disklabel.8; manual page for more information. @@ -451,7 +471,9 @@ this disk must have their respective partition entries in the old and new label match exactly, or they will be lost. + + Use disklabel -B if you want to make the disk bootable for &os;/&arch;. @@ -467,6 +489,8 @@ + + @@ -491,19 +515,19 @@ To create file systems and to install the base system, boot from CDROM or via NFS and create a disk label as described in - . + . When booting the first time and you have not entered your root partition into /etc/fstab yet, you may need to specify your root partition on the mountroot prompt when booting (use a format like - ufs:<disk><partition>, i.e. leave the + ufs:diskpartition, i.e. leave the slice specification out). If the kernel does automatically attempt to boot from another file system, press a key other than Enter on the loader - prompt: + prompt: Hit [Enter] to boot immediately, or any other key for command prompt. - Then, boot the kernel using boot -a -s, which + Then, boot the kernel using boot -a -s, which will cause the kernel to ask you for the root partition and then boot into single-user mode. Once the root file system has been entered into /etc/fstab, it should be --U+BazGySraz5kW0T-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Thu Mar 14 15:58:49 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by hub.freebsd.org (Postfix) with ESMTP id F29CC37B417 for ; Thu, 14 Mar 2002 15:58:45 -0800 (PST) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.2/8.12.2) with ESMTP id g2ENwhUD005107 for ; Fri, 15 Mar 2002 00:58:43 +0100 (CET) (envelope-from phk@critter.freebsd.dk) To: sparc@freebsd.org Subject: Hi gang! From: Poul-Henning Kamp Date: Fri, 15 Mar 2002 00:58:43 +0100 Message-ID: <5106.1016150323@critter.freebsd.dk> Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org This is just to notify you of my official arrival in the sparc64 crowd. I have a borrowed "Netra 1 AC200/DC200" right now, and hopefully I will get an "Ultra 60" in some weeks time. My intent is to make GEOM grok SUN disklabels ASAP, I'd rather try to make sparc64 a GEOM platform from the start than have to clean it up afterwards. If nothing else comes in the way, this should be a two hour task sometime tomorrow. After that I'll be working on whatever I get near and have time for, the two DARPA/CBOSS projects are high priority for sure. Either way, thanks for all the good work so far! -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 phk@FreeBSD.ORG | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribute to malice what can adequately be explained by incompetence. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Thu Mar 14 16:23:45 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from rwcrmhc54.attbi.com (rwcrmhc54.attbi.com [216.148.227.87]) by hub.freebsd.org (Postfix) with ESMTP id 58A1D37B400; Thu, 14 Mar 2002 16:23:39 -0800 (PST) Received: from bmah.dyndns.org ([12.233.149.189]) by rwcrmhc54.attbi.com (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP id <20020315002339.LQUZ1214.rwcrmhc54.attbi.com@bmah.dyndns.org>; Fri, 15 Mar 2002 00:23:39 +0000 Received: (from bmah@localhost) by bmah.dyndns.org (8.11.6/8.11.6) id g2F0Nce26272; Thu, 14 Mar 2002 16:23:38 -0800 (PST) (envelope-from bmah) Message-Id: <200203150023.g2F0Nce26272@bmah.dyndns.org> X-Mailer: exmh version 2.5 07/13/2001 with nmh-1.0.4 To: Udo Erdelhoff Cc: "Bruce A. Mah" , freebsd-doc@freebsd.org Subject: Re: FreeBSD/sparc64 install document active in -CURRENT In-reply-to: <20020314224338.GV90154@nathan.ruhr.de> References: <200203140543.g2E5hek56478@bmah.dyndns.org> <20020314185648.GO90154@nathan.ruhr.de> <200203142134.g2ELY8O23997@bmah.dyndns.org> <20020314222604.GU90154@nathan.ruhr.de> <20020314224338.GV90154@nathan.ruhr.de> Comments: In-reply-to Udo Erdelhoff message dated "Thu, 14 Mar 2002 23:43:38 +0100." From: bmah@freebsd.org (Bruce A. Mah) Reply-To: bmah@freebsd.org X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 14 Mar 2002 16:23:38 -0800 Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org [Removing freebsd-sparc@ from future follow-ups, to spare them the pain of discussing the finer points of the FreeBSD Documentation Project.] If memory serves me right, Udo Erdelhoff wrote: > Index: Makefile > =================================================================== > RCS file: /home/ncvs/src/release/doc/en_US.ISO8859-1/installation/sparc64/Mak > efile,v > retrieving revision 1.1 > diff -u -r1.1 Makefile > --- Makefile 5 Mar 2002 23:22:08 -0000 1.1 > +++ Makefile 14 Mar 2002 22:13:31 -0000 > @@ -14,5 +14,9 @@ > SRCS+= ../common/install.sgml > SRCS+= ../common/layout.sgml > > +# Needed for the callouts > +IMAGES_LIB= callouts/1.png > +IMAGES_LIB+= callouts/2.png I'm a little concerned about adding more files to the rendered HTML output. So far, the release documentation files we put on the CDROMs or other install media are almost entirely self-contained (with the exception of the CSS stylesheet). The way we stage the files doesn't scale well to handling lots of images (it's not the usual FDP "make install" because we need to munge the filenames as they get copied out to the staging areas). Yeah, I know it's only two PNG files, but, well, slippery slopes, and all that. Maybe we could use your stylesheet hack to switch to text callouts for the release documentation only. If there is no easy way around this, I will drop my original objection to the extra text within the element. Bruce. PS. Nice article on callouts BTW. What about dropping this into the tree? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Thu Mar 14 18:38: 1 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from eudoramail.com (netturbo3.cscoms.com [202.183.214.4]) by hub.freebsd.org (Postfix) with SMTP id 5ACB637B432 for ; Thu, 14 Mar 2002 18:35:11 -0800 (PST) From: "Moissanite" To: Subject: Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Date: Fri, 15 Mar 2002 09:39:00 +0700 Reply-To: "Moissanite" Content-Transfer-Encoding: 8bit Message-Id: <20020315023511.5ACB637B432@hub.freebsd.org> Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Moissanite: More Fire and Brilliance
The Truth About Moissanite
 
Fact - Moissanite delivers more
fire, brilliance and luster than any other hard jewel on Earth.
This unretouched photograph supports the adage that "a picture is worth a thousand words". Here, a light source over a similar sized moissanite and diamond placed in shallow water clearly shows the superior fire and brilliance of this unique new jewel. And the picture is supported by measurable facts: the GIA publishes the dispersion (fire) of created moissanite at 0.104, refractive index (brilliance) at 2.65 to 2.69, and luster at 20.4%. No other hard jewel measures up, not even a fine diamond. And only moissanite and diamond are over 9 on the Mohs hardness scale. Moissanite jewels created by Charles & Colvard are available in all popular shapes and sizes. 

www.moissanitesource.com is the place to buy moissanite jewelry on the internet. Buy with confidence at the best prices in the world. 

 

Moissanite Created By Charles &
Colvard
 

Moissanite created by Charles & Colvard is a unique jewel, not a synthetic diamond.

Moissanite Source is an authorized distributor of Moissanite.

 

If you wish to stop receiving these occasional mailings, simply reply to this email with the word "REMOVE" in
the subject line and we will remove your name and email address from our database.

To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Thu Mar 14 18:40:29 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from eudoramail.com (netturbo3.cscoms.com [202.183.214.4]) by hub.freebsd.org (Postfix) with SMTP id 8ABEA37B4AC for ; Thu, 14 Mar 2002 18:36:09 -0800 (PST) From: "Moissanite" To: Subject: Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Date: Fri, 15 Mar 2002 09:39:58 +0700 Reply-To: "Moissanite" Content-Transfer-Encoding: 8bit Message-Id: <20020315023609.8ABEA37B4AC@hub.freebsd.org> Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Moissanite: More Fire and Brilliance
The Truth About Moissanite
 
Fact - Moissanite delivers more
fire, brilliance and luster than any other hard jewel on Earth.
This unretouched photograph supports the adage that "a picture is worth a thousand words". Here, a light source over a similar sized moissanite and diamond placed in shallow water clearly shows the superior fire and brilliance of this unique new jewel. And the picture is supported by measurable facts: the GIA publishes the dispersion (fire) of created moissanite at 0.104, refractive index (brilliance) at 2.65 to 2.69, and luster at 20.4%. No other hard jewel measures up, not even a fine diamond. And only moissanite and diamond are over 9 on the Mohs hardness scale. Moissanite jewels created by Charles & Colvard are available in all popular shapes and sizes. 

www.moissanitesource.com is the place to buy moissanite jewelry on the internet. Buy with confidence at the best prices in the world. 

 

Moissanite Created By Charles &
Colvard
 

Moissanite created by Charles & Colvard is a unique jewel, not a synthetic diamond.

Moissanite Source is an authorized distributor of Moissanite.

 

If you wish to stop receiving these occasional mailings, simply reply to this email with the word "REMOVE" in
the subject line and we will remove your name and email address from our database.

To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Thu Mar 14 23:51:21 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 1359D37B404 for ; Thu, 14 Mar 2002 23:51:19 -0800 (PST) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g2F7pJlv086347 for ; Thu, 14 Mar 2002 23:51:19 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g2F7o3EI086073 for sparc64@freebsd.org; Thu, 14 Mar 2002 23:50:03 -0800 (PST) Date: Thu, 14 Mar 2002 23:50:03 -0800 From: "David O'Brien" To: sparc64@freebsd.org Subject: Binutils diff needed Message-ID: <20020314235003.A86056@dragon.nuxi.com> Reply-To: obrien@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org You will need to apply this diff to your Bintutils contrib directory until the 2.12.0-RELEASE upgrade. After applying this, you should be able to build a native binutils from /usr/src. Index: elf64-sparc.c =================================================================== RCS file: /home/ncvs/src/contrib/binutils/bfd/elf64-sparc.c,v retrieving revision 1.1.1.7 diff -u -r1.1.1.7 elf64-sparc.c --- elf64-sparc.c 22 Feb 2002 04:16:32 -0000 1.1.1.7 +++ elf64-sparc.c 25 Feb 2002 07:50:00 -0000 @@ -866,7 +866,7 @@ #define LARGE_PLT_THRESHOLD 32768 #define GOT_RESERVED_ENTRIES 1 -#define ELF_DYNAMIC_INTERPRETER "/usr/lib/sparcv9/ld.so.1" +#define ELF_DYNAMIC_INTERPRETER "/usr/libexec/ld-elf.so.1" /* Fill in the .plt section. */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Fri Mar 15 7:42:26 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from ext-ch1gw-3.online-age.net (ext-ch1gw-3.online-age.net [216.34.191.37]) by hub.freebsd.org (Postfix) with ESMTP id 7C96E37B417 for ; Fri, 15 Mar 2002 07:42:14 -0800 (PST) Received: from int-ch1gw-1.online-age.net (int-ch1gw-1 [3.159.232.65]) by ext-ch1gw-3.online-age.net (8.9.3+Sun/8.9.1/990426-RLH) with ESMTP id KAA28892 for ; Fri, 15 Mar 2002 10:42:13 -0500 (EST) Received: from plvctnet1edcge.edc.ge.com (localhost [127.0.0.1]) by int-ch1gw-1.online-age.net (8.9.3+Sun/8.9.1/990426-RLH) with ESMTP id KAA26325 for ; Fri, 15 Mar 2002 10:42:12 -0500 (EST) Received: from combs.salem.ge.com (combs.salem.ge.com [3.29.5.200]) by plvctnet1edcge.edc.ge.com (Postfix) with ESMTP id C7934678E for ; Fri, 15 Mar 2002 10:42:25 -0500 (EST) Received: from indsys.ge.com (localhost [127.0.0.1]) by combs.salem.ge.com (Postfix) with ESMTP id 36BDF159A3 for ; Fri, 15 Mar 2002 10:42:10 -0500 (EST) Message-ID: <3C921652.D9B47272@indsys.ge.com> Date: Fri, 15 Mar 2002 10:42:10 -0500 From: "Stephen F. Combs" Organization: GE Drive Systems, Salem, VA X-Mailer: Mozilla 4.79 [en] (X11; U; SunOS 5.7 sun4u) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-sparc@FreeBSD.org Subject: Questions on the Sparc64 port of FreeBSD Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org General Question..... I have access to an old Ultra1/170E (Ultra1, 167MHz cpu, Creator3D FFB) with aprox. 6 gigs of disk space (3 2.1Gig drives...). as an OLD (and I do mean OLD, 52 years....sheesh)... freebsd user (no I haven't been USING freebsd for 52 years, been using it since the days of 1.0C/D....) I'd LOVE to have it running on the old Ultra1. I've CURRENTY got SuSE Linux on it, but, IF I could get the START of an FBSD system on it, I'd be willing to do development work to help make the port usable... HOW functional is the current image??? i.e. does it support Ultra1 with the HME and onboard SCSI (also have SBUS SCSI card as well, don't remember the model, but 'tis fast/wide SCSI...) does it have ANY Creator3D (ffb) device support??? I can be reached at EITHER the 'steve.combs@indsys.ge.com' address OR (once they FINALLY get my CableModem access fixed...) at 'steve.combs@adelphia.net'... Not going to have a LOT of time, but got hardware and am willing to devote some hours/week to the project... -- Stephen F. Combs Lead Security Analyst, Global Security/e-Business GE Industrial Systems phone: 540.387.8828 Salem, VA mobile: 540.520.4032 E-Mail: steve.combs@indsys.ge.com dialcom: 278.8828 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Fri Mar 15 10:33:43 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from patan.sun.com (patan.Sun.COM [192.18.98.43]) by hub.freebsd.org (Postfix) with ESMTP id F335537B416 for ; Fri, 15 Mar 2002 10:33:06 -0800 (PST) Received: from sunfin.Finland.Sun.COM ([129.159.101.10]) by patan.sun.com (8.9.3+Sun/8.9.3) with ESMTP id LAA05285 for ; Fri, 15 Mar 2002 11:33:05 -0700 (MST) Received: from ultrahot.Finland.Sun.COM (ultrahot [129.159.101.87]) by sunfin.Finland.Sun.COM (8.10.2+Sun/8.10.2/ENSMAIL,v2.2) with ESMTP id g2FIX2014709 for ; Fri, 15 Mar 2002 20:33:02 +0200 (EET) Received: (from tomppa@localhost) by ultrahot.Finland.Sun.COM (8.11.6+Sun/8.11.6) id g2FIX3D10337; Fri, 15 Mar 2002 20:33:03 +0200 (EET) From: Tomi Vainio - Sun Finland - MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15506.15966.910390.854026@gargle.gargle.HOWL> Date: Fri, 15 Mar 2002 20:33:02 +0200 To: freebsd-sparc@freebsd.org Subject: Booting E220R/U60 X-Mailer: VM 7.00 under 21.4 (patch 6) "Common Lisp" XEmacs Lucid Reply-To: Tomi.Vainio@Sun.COM Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi, I tried to boot one of our lab machines using stuff from http://people.freebsd.org/~jake/sparc64/ but it panicked when kernel found second network interface. I have some machines to play with if you need test resources. Tomppa ok boot net Resetting ... screen not found. Can't open input device. Keyboard not present. Using ttya for input and output. Sun Enterprise 220R (UltraSPARC-II 360MHz), No Keyboard OpenBoot 3.31, 512 MB memory installed, Serial #12115752. Ethernet address 8:0:20:b8:df:28, Host ID: 80b8df28. Rebooting with command: boot net Boot device: /pci@1f,4000/network@1,1 File and args: Timeout waiting for ARP/RARP packet Timeout waiting for ARP/RARP packet Timeout waiting for ARP/RARP packet Timeout waiting for ARP/RARP packet 21000 Console: OpenFirmware console FreeBSD/sparc64 loader bootpath="/pci@1f,4000/network@1,1" loaddev=net0: boot: ethernet address: 08:00:20:b8:df:28 bootp: no reply net_open: client addr: 129.159.107.133 net_open: client name: e220r.cslab.finland.sun.com net_open: server addr: 129.159.107.1 net_open: server path: /tftpboot /boot/kernel/kernel data=0x1efaf8+0x52c58 syms=[0x8+0x38520+0x8+0x2c5d6] Hit [Enter] to boot immediately, or any other key for command prompt. Booting [/boot/kernel/kernel]... nothing to autoload yet. jumping to kernel entry at 0x80030000. Copyrigstray vector interrupt 2029 ht (c) 1992-2002 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-CURRENT #3: Thu Mar 7 01:42:46 EST 2002 jake@k7.locore.ca:/usr/p4/sparc64/sys/sparc64/compile/GENERIC Preloaded elf kernel "/boot/kernel/kernel" at 0x802aa000. Timecounter "tick" frequency 360007390 Hz cpu0: Sun Microsystems UltraSparc-II Processor (360.01 MHZ CPU) nexus0: pcib0: on nexus0 pcib0: SUNW,psycho: impl 0, version 4: ign 7c0 bus range 0 to 1; PCI bus 0 initialializing counter-timer Timecounter "counter-timer" frequency 1000000 Hz DVMA map: fe000000 to ffffffff ofw_pci_init_intr: could not get interrupt map properties pci0: on pcib0 ebus0: revision 0x01 ebus0: mem 0x71000000-0x717fffff,0x70000000-0x70ffffff at device 1.0 on pci0 ebus0: addr 0x140072f000-0x140072f003,0x140072c000-0x140072c003,0x140072a000-0x140072a003,0x1400728000-0x1400728003,0x1400726000-0x1400726003 (no driver attached) ebus0: addr 0x1400724000-0x1400724003 (no driver attached) ebus0: addr 0x1400504000-0x1400504002 (no driver attached) ebus0: addr 0x1400500000-0x1400500007 (no driver attached) ebus0: addr 0x1400400000-0x140040007f irq 43 (no driver attached) ebus0: addr 0x14003083f8-0x14003083ff irq 41 (no driver attached) ebus0: addr 0x14003062f8-0x14003062ff irq 42 (no driver attached) ebus0: addr 0x1400700000-0x140070000f,0x1400300398-0x1400300399,0x14003043bc-0x14003043cb irq 34 (no driver attached) ebus0: addr 0x1400720000-0x1400720003,0x1400706000-0x140070600f,0x14003023f0-0x14003023f7 irq 39 (no driver attached) eeprom0: addr 0x1400000000-0x1400001fff on ebus0 eeprom0: model mk48t59 eeprom0: hostid 80b8df28 ebus0: addr 0x1000000000-0x10000fffff (no driver attached) hme0: mem 0x10100000-0x10107fff irq 33 at device 1.1 on pci0 hme0: Ethernet address: 08:00:20:b8:df:28 miibus0: on hme0 qsphy0: on miibus0 qsphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto sym0: <875> port 0x1000-0x10ff mem 0x1010a000-0x1010afff,0x10108000-0x101080ff irq 32 at device 3.0 on pci0 sym0: No NVRAM, ID 7, Fast-20, SE, parity checking sym1: <875> port 0x1400-0x14ff mem 0x1010e000-0x1010efff,0x1010c000-0x1010c0ff irq 38 at device 3.1 on pci0 sym1: No NVRAM, ID 7, Fast-20, SE, parity checking pcib1: at device 5.0 on pci0 pci1: on pcib1 pci1: at device 0.0 (no driver attached) hme1: mem 0x4000000-0x4007fff irq 0 at device 0.1 on pci1 panic: psycho_route_interrupt Debugger("panic") Stopped at Debugger+0x1c: ta %xcc, 1 db> -- SUN Microsystems Oy PL 112, Lars Sonckin kaari 12, 02601 ESPOO, Finland Tomi Vainio (System Support Engineer) +358 9 52556300 hotline email: Tomi.Vainio@Sun.COM +358 9 52556252 fax To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Fri Mar 15 11:31:49 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 2FB4937B404 for ; Fri, 15 Mar 2002 11:31:43 -0800 (PST) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g2FJVhlv020195; Fri, 15 Mar 2002 11:31:43 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g2FJUSNm016609; Fri, 15 Mar 2002 11:30:28 -0800 (PST) Date: Fri, 15 Mar 2002 11:30:28 -0800 From: "David O'Brien" To: "Stephen F. Combs" Cc: freebsd-sparc@FreeBSD.org Subject: Re: Questions on the Sparc64 port of FreeBSD Message-ID: <20020315113028.A96088@dragon.nuxi.com> Reply-To: obrien@FreeBSD.org References: <3C921652.D9B47272@indsys.ge.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3C921652.D9B47272@indsys.ge.com>; from steve.combs@indsys.ge.com on Fri, Mar 15, 2002 at 10:42:10AM -0500 X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, Mar 15, 2002 at 10:42:10AM -0500, Stephen F. Combs wrote: > General Question..... I have access to an old Ultra1/170E (Ultra1, ... > i.e. does it support Ultra1 with the HME and onboard SCSI (also have > SBUS SCSI card as well, don't remember the model, but 'tis fast/wide > SCSI...) does it have ANY Creator3D (ffb) device support??? HME is supported. But I am having a problem with my U1 (non-E) with an HME add-in card. It would be great if you would try your U1E to see how well we work on it. Several people I know have U1E's, but none have tried FreeBSD on them yet. The on-board SCSI is not supported yet, so you'll have to use an NFS /. This is not such a bad thing. I still use NFS / for my ultrasparc and it does have a supported IDE and SCSI devices. I have no idea about the FB support -- all the main developers are using serial console. > Not going to have a LOT of time, but got hardware and am willing to > devote some hours/week to the project... It would be great if you could try the latest kernels on your various UltraSparc hardware so we can get a better idea of what works and what doesn't. -- -- David (obrien@FreeBSD.org) P.S. > Salem, VA Ah, my own home town (well Roanoke actually). :-) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Fri Mar 15 11:47:27 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from ext-ch1gw-1.online-age.net (ext-ch1gw-1.online-age.net [216.34.191.35]) by hub.freebsd.org (Postfix) with ESMTP id AD7C237B428; Fri, 15 Mar 2002 11:47:03 -0800 (PST) Received: from int-ch1gw-1.online-age.net (int-ch1gw-1 [3.159.232.65]) by ext-ch1gw-1.online-age.net (8.9.3+Sun/8.9.1/990426-RLH) with ESMTP id OAA20403; Fri, 15 Mar 2002 14:47:02 -0500 (EST) Received: from plvctnet1edcge.edc.ge.com (localhost [127.0.0.1]) by int-ch1gw-1.online-age.net (8.9.3+Sun/8.9.1/990426-RLH) with ESMTP id OAA23721; Fri, 15 Mar 2002 14:47:01 -0500 (EST) Received: from combs.salem.ge.com (combs.salem.ge.com [3.29.5.200]) by plvctnet1edcge.edc.ge.com (Postfix) with ESMTP id A199E66DB; Fri, 15 Mar 2002 14:47:15 -0500 (EST) Received: from indsys.ge.com (localhost [127.0.0.1]) by combs.salem.ge.com (Postfix) with ESMTP id B017E159A3; Fri, 15 Mar 2002 14:46:55 -0500 (EST) Message-ID: <3C924FAF.A14112B5@indsys.ge.com> Date: Fri, 15 Mar 2002 14:46:55 -0500 From: "Stephen F. Combs" Organization: GE Drive Systems, Salem, VA X-Mailer: Mozilla 4.79 [en] (X11; U; SunOS 5.7 sun4u) X-Accept-Language: en MIME-Version: 1.0 To: obrien@FreeBSD.org Cc: freebsd-sparc@FreeBSD.org Subject: Re: Questions on the Sparc64 port of FreeBSD References: <3C921652.D9B47272@indsys.ge.com> <20020315113028.A96088@dragon.nuxi.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org IF I get my internet access back up, I'll D/L the iso image and we'll see.... I've got the Ultra1 at home and an Ultra60 here at work (with enough spare disk space so I can put a small boot on it....)... Where you from (in roanoke....)? I've lived here for the last 40+ years (moved here when I was 10... and haven't found a place that I liked better AND could get the right job....)... I'm thinking about purchasing an Ultra10 for a "Home" machine... we'll see... obrien@FreeBSD.org wrote: > > On Fri, Mar 15, 2002 at 10:42:10AM -0500, Stephen F. Combs wrote: > > General Question..... I have access to an old Ultra1/170E (Ultra1, > ... > > i.e. does it support Ultra1 with the HME and onboard SCSI (also have > > SBUS SCSI card as well, don't remember the model, but 'tis fast/wide > > SCSI...) does it have ANY Creator3D (ffb) device support??? > > HME is supported. But I am having a problem with my U1 (non-E) with an > HME add-in card. It would be great if you would try your U1E to see how > well we work on it. Several people I know have U1E's, but none have > tried FreeBSD on them yet. The on-board SCSI is not supported yet, so > you'll have to use an NFS /. This is not such a bad thing. I still use > NFS / for my ultrasparc and it does have a supported IDE and SCSI > devices. > > I have no idea about the FB support -- all the main developers are using > serial console. > > > Not going to have a LOT of time, but got hardware and am willing to > > devote some hours/week to the project... > > It would be great if you could try the latest kernels on your various > UltraSparc hardware so we can get a better idea of what works and what > doesn't. > > -- > -- David (obrien@FreeBSD.org) > > P.S. > Salem, VA > Ah, my own home town (well Roanoke actually). :-) -- Stephen F. Combs Lead Security Analyst, Global Security/e-Business GE Industrial Systems phone: 540.387.8828 Salem, VA mobile: 540.520.4032 E-Mail: steve.combs@indsys.ge.com dialcom: 278.8828 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Fri Mar 15 12:46:57 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by hub.freebsd.org (Postfix) with SMTP id E97F037B41A for ; Fri, 15 Mar 2002 12:46:45 -0800 (PST) Received: (qmail 21255 invoked by uid 0); 15 Mar 2002 20:46:44 -0000 Received: from pd9538a61.dip.t-dialin.net (HELO forge.local) (217.83.138.97) by mail.gmx.net (mp013-rz3) with SMTP; 15 Mar 2002 20:46:44 -0000 Received: from tmm by forge.local with local (Exim 3.34 #1) id 16lyb9-0004HB-00 for ; Fri, 15 Mar 2002 21:46:47 +0100 Date: Fri, 15 Mar 2002 21:46:47 +0100 From: Thomas Moestl To: freebsd-sparc@freebsd.org Subject: Re: Booting E220R/U60 Message-ID: <20020315204647.GB2739@crow.dom2ip.de> Mail-Followup-To: freebsd-sparc@freebsd.org References: <15506.15966.910390.854026@gargle.gargle.HOWL> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <15506.15966.910390.854026@gargle.gargle.HOWL> User-Agent: Mutt/1.3.27i Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, 2002/03/15 at 20:33:02 +0200, Tomi Vainio - Sun Finland - wrote: > hme1: mem 0x4000000-0x4007fff irq 0 at device 0.1 on pci1 > panic: psycho_route_interrupt > Debugger("panic") > Stopped at Debugger+0x1c: ta %xcc, 1 > db> I think I've found and fixed the bug that has caused this; an updated kernel is available at: http://people.FreeBSD.org/~tmm/kernel-pcidiag.bz2 (configured to be able to mount root over NFS). This was also compiled with some options to turn on more diagnostics output, so that I should be able to find out what is wrong if the fix does not work. Thanks for the report! - thomas -- Thomas Moestl http://www.tu-bs.de/~y0015675/ http://people.FreeBSD.org/~tmm/ PGP fingerprint: 1C97 A604 2BD0 E492 51D0 9C0F 1FE6 4F1D 419C 776C To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Fri Mar 15 16:51:52 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from dragon.nuxi.com (trang.nuxi.com [66.92.13.169]) by hub.freebsd.org (Postfix) with ESMTP id 06B2337B416 for ; Fri, 15 Mar 2002 16:51:50 -0800 (PST) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.12.2/8.12.2) with ESMTP id g2G0polv069567 for ; Fri, 15 Mar 2002 16:51:50 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.2/8.12.2/Submit) id g2G0oZvt069566 for sparc64@freebsd.org; Fri, 15 Mar 2002 16:50:35 -0800 (PST) Date: Fri, 15 Mar 2002 16:50:35 -0800 From: "David O'Brien" To: sparc64@freebsd.org Subject: 20020314 GCC tarball Message-ID: <20020315165035.A69539@dragon.nuxi.com> Reply-To: obrien@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i X-Operating-System: FreeBSD 5.0-CURRENT Organization: The NUXI BSD group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org fetch http://people.freebsd.org/~obrien/sparc64/hosted-gcc_20020314.tar.bz2 $ md5 hosted-gcc_20020314.tar.bz2 MD5 (hosted-gcc_20020314.tar.bz2) = bd1f998e9346fd862c74ecc0517927ca You should not need to dink with the compiler this time. Note that this is just the compiler -- you can now use binutils from /usr/src/gnu/usr.bin/binutils. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Fri Mar 15 21:27: 1 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from k6.locore.ca (k6.locore.ca [198.96.117.170]) by hub.freebsd.org (Postfix) with ESMTP id ED39B37B405 for ; Fri, 15 Mar 2002 21:26:58 -0800 (PST) Received: (from jake@localhost) by k6.locore.ca (8.11.6/8.11.6) id g2G5XvO67191 for freebsd-sparc@freebsd.org; Sat, 16 Mar 2002 00:33:57 -0500 (EST) (envelope-from jake) Date: Sat, 16 Mar 2002 00:33:57 -0500 From: Jake Burkholder To: freebsd-sparc@freebsd.org Subject: HEADS UP: p4 and cvsup users Message-ID: <20020316003357.G52298@locore.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I've branched the whole cvs tree in perforce, so that people using cvsup to get it will get a full workable source tree. If you want the whole tree, people using perforce directly should update their views to look something like: View: //depot/projects/sparc64/... ///... If you're using cvsup you'll get a whole lot more stuff on your next update. A supfile for getting the p4 tree in checkout mode is available here: http://people.freebsd.org/~jake/sparc64/sparc64-supfile Jake To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Fri Mar 15 21:47:20 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from k6.locore.ca (k6.locore.ca [198.96.117.170]) by hub.freebsd.org (Postfix) with ESMTP id 5628D37B400 for ; Fri, 15 Mar 2002 21:47:18 -0800 (PST) Received: (from jake@localhost) by k6.locore.ca (8.11.6/8.11.6) id g2G5sFC67305; Sat, 16 Mar 2002 00:54:15 -0500 (EST) (envelope-from jake) Date: Sat, 16 Mar 2002 00:54:15 -0500 From: Jake Burkholder To: Tomi Vainio - Sun Finland - Cc: freebsd-sparc@FreeBSD.ORG Subject: Re: Booting E220R/U60 Message-ID: <20020316005415.H52298@locore.ca> References: <15506.15966.910390.854026@gargle.gargle.HOWL> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <15506.15966.910390.854026@gargle.gargle.HOWL>; from Tomi.Vainio@Sun.COM on Fri, Mar 15, 2002 at 08:33:02PM +0200 Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Apparently, On Fri, Mar 15, 2002 at 08:33:02PM +0200, Tomi Vainio - Sun Finland - said words to the effect of; > Hi, > > I tried to boot one of our lab machines using stuff from > http://people.freebsd.org/~jake/sparc64/ but it panicked when kernel > found second network interface. I have some machines to play with if > you need test resources. Yes, we could definetly use more test resources. What other machines do you have? Can you provide remote access at all? Thanks, Jake To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message From owner-freebsd-sparc Sat Mar 16 16:19:30 2002 Delivered-To: freebsd-sparc@freebsd.org Received: from beppo.feral.com (beppo.feral.com [192.67.166.79]) by hub.freebsd.org (Postfix) with ESMTP id 4034337B402 for ; Sat, 16 Mar 2002 16:19:27 -0800 (PST) Received: from mailhost.feral.com (mjacob@mailhost.feral.com [192.67.166.1]) by beppo.feral.com (8.11.3/8.11.3) with ESMTP id g2H0JQf83845 for ; Sat, 16 Mar 2002 16:19:26 -0800 (PST) (envelope-from mjacob@feral.com) Date: Sat, 16 Mar 2002 16:19:26 -0800 (PST) From: Matthew Jacob X-Sender: mjacob@beppo Reply-To: mjacob@feral.com To: freebsd-sparc@freebsd.org Subject: got myself up and running on a U10 (FWIW) Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-sparc@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org after crushing aside the FreeBSD diskless stuff which I really don't care for that much :-).... but in running NIS, I amusingly have: mjacob@slinx 2 -> id uid=2994274304(mjacob) gid=1677721600 groups=1677721600, 100(engineering), 0(wheel), 3(sys) which, err, um, doesn't really match with: beppo.feral.com > id uid=31154(mjacob) gid=100 groups=100, 0(wheel), 5(operator), 6(mail) :-) Not too bad an experience. I can get booted about one out of 5 efforts, which isn't bad for where things are at right now. -matt To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-sparc" in the body of the message