xorg + nv + amd64 + 6800gt

Yamagi

Possessed With Psi Powers
Staff member
Da mir meine alte Geforce 5950 Ultra zu laut war, habe ich sie verkauft und mir dafür eine Geforce 6800GT geholt. Diese wird allerdings noch nicht vom nv-Treiber unterstüzt. Wenn ich Xorg (Version 6.8.1) starte, bricht er mit folgender Fehlermeldung ab:

Code:
No supported device found

Da ich das 5.3-RELEASE unter amd64 nutze, sind die Binary-Treiber von nVidida natürlich keine Alternative. Daher meine Frage. Gibt es einen Weg diese Karte mit X zu nutzen, oder muss ich warten bis eine neue Version mit Unterstüzung erscheint?

Natürlich habe ich die Forensuche und Google bemüht, aber nichts brauchbares gefunden. Vielleicht habe ich mich auch einfach zu blöd angestellt...

Hier noch mal meine xorg.conf:

Code:
Section "ServerLayout"
	Identifier     "Layout0"
	Screen      0  "Screen0" 0 0
	InputDevice    "Keyboard0" "CoreKeyboard"
	InputDevice    "Mouse0" "CorePointer"
	Option	    "BlankTime" "10"
	Option	    "StandbyTime" "20"
	Option	    "SuspendTime" "30"
	Option	    "OffTime" "40"
EndSection

Section "Files"
EndSection

Section "Module"
	Load  "freetype"
	Load  "extmod"
	Load  "glx"
	Load  "dri"
	Load  "dbe"
	Load  "record"
	Load  "xtrap"
	Load  "type1"
	Load  "speedo"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "SysMouse"
	Option	    "Device" "/dev/sysmouse"
	Option	    "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "keyboard"
	Option	    "XkbModel" "pc105"
	Option	    "XkbLayout" "de"
EndSection

Section "Monitor"

### Uncomment if you don't want to default to DDC:
	Identifier   "Monitor0"
 ### Uncomment if you don't want to default to DDC:
#	HorizSync    30.0 - 85.0
#	VertRefresh  50.0 - 160.0
	ModeLine     "1152x864" 121.5 1152 1232 1360 1600 864 865 868 900 +hsync +vsync
EndSection

Section "Device"
	Identifier  "Card0"
	Driver      "nv"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
		Modes    "1152x864" "1024x768" "800x600" "640x480"
	EndSubSection
EndSection
 
Das Problem hat sich gelöst. Ich habe ein diff für nv_driv.o gefunden, welches die Karte hinein patcht!
 
Back
Top