一直聽說kernel2.6有包含radeon7500的drm支援
可是我要怎麼知道他被啟動了呢
以前用mandrake kernel2.4時
在lsmod裡會看到xdm-drm radeon之類的東西
可是現在用gentoo kernel2.6
執行lsmod就沒看到了
實在不知道自己的顯示卡是不是白白被放在電腦裡
我該怎麼做
xfree-drm
Moderator: Forums Team
motherboard 晶片的驅動程式也要載入
下面是我自己 compile 2.6 kernel source 裡的選項
=========================
<M> /dev/agpgart (AGP Support)
< > ALI chipset support
< > ATI chipset support
< > AMD Irongate, 761, and 762 chipset support
< > AMD Opteron/Athlon64 on-CPU GART support
< > Intel 440LX/BX/GX, I8xx and E7x05 chipset support
< > NVIDIA nForce/nForce2 chipset support
< > SiS chipset support
< > Serverworks LE/HE chipset support
<M> VIA chipset support
=========================
我的晶片是 VIA
在 /etc/modules.autoload.d/kernel-2.6加入
agpgart
還要加
via_agp
下面是我自己 compile 2.6 kernel source 裡的選項
=========================
<M> /dev/agpgart (AGP Support)
< > ALI chipset support
< > ATI chipset support
< > AMD Irongate, 761, and 762 chipset support
< > AMD Opteron/Athlon64 on-CPU GART support
< > Intel 440LX/BX/GX, I8xx and E7x05 chipset support
< > NVIDIA nForce/nForce2 chipset support
< > SiS chipset support
< > Serverworks LE/HE chipset support
<M> VIA chipset support
=========================
我的晶片是 VIA
在 /etc/modules.autoload.d/kernel-2.6加入
agpgart
還要加
via_agp
gentoo linux
ˋ(′~‵")ˊ
ˋ(′~‵")ˊ
嗯,如您所說ww wrote: 我的晶片是 VIA
在 /etc/modules.autoload.d/kernel-2.6加入
agpgart
還要加
via_agp
研究了一整天
終於會動了
方法如下:
在/etc/modules.autoload.d/kernel-2.6加入
via-agp
agpgart
radeon
在XF86config裡加入
Load "glx"
Load "dri"
Section "Device"
Identifier "** ATI Radeon (generic) [radeon]"
Driver "radeon"
Option "AGPMode" "4"
Option "EnablePageFlip" "True"
VideoRam 65536
Section "DRI"
Mode 0666
EndSection
3D加速就被支援了
kevwalker@gentoo kevwalker $ glxgears
4290 frames in 5.0 seconds = 858.000 FPS
5100 frames in 5.0 seconds = 1020.000 FPS
5101 frames in 5.0 seconds = 1020.200 FPS
5070 frames in 5.0 seconds = 1014.000 FPS
5101 frames in 5.0 seconds = 1020.200 FPS
5100 frames in 5.0 seconds = 1020.000 FPS
5100 frames in 5.0 seconds = 1020.000 FPS
5101 frames in 5.0 seconds = 1020.200 FPS
5101 frames in 5.0 seconds = 1020.200 FPS
=Kev=