It’s not a module, a
modeline (a line describing one of your monitor’s modes). One of your problems
might be the lack of a proper mode for your monitor. Usually modes are built-in or deduced from EDID, but occasionally, (especially for funny modelines) they’re not there. Here’s an example: suppose I want to enable a mode for 1680x1050 at a “60Hz” refresh rate. Then I would run:
Code:
$ gtf 1680 1050 60
# 1680x1050 @ 60.00 Hz (GTF) hsync: 65.22 kHz; pclk: 147.14 MHz
Modeline "1680x1050_60.00" 147.14 1680 1784 1968 2256 1050 1051 1054 1087 -HSync +Vsync
Then, I would edit my xorg.conf
Code:
Section "Monitor"
### Comment all HorizSync and VertSync values to use DDC:
Identifier "Monitor0"
ModelName "LCD Panel 1680x1050"
### Comment all HorizSync and VertSync values to use DDC:
HorizSync 31.5 - 90.0
VertRefresh 59.9 - 60.1
Option "dpms"
# 1680x1050 @ 60.00 Hz (GTF) hsync: 65.22 kHz; pclk: 147.14 MHz
Modeline "1680x1050_60.00" 147.14 1680 1784 1968 2256 1050 1051 1054 1087 -HSync +Vsync
EndSection
Section "Device"
Identifier "Videocard0"
Driver "vesa"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1680x1050_60.00"
EndSubSection
EndSection
The green section is added (from the output of gtf), and the red section is modified to use the new modeline. HTH.