Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 7 Dec 2010 14:47:58 GMT
From:      Jason Bacon <jwbacon@tds.net>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/152889: xorg-drivers default options kill batch install
Message-ID:  <201012071447.oB7Elw46071454@red.freebsd.org>
Resent-Message-ID: <201012071450.oB7Eo9Rs027787@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         152889
>Category:       ports
>Synopsis:       xorg-drivers default options kill batch install
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Tue Dec 07 14:50:08 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator:     Jason Bacon
>Release:        8.1-release
>Organization:
Acadix Consulting, LLC
>Environment:
FreeBSD ibookbsd.jbacon.dyndns.org 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Sun Jul 18 11:09:21 UTC 2010     root@xserve.lan.xcllnt.net:/usr/obj/usr/src/sys/GENERIC  powerpc
>Description:
The default options for xorg-drivers includes the openchrome driver, which is only for x86-based architectures.  This prevents an unattended xorg installation on other architectures.
>How-To-Repeat:
Build xorg-drivers with default options on a non-x86 system.
>Fix:
See attached patch.

Patch attached with submission follows:

--- Makefile.orig	2010-12-05 07:56:28.000000000 -0600
+++ Makefile	2010-12-05 08:03:35.000000000 -0600
@@ -33,7 +33,7 @@
 
 .if ${ARCH} == "sparc64"
 VIDEO_ON+=	sunffb
-.else
+.elif ${ARCH} == "amd86" || ${ARCH} == "i386" || ${ARCH} == "ia64"
 VIDEO_ON+=	openchrome
 .endif
 


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201012071447.oB7Elw46071454>