From owner-freebsd-sparc64@FreeBSD.ORG Wed Mar 25 14:11:30 2009 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 79A941065673 for ; Wed, 25 Mar 2009 14:11:30 +0000 (UTC) (envelope-from marius@alchemy.franken.de) Received: from alchemy.franken.de (alchemy.franken.de [194.94.249.214]) by mx1.freebsd.org (Postfix) with ESMTP id 093058FC21 for ; Wed, 25 Mar 2009 14:11:29 +0000 (UTC) (envelope-from marius@alchemy.franken.de) Received: from alchemy.franken.de (localhost [127.0.0.1]) by alchemy.franken.de (8.14.3/8.14.3/ALCHEMY.FRANKEN.DE) with ESMTP id n2PEBSxu082641; Wed, 25 Mar 2009 15:11:28 +0100 (CET) (envelope-from marius@alchemy.franken.de) Received: (from marius@localhost) by alchemy.franken.de (8.14.3/8.14.3/Submit) id n2PEBSDa082640; Wed, 25 Mar 2009 15:11:28 +0100 (CET) (envelope-from marius) Date: Wed, 25 Mar 2009 15:11:28 +0100 From: Marius Strobl To: Mark Linimon Message-ID: <20090325141128.GA82584@alchemy.franken.de> References: <20090325122338.GB74306@alchemy.franken.de> <20090325132514.GA3020@lonesome.com> <20090325140324.GA28007@alchemy.franken.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090325140324.GA28007@alchemy.franken.de> User-Agent: Mutt/1.4.2.3i Cc: freebsd-sparc64@freebsd.org Subject: Re: UltraSparc III still busted - X server causes hang, current panics at boot 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, 25 Mar 2009 14:11:31 -0000 On Wed, Mar 25, 2009 at 03:03:24PM +0100, Marius Strobl wrote: > On Wed, Mar 25, 2009 at 08:25:14AM -0500, Mark Linimon wrote: > > Right now x11 isn't buildable on sparc64-current no matter what the > > machine (e.g. US-II as well). We are in the middle of a great deal > > of ports churn for various reasons. I have asked for some help from > > various port maintainers to fix the problems. However, not everyone > > has access to a sparc64 machine for testing. > > > > FYI, with ports as of 20090322 the only problem hit compile- > wise when installing xorg on a V210 running r189533 was that > xorg-drivers depends on xf86-video-intel, which is marked > amd64 and i386 only. This was with WITHOUT_HAL defined though. > X.Org 7.4 might have additional problems on a more recent > CURRENT, which are unlikely to be sparc64-specific then > however. Could you please commit the patch below using your > portmngr-hat? > Hrm, thinking about it the version below is probably more appropriate as it also takes other architectures like powerpc into account. Marius Index: Makefile =================================================================== RCS file: /usr/data/bsd/cvs/fbsd/ports/x11-drivers/xorg-drivers/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- Makefile 23 Jan 2009 16:28:02 -0000 1.14 +++ Makefile 25 Mar 2009 14:10:56 -0000 @@ -25,7 +25,6 @@ .endif VIDEO_ON= ati \ - intel \ mach64 \ nv \ r128 \ @@ -38,6 +37,10 @@ VIDEO_ON+= openchrome .endif +.if ${ARCH} == "amd64" || ${ARCH} == "i386" +VIDEO_ON+= intel +.endif + VIDEO_OFF= apm ark \ chips cirrus cyrix \ dummy \