Xorg and intel 945G integrated Graphics controller on FreeBSD-6.0

Question : Xorg and intel 945G integrated Graphics controller on FreeBSD-6.0

Hi,
I would like to know if someone have already  succed on installing  the i810 driver  on FreeBSD 6.0 . Or  if we can use an other driver to  run Xorg with the  intel 945G intergrated Graphics controller  .

Thanks in advance.


Solution: Xorg and intel 945G integrated Graphics controller on FreeBSD-6.0

I recently installed FreeBSD 6 on my HP Pavilion dv1240 laptop (which uses the i810 driver) with no problems. Here is my xorg.conf file:

Section “ServerLayout”
Identifier     “X.org Configured”
Screen      0  “Screen0” 0 0
InputDevice    “Mouse0” “CorePointer”
InputDevice    “Keyboard0” “CoreKeyboard”
EndSection

Section “Files”
RgbPath      “/usr/X11R6/lib/X11/rgb”
ModulePath   “/usr/X11R6/lib/modules”
FontPath     “/usr/X11R6/lib/X11/fonts/TTF/”
FontPath     “/usr/X11R6/lib/X11/fonts/misc/”
FontPath     “/usr/X11R6/lib/X11/fonts/Type1/”
FontPath     “/usr/X11R6/lib/X11/fonts/CID/”
FontPath     “/usr/X11R6/lib/X11/fonts/75dpi/”
FontPath     “/usr/X11R6/lib/X11/fonts/100dpi/”
EndSection

Section “Module”
Load  “extmod”
Load  “glx”
Load  “dri”
Load  “dbe”
Load  “record”
Load  “xtrap”
Load  “type1”
Load  “freetype”
EndSection

Section “InputDevice”
Identifier  “Keyboard0”
Driver      “kbd”
EndSection

Section “InputDevice”
Identifier  “Mouse0”
Driver      “mouse”
Option          “Protocol” “auto”
Option          “Device” “/dev/sysmouse”
Option          “ZAxisMapping” “4 5 6 7”
EndSection

Section “Monitor”
#DisplaySize        310   180      # mm
Identifier   “Monitor0”
VendorName   “CPT”
ModelName    “1772”
ModeLine “1280×768” 103.0 1280 1360 1496 1712 768 769 772 802
EndSection

Section “Device”
### Available Driver options are:-
### Values: : integer, : float, : “True”/”False”,
### : “String”, : ” Hz/kHz/MHz”
### [arg]: arg optional
#Option     “NoAccel”                  # [
#Option     “SWcursor”                 # [
#Option     “ColorKey”                 # 
#Option     “CacheLines”               # 
#Option     “Dac6Bit”                  # [
#Option     “DRI”                      # [
#Option     “NoDDC”                    # [
#Option     “ShowCache”                # [
#Option     “XvMCSurfaces”             # 
#Option     “PageFlip”                 # [
Identifier  “Card0”
Driver      “i810”
VendorName  “Intel Corporation”
BoardName   “82852/855GM Integrated Graphics Device”
BusID       “PCI:0:2:0”
Option          “DRI”      “on”
EndSection

Section “Screen”
Identifier “Screen0”
Device     “Card0”
Monitor    “Monitor0”
DefaultDepth 24
SubSection “Display”
Viewport   0 0
Depth     24
EndSubSection
EndSection

Section “DRI”
Mode 0666
EndSection