From owner-freebsd-sparc64@FreeBSD.ORG Sun Mar 21 00:30:04 2010 Return-Path: Delivered-To: freebsd-sparc64@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8680A106566C for ; Sun, 21 Mar 2010 00:30:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 756878FC12 for ; Sun, 21 Mar 2010 00:30:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o2L0U41o051306 for ; Sun, 21 Mar 2010 00:30:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o2L0U4mY051303; Sun, 21 Mar 2010 00:30:04 GMT (envelope-from gnats) Date: Sun, 21 Mar 2010 00:30:04 GMT Message-Id: <201003210030.o2L0U4mY051303@freefall.freebsd.org> To: freebsd-sparc64@FreeBSD.org From: Peter Jeremy Cc: Subject: Re: sparc64/144900: [patch] SPARC64 Floating point fixes X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Peter Jeremy List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Mar 2010 00:30:04 -0000 The following reply was made to PR sparc64/144900; it has been noted by GNATS. From: Peter Jeremy To: Marius Strobl Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: sparc64/144900: [patch] SPARC64 Floating point fixes Date: Sun, 21 Mar 2010 11:28:32 +1100 --cvVnyQ+4j833TQvp Content-Type: multipart/mixed; boundary="mP3DRpeJDSE+ciuQ" Content-Disposition: inline --mP3DRpeJDSE+ciuQ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2010-Mar-20 21:49:41 +0100, Marius Strobl wr= ote: >On Sat, Mar 20, 2010 at 08:11:20PM +1100, Peter Jeremy wrote: >> - Parts of the emulator code must be compiled with no-strict-aliasing >> specified to function correctly. CFLAGS is updated to include the >> relevant gcc option. (This will add -fno-strict-aliasing to all of >> libc - which is excessive but I don't believe it's possible to compile >> only part of libc that way). > >Could you please elaborate on what exactly breaks when compiling >with strict aliasing rules? I think there actually is a way to >limit -no-strict-aliasing to the emulator part but I'd like to >understand what's going on and make sure there's no way it can >be solved by the code affected before turning it on. OK. I spent some time looking at fpu_explode.c and came up with the attached patch which seems to remove the requirement for=20 no-strict-aliasing (and I think the code looks cleaner as well). --=20 Peter Jeremy --mP3DRpeJDSE+ciuQ Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="sparc_fpu.diff2" Content-Transfer-Encoding: quoted-printable Index: lib/libc/sparc64/fpu/fpu_explode.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /usr/ncvs/src/lib/libc/sparc64/fpu/fpu_explode.c,v retrieving revision 1.8.2.1 diff -u -r1.8.2.1 fpu_explode.c --- lib/libc/sparc64/fpu/fpu_explode.c 3 Aug 2009 08:13:06 -0000 1.8.2.1 +++ lib/libc/sparc64/fpu/fpu_explode.c 21 Mar 2010 00:24:51 -0000 @@ -258,14 +261,12 @@ struct fpn *fp; int type, reg; { - u_int32_t s, *sp; - u_int64_t l[2]; - void *vl =3D l; + u_int32_t s; + u_int64_t l0, l1; =20 if (type =3D=3D FTYPE_LNG || type =3D=3D FTYPE_DBL || type =3D=3D FTYPE_E= XT) { - l[0] =3D __fpu_getreg64(reg & ~1); - sp =3D vl; - fp->fp_sign =3D sp[0] >> 31; + l0 =3D __fpu_getreg64(reg & ~1); + fp->fp_sign =3D l0 >> 63; } else { s =3D __fpu_getreg(reg); fp->fp_sign =3D s >> 31; @@ -273,7 +274,7 @@ fp->fp_sticky =3D 0; switch (type) { case FTYPE_LNG: - s =3D __fpu_xtof(fp, l[0]); + s =3D __fpu_xtof(fp, l0); break; =20 case FTYPE_INT: @@ -285,12 +286,13 @@ break; =20 case FTYPE_DBL: - s =3D __fpu_dtof(fp, sp[0], sp[1]); + s =3D __fpu_dtof(fp, (u_int32_t)(l0 >>32), (u_int32_t)l0); break; =20 case FTYPE_EXT: - l[1] =3D __fpu_getreg64((reg & ~1) + 2); - s =3D __fpu_qtof(fp, sp[0], sp[1], sp[2], sp[3]); + l1 =3D __fpu_getreg64((reg & ~1) + 2); + s =3D __fpu_qtof(fp, (u_int32_t)(l0 >>32), (u_int32_t)l0, + (u_int32_t)(l1 >>32), (u_int32_t)l1); break; =20 default: --mP3DRpeJDSE+ciuQ-- --cvVnyQ+4j833TQvp Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.14 (FreeBSD) iEYEARECAAYFAkulaDAACgkQ/opHv/APuIetpgCeOw1phQBmIylc66Ym4x7Sm6tq J7kAoMFI7KFt+hoR1sMLdPwUPjEB6aPI =lfMD -----END PGP SIGNATURE----- --cvVnyQ+4j833TQvp-- From owner-freebsd-sparc64@FreeBSD.ORG Sun Mar 21 13:30:08 2010 Return-Path: Delivered-To: freebsd-sparc64@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 756B1106566C for ; Sun, 21 Mar 2010 13:30:08 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4AB648FC0C for ; Sun, 21 Mar 2010 13:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o2LDU86F062277 for ; Sun, 21 Mar 2010 13:30:08 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o2LDU8MO062274; Sun, 21 Mar 2010 13:30:08 GMT (envelope-from gnats) Date: Sun, 21 Mar 2010 13:30:08 GMT Message-Id: <201003211330.o2LDU8MO062274@freefall.freebsd.org> To: freebsd-sparc64@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: sparc64/144900: commit references a PR X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Mar 2010 13:30:08 -0000 The following reply was made to PR sparc64/144900; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: sparc64/144900: commit references a PR Date: Sun, 21 Mar 2010 13:21:05 +0000 (UTC) Author: marius Date: Sun Mar 21 13:18:08 2010 New Revision: 205410 URL: http://svn.freebsd.org/changeset/base/205410 Log: Avoid aliasing which leads to incorrect results when compiling with the default strict aliasing rules. PR: 144900 Submitted by: Peter Jeremy MFC after: 3 days Modified: head/lib/libc/sparc64/fpu/fpu_explode.c Modified: head/lib/libc/sparc64/fpu/fpu_explode.c ============================================================================== --- head/lib/libc/sparc64/fpu/fpu_explode.c Sun Mar 21 13:09:54 2010 (r205409) +++ head/lib/libc/sparc64/fpu/fpu_explode.c Sun Mar 21 13:18:08 2010 (r205410) @@ -139,9 +139,9 @@ __fpu_xtof(fp, i) * a signed or unsigned entity. */ if (fp->fp_sign && (int64_t)i < 0) - *((int64_t*)fp->fp_mant) = -i; + *((int64_t *)fp->fp_mant) = -i; else - *((int64_t*)fp->fp_mant) = i; + *((int64_t *)fp->fp_mant) = i; fp->fp_mant[2] = 0; fp->fp_mant[3] = 0; __fpu_norm(fp); @@ -262,14 +262,12 @@ __fpu_explode(fe, fp, type, reg) struct fpn *fp; int type, reg; { - u_int32_t s, *sp; - u_int64_t l[2]; - void *vl = l; + u_int64_t l0, l1; + u_int32_t s; if (type == FTYPE_LNG || type == FTYPE_DBL || type == FTYPE_EXT) { - l[0] = __fpu_getreg64(reg & ~1); - sp = vl; - fp->fp_sign = sp[0] >> 31; + l0 = __fpu_getreg64(reg & ~1); + fp->fp_sign = l0 >> 63; } else { s = __fpu_getreg(reg); fp->fp_sign = s >> 31; @@ -277,7 +275,7 @@ __fpu_explode(fe, fp, type, reg) fp->fp_sticky = 0; switch (type) { case FTYPE_LNG: - s = __fpu_xtof(fp, l[0]); + s = __fpu_xtof(fp, l0); break; case FTYPE_INT: @@ -289,12 +287,13 @@ __fpu_explode(fe, fp, type, reg) break; case FTYPE_DBL: - s = __fpu_dtof(fp, sp[0], sp[1]); + s = __fpu_dtof(fp, l0 >> 32, l0 & 0xffffffff); break; case FTYPE_EXT: - l[1] = __fpu_getreg64((reg & ~1) + 2); - s = __fpu_qtof(fp, sp[0], sp[1], sp[2], sp[3]); + l1 = __fpu_getreg64((reg & ~1) + 2); + s = __fpu_qtof(fp, l0 >> 32, l0 & 0xffffffff, l1 >> 32, + l1 & 0xffffffff); break; default: _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org" From owner-freebsd-sparc64@FreeBSD.ORG Sun Mar 21 13:30:11 2010 Return-Path: Delivered-To: freebsd-sparc64@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC6E9106566B for ; Sun, 21 Mar 2010 13:30:11 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AB6BB8FC17 for ; Sun, 21 Mar 2010 13:30:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o2LDUB9V062585 for ; Sun, 21 Mar 2010 13:30:11 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o2LDUBgA062577; Sun, 21 Mar 2010 13:30:11 GMT (envelope-from gnats) Date: Sun, 21 Mar 2010 13:30:11 GMT Message-Id: <201003211330.o2LDUBgA062577@freefall.freebsd.org> To: freebsd-sparc64@FreeBSD.org From: Marius Strobl Cc: Subject: Re: sparc64/144900: [patch] SPARC64 Floating point fixes X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Marius Strobl List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 21 Mar 2010 13:30:11 -0000 The following reply was made to PR sparc64/144900; it has been noted by GNATS. From: Marius Strobl To: Peter Jeremy Cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: sparc64/144900: [patch] SPARC64 Floating point fixes Date: Sun, 21 Mar 2010 14:25:51 +0100 On Sun, Mar 21, 2010 at 11:28:32AM +1100, Peter Jeremy wrote: > On 2010-Mar-20 21:49:41 +0100, Marius Strobl wrote: > >On Sat, Mar 20, 2010 at 08:11:20PM +1100, Peter Jeremy wrote: > >> - Parts of the emulator code must be compiled with no-strict-aliasing > >> specified to function correctly. CFLAGS is updated to include the > >> relevant gcc option. (This will add -fno-strict-aliasing to all of > >> libc - which is excessive but I don't believe it's possible to compile > >> only part of libc that way). > > > >Could you please elaborate on what exactly breaks when compiling > >with strict aliasing rules? I think there actually is a way to > >limit -no-strict-aliasing to the emulator part but I'd like to > >understand what's going on and make sure there's no way it can > >be solved by the code affected before turning it on. > > OK. I spent some time looking at fpu_explode.c and came up with the > attached patch which seems to remove the requirement for > no-strict-aliasing (and I think the code looks cleaner as well). Thanks; I've decided to go that route instead of adding -fno-strict-aliasing as the code seems to be otherwise fine when it comes to strict aliasing rules, i.e. the type-punning used in fpu_qp.c is safe according to the GCC documentation. Marius From owner-freebsd-sparc64@FreeBSD.ORG Mon Mar 22 11:07:12 2010 Return-Path: Delivered-To: freebsd-sparc64@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 99C761065676 for ; Mon, 22 Mar 2010 11:07:12 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 892088FC21 for ; Mon, 22 Mar 2010 11:07:12 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o2MB7CsW015163 for ; Mon, 22 Mar 2010 11:07:12 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o2MB7Bab015161 for freebsd-sparc64@FreeBSD.org; Mon, 22 Mar 2010 11:07:11 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 22 Mar 2010 11:07:11 GMT Message-Id: <201003221107.o2MB7Bab015161@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-sparc64@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-sparc64@FreeBSD.org X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Mar 2010 11:07:12 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o sparc/144900 sparc64 [patch] SPARC64 Floating point fixes o sparc/144867 sparc64 [panic] trap: memory address not aligned booting Sunfi o sparc/142102 sparc64 [nfs] [panic] FreeBSD 8.0 kernel panics on sparc64 whe o sparc/141918 sparc64 [ehci] ehci_interrupt: unrecoverable error, controller s sparc/139134 sparc64 kernel output corruption f sparc/127051 sparc64 [hme] hme interfaces "pause" with the message "device o sparc/119244 sparc64 X11Forwarding to X11 server on sparc crashes Xorg o sparc/119240 sparc64 top has WCPU over 100% on UP system s sparc/119239 sparc64 gdb coredumps on sparc64 o sparc/113556 sparc64 [panic] trap: memory address not aligned; Rebooting... f sparc/108732 sparc64 ping(8) reports 14 digit time on sparc64 s sparc/107087 sparc64 [hang] system is hung during boot from CD o sparc/105048 sparc64 [trm] trm(4) panics on sparc64 o sparc/104428 sparc64 [nullfs] nullfs panics on E4500 (but not E420) o sparc/80890 sparc64 [panic] kmem_malloc(73728): kmem_map too small running o sparc/80410 sparc64 [netgraph] netgraph is causing crash with mpd on sparc o sparc/71729 sparc64 printf in kernel thread causes panic on SPARC 17 problems total. From owner-freebsd-sparc64@FreeBSD.ORG Wed Mar 24 07:54:42 2010 Return-Path: Delivered-To: freebsd-sparc64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A863D106564A for ; Wed, 24 Mar 2010 07:54:42 +0000 (UTC) (envelope-from wooh@wooh.hu) Received: from mail.netidea.hu (netwarehouse.netidea.hu [195.228.254.126]) by mx1.freebsd.org (Postfix) with ESMTP id 662E58FC13 for ; Wed, 24 Mar 2010 07:54:42 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netidea.hu (Postfix) with ESMTP id DE2961286F6; Wed, 24 Mar 2010 08:33:08 +0100 (CET) X-Virus-Scanned: amavisd-new at netidea.hu Received: from mail.netidea.hu ([127.0.0.1]) by localhost (mail.netidea.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id DsMcEmSX5Vww; Wed, 24 Mar 2010 08:33:06 +0100 (CET) Received: from [192.168.0.113] (catv-89-134-206-111.catv.broadband.hu [89.134.206.111]) by mail.netidea.hu (Postfix) with ESMTP id 51684125504; Wed, 24 Mar 2010 08:33:06 +0100 (CET) Message-ID: <4BA9C0AC.3080801@wooh.hu> Date: Wed, 24 Mar 2010 08:35:08 +0100 From: Adam PAPAI User-Agent: Thunderbird 2.0.0.24 (Windows/20100228) MIME-Version: 1.0 To: FreeBSD-Questions@FreeBSD.org, freebsd-sparc64@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: freebsd-update(8) under sparc64? Why is it not available? X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Mar 2010 07:54:42 -0000 I feel that the FreeBSD project doesn't have enough sparc64 build machine. Is this the reason why binary freebsd-update is not available for sparc64 arch? The only methods for upgrading sparc64 are reinstall or build from source? -- Adam PAPAI From owner-freebsd-sparc64@FreeBSD.ORG Wed Mar 24 07:57:10 2010 Return-Path: Delivered-To: freebsd-sparc64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 235591065670; Wed, 24 Mar 2010 07:57:10 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (lefty.soaustin.net [66.135.55.46]) by mx1.freebsd.org (Postfix) with ESMTP id 056B58FC08; Wed, 24 Mar 2010 07:57:09 +0000 (UTC) Received: by mail.soaustin.net (Postfix, from userid 502) id 996218C085; Wed, 24 Mar 2010 02:57:09 -0500 (CDT) Date: Wed, 24 Mar 2010 02:57:09 -0500 From: Mark Linimon To: Adam PAPAI Message-ID: <20100324075709.GC13561@lonesome.com> References: <4BA9C0AC.3080801@wooh.hu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4BA9C0AC.3080801@wooh.hu> User-Agent: Mutt/1.5.18 (2008-05-17) Cc: FreeBSD-Questions@FreeBSD.org, freebsd-sparc64@freebsd.org Subject: Re: freebsd-update(8) under sparc64? Why is it not available? X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Mar 2010 07:57:10 -0000 You're the first one to ask in a while. Since our userbase is small, and developer time is limited, we've never set it up. Right now I'd just be happy if I can get all the major ports to work :-) mcl From owner-freebsd-sparc64@FreeBSD.ORG Wed Mar 24 08:02:38 2010 Return-Path: Delivered-To: freebsd-sparc64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C0B781065670; Wed, 24 Mar 2010 08:02:38 +0000 (UTC) (envelope-from wooh@wooh.hu) Received: from mail.netidea.hu (netwarehouse.netidea.hu [195.228.254.126]) by mx1.freebsd.org (Postfix) with ESMTP id 7B4DD8FC0A; Wed, 24 Mar 2010 08:02:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netidea.hu (Postfix) with ESMTP id 40C4B128DC8; Wed, 24 Mar 2010 09:00:29 +0100 (CET) X-Virus-Scanned: amavisd-new at netidea.hu Received: from mail.netidea.hu ([127.0.0.1]) by localhost (mail.netidea.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id eHcyMn7EH-Dp; Wed, 24 Mar 2010 09:00:27 +0100 (CET) Received: from [192.168.0.113] (catv-89-134-206-111.catv.broadband.hu [89.134.206.111]) by mail.netidea.hu (Postfix) with ESMTP id C1D42128DD4; Wed, 24 Mar 2010 09:00:26 +0100 (CET) Message-ID: <4BA9C719.9090601@wooh.hu> Date: Wed, 24 Mar 2010 09:02:33 +0100 From: Adam PAPAI User-Agent: Thunderbird 2.0.0.24 (Windows/20100228) MIME-Version: 1.0 To: Mark Linimon References: <4BA9C0AC.3080801@wooh.hu> <20100324075709.GC13561@lonesome.com> In-Reply-To: <20100324075709.GC13561@lonesome.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD-Questions@FreeBSD.org, freebsd-sparc64@freebsd.org Subject: Re: freebsd-update(8) under sparc64? Why is it not available? X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Mar 2010 08:02:38 -0000 Mark Linimon wrote: > You're the first one to ask in a while. Since our userbase is small, > and developer time is limited, we've never set it up. > > Right now I'd just be happy if I can get all the major ports to work :-) > > mcl If I can do something for this project, please tell me what to do :) I have 2xNetra T1, 1xNetra X1, 1xFire V100, so I have some sparc64 machines to test/build if this could help. -- Adam PAPAI From owner-freebsd-sparc64@FreeBSD.ORG Wed Mar 24 14:43:39 2010 Return-Path: Delivered-To: freebsd-sparc64@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F12861065678 for ; Wed, 24 Mar 2010 14:43:39 +0000 (UTC) (envelope-from andreas@cyberdelic.org) Received: from mail-ew0-f227.google.com (mail-ew0-f227.google.com [209.85.219.227]) by mx1.freebsd.org (Postfix) with ESMTP id 7907F8FC25 for ; Wed, 24 Mar 2010 14:43:39 +0000 (UTC) Received: by ewy27 with SMTP id 27so1776540ewy.13 for ; Wed, 24 Mar 2010 07:43:38 -0700 (PDT) MIME-Version: 1.0 Received: by 10.213.25.78 with SMTP id y14mr7445577ebb.75.1269439956756; Wed, 24 Mar 2010 07:12:36 -0700 (PDT) Date: Wed, 24 Mar 2010 15:12:36 +0100 Message-ID: From: Andreas To: freebsd-sparc64@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Subject: Dmesg sunblade 1000 X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Mar 2010 14:43:40 -0000 Copyright (c) 1992-2009 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 =A0 =A0 =A0 =A0The Regents of the University of California. All rights rese= rved. FreeBSD is a registered trademark of The FreeBSD Foundation. FreeBSD 8.0-RELEASE #0: Sat Nov 21 22:40:34 UTC 2009 =A0 =A0root@araz.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC real memory =A0=3D 2147483648 (2048 MB) avail memory =3D 2079744000 (1983 MB) cpu0: Sun Microsystems UltraSparc-III Processor (900.00 MHz CPU) cpu1: Sun Microsystems UltraSparc-III Processor (900.00 MHz CPU) FreeBSD/SMP: Multiprocessor System Detected: 2 CPUs ispfw: registered firmware ispfw: registered firmware ispfw: registered firmware ispfw: registered firmware ispfw: registered firmware ispfw: registered firmware ispfw: registered firmware ispfw: registered firmware ispfw: registered firmware ispfw: registered firmware ispfw: registered firmware ispfw: registered firmware ispfw: registered firmware ispfw: registered firmware ispfw: registered firmware kbd0 at kbdmux0 nexus0: nexus0: mem 0x40000400000-0x40000400047 type memory-controller (no driver attached) nexus0: mem 0x40000c00000-0x40000c00047 type memory-controller (no driver attached) pcib0: mem 0x40004700000-0x40004717fff,0x40004410000-0x4000441004f,0x7ffee000000-0x7ff= ee0000ff irq 563,560,561,564,550 on nexus0 pcib0: Schizo, version 4, IGN 0x8, bus B, 33MHz pcib0: DVMA map: 0xc0000000 to 0xffffffff pcib0: [FILTER] pcib0: [FILTER] pcib0: [FILTER] pcib0: [FILTER] pci0: on pcib0 ebus0: mem 0x7d000000-0x7dffffff,0x7e000000-0x7e7fffff at device 5.0 on pci0 ebus0: addr 0-0x1fffff (no driver attached) ebus0: addr 0x100000000-0x1000fffff (no driver attached) ebus0: addr 0x10000000e-0x100000028,0x100728000-0x100728003,0x10030002e-0x10030002f,0x1= 00300600-0x100300607 (no driver attached) ebus0: addr 0x10000002e-0x10000002f,0x10000002d irq 35 (no driver attached) ebus0: addr 0x100000030-0x100000031 irq 35 (no driver attached) ebus0: addr 0x100000032-0x100000037 (no driver attached) ebus0: