[KLUG Members] ATI Radeon & HP Pavilion ze4400

Adam Williams members@kalamazoolinux.org
Tue, 07 Oct 2003 10:27:26 -0400


--=-RYed2e5Qn6zTPmjeFJWI
Content-Type: text/plain
Content-Transfer-Encoding: 7bit

> I have to install Linux on a Pavilion ze4400.  First off, yes, these
> laptops ****SUCK****, even running  Windows XPeee Pro.  So glad I bought
> my Toshiba and not one of these wrecks.
> pci bus 0x0001 cardnum 0x05 function 0x00: vendor 0x1002 device 0x4336
>  ATI Technologies Inc Radeon Mobility U1

I figured it out.  The Mobility U1 isn't supported "officially", but it
is in essence a rebranded chip of another derivation so by forcing the
Chip ID I made it work.

--=-RYed2e5Qn6zTPmjeFJWI
Content-Disposition: attachment; filename=XF86Config
Content-Type: text/plain; name=XF86Config; charset=UTF-8
Content-Transfer-Encoding: 7bit

# XFree86 4 configuration created by redhat-config-xfree86

Section "ServerLayout"
	Identifier     "Default Layout"
	Screen      	0  "Screen0" 0 0
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
	InputDevice    "DevInputMice" "AlwaysCore"
EndSection

Section "Files"

# RgbPath is the location of the RGB database.  Note, this is the name of the 
# file minus the extension (like ".txt" or ".db").  There is normally
# no need to change the default.
# Multiple FontPath entries are allowed (they are concatenated together)
# By default, Red Hat 6.0 and later now use a font server independent of
# the X server to render fonts.
	RgbPath      "/usr/X11R6/lib/X11/rgb"
	FontPath     "unix/:7100"
EndSection

Section "Module"
	Load  "dbe"
	Load  "extmod"
	Load  "fbdevhw"
	Load  "glx"
	Load  "record"
	Load  "freetype"
	Load  "type1"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "keyboard"
	Option	    "XkbRules" "xfree86"
	Option	    "XkbModel" "pc105"
	Option	    "XkbLayout" "us"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "IMPS/2"
	Option	    "Device" "/dev/psaux"
	Option	    "ZAxisMapping" "4 5"
	Option	    "Emulate3Buttons" "no"
EndSection

Section "InputDevice"
	Identifier  "DevInputMice"
	Driver      "mouse"
	Option	    "Protocol" "IMPS/2"
	Option	    "Device" "/dev/input/mice"
	Option	    "ZAxisMapping" "4 5"
	Option	    "Emulate3Buttons" "no"
EndSection

Section "Monitor"
	Identifier   "Generic Laptop Display Panel 1024x768"
	VendorName   "Monitor Vendor"
	ModelName    "unknown"
	HorizSync    31.5 - 48.5
	VertRefresh  40.0 - 70.0
	DisplaySize  240 184
	Option      "dpms"
EndSection

Section "Device"
	Identifier  "ATI Radeon Mobility"
        Driver      "radeon"
        VendorName  "Videocard vendor"
        BoardName   "ATI Radeon Mobility U1"
        ChipID      0x4242
	Option      "AGPMode" "4"
        Option      "NoAccel"
EndSection

Section "Device"
        Identifier "Linux Frame Buffer"
        Driver     "fbdev"
        BoardName  "Unknown"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "ATI Radeon Mobility"
        Monitor    "Generic Laptop Display Panel 1024x768"
        DefaultDepth     16
        SubSection "Display"
                Depth     16
                Modes    "1024x768"
        EndSubSection
EndSection

Section "DRI"
	Group        0
	Mode         0666
EndSection


--=-RYed2e5Qn6zTPmjeFJWI--