[Bug 167] New: DRI for the ATI AIW 7500 Radeon with XFree86 4.3.0
bugzilla-daemon <[email protected]>
| Newsgroups | gmane.linux.arklinux.bugs |
|---|---|
| Message-ID | <[email protected]> |
https://bugzilla.arklinux.org/bugzilla/show_bug.cgi?id=167
Summary: DRI for the ATI AIW 7500 Radeon with XFree86 4.3.0
Product: Ark Linux
Version: Dockyard
Platform: i586 (PC, Intel)
OS/Version: All
Status: NEW
Severity: Normal
Affects: Hardware Support
Component: XFree86
AssignedTo: [email protected]
ReportedBy: [email protected]
QAContact: [email protected]
Description of Problem:
With a fresh install, Ark Linux is unable to use DRI for the ATI All In Wonder
7500 Radeon (Radeon RV200 QW [7500] rev 0, 64MB video RAM). This is a serious
out of the box hardware configuration issue.
Version-Release number of selected component (if applicable):
XFree86-4.3.0-7ark
How Reproducible:
Install Ark Linux on a system with any 7x00 Radeon to reproduce.
Additional Information: (Work-around/hack)
To get DRI working, I added the following to the following files:
--- /etc/modules.conf 2003-05-22 22:03:01.000000000 -0400
+++ modules.conf 2003-05-22 22:42:36.000000000 -0400
@@ -1,3 +1,10 @@
+# /etc/modules.conf
+# Module Configuration file
+
+# Gary Greene <[email protected]> : fix for AGP modules not loading
+# automatically.
+alias char-major-10-175 agpgart
+alias char-major-226-0 agpgart
+
+
--- /etc/X11/prefdm 2003-05-22 22:02:40.000000000 -0400
+++ prefdm 2003-05-22 23:14:50.000000000 -0400
@@ -2,6 +2,33 @@
PATH=/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin
+# Gary Greene <[email protected]>: fix it so the AGP module
+# loads at init 5.
+modprobe -ks agpgart
+
+# Gary Greene <[email protected]>: This is a nasty little
+# hack to get DRI support. We load the driver necessary for the
+# installed video card. The file that gets read in is normally
+# created at install time.
+if [ -f /etc/sysconfig/drivideo ]; then
+ . /etc/sysconfig/drivideo
+ if [ "$DRIVIDEO" = i810 ]; then
+ modprobe -ks i810
+ elif [ "$DRIVIDEO" = i830 ]; then
+ modprobe -ks i830
+ elif [ "$DRIVIDEO" = mga ]; then
+ modprobe -ks mga
+ elif [ "$DRIVIDEO" = r128 ]; then
+ modprobe -ks r128
+ elif [ "$DRIVIDEO" = radeon ]; then
+ modprobe -ks radeon
+ elif [ "$DRIVIDEO" = sis ]; then
+ modprobe -ks sis
+ elif [ "$DRIVIDEO" = tdfx ]; then
+ modprobe -ks tdfx
+ fi
+fi
+
# shut down any graphical boot that might exist
if [ -x /usr/bin/rhgb-client ]; then
/usr/bin/rhgb-client -quit
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
You are the QA contact for the bug, or are watching the QA contact.