This is the card that was integrated into my motherboard. The mobo is a Gigabyte GA-8IG1000MK or something like that.
Here is how I got this working with Debian testing (downloaded on 10th April 2005:
1. When X setup asked me about what graphicscard driver I wanted to use, i selected "i810"
Then, it successfully probed my monitor
2. Complete the rest of setup
At this point, X will start and work, but won't let you set the resolution higher than 800 x 600
3. reboot and enter your mobo's setup utility. Set the memory buffer to 8MB
4. Boot back into linux, run "apt-get 865patch" as root. This will install a patch that allows X to address all its video memory
5. Edit your XConfig-4 file with the resolutions and colour depth you want. Mine originally looked like this:
Code:
Section "Screen"
Identifier "Default Screen"
Device "Generic Video Card"
Monitor "IBM L170 TFT"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "800x600" "640x480"
EndSubSection
EndSection
Add the resolutions on the 'Modes' line. I want 1024x768 for all resolutions (although I really don't need 1, 2, or 4 bit) so here is what the afformentioned section of config file looks like now:
Be sure to make a backup of your config file before editing.
IMPORTANT: Don't copy the stuff below verbatim - this is just an example. Do the editing yourself, cause you might end up with different names for your video card and monitor.
Code:
Section "Screen"
Identifier "Default Screen"
Device "Generic Video Card"
Monitor "IBM L170 TFT"
DefaultDepth 16
SubSection "Display"
Depth 1
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 4
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 8
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 15
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 16
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
EndSubSection
EndSection