bj0320
04-01-03, 03:18 PM
Just want to share you, it might help you also.
Eventually, I made it work fine. But only in 4x AGP mode.
If you are suffering the same problem I had before.
Try this - (Detail is included in README)
edit os-registry.c, and make the following changes:
- static int NVreg_ReqAGPRate = 7;
+ static int NVreg_ReqAGPRate = 4; /* force AGP Rate to 4x */
and then remove the two leading underscores:
- { "__ReqAGPRate", &NVreg_ReqAGPRate },
+ { "ReqAGPRate", &NVreg_ReqAGPRate },
Then recompile and load the new kernel module.
And with following option in XFree86Config,
Option "NvAgp" "2"
Eventually, I made it work fine. But only in 4x AGP mode.
If you are suffering the same problem I had before.
Try this - (Detail is included in README)
edit os-registry.c, and make the following changes:
- static int NVreg_ReqAGPRate = 7;
+ static int NVreg_ReqAGPRate = 4; /* force AGP Rate to 4x */
and then remove the two leading underscores:
- { "__ReqAGPRate", &NVreg_ReqAGPRate },
+ { "ReqAGPRate", &NVreg_ReqAGPRate },
Then recompile and load the new kernel module.
And with following option in XFree86Config,
Option "NvAgp" "2"