public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-user] Blank screen in X, no errors in Xorg.log
@ 2011-10-02  6:51 Adam Carter
  2011-10-02  7:45 ` Volker Armin Hemmann
  2011-10-02  9:14 ` Volker Armin Hemmann
  0 siblings, 2 replies; 8+ messages in thread
From: Adam Carter @ 2011-10-02  6:51 UTC (permalink / raw
  To: gentoo-user

HW = Chipset: "ATI Radeon HD 4250  " (Chipset = 0x9715)

Config is mostly taken from a working amd64 + radeon system.
linux-firmware is installed. No errors or warning in the the xorg
logs, but startx returns a blank screen on both the VGA and HDMI
outputs. It also fails with no xorg.conf. There's no process called X
or anything related to X, if i ssh in from another machine and run
'pgrep -lf X' as root.

When using fglrx;
proxy adam # tail Xorg.0.log
[   458.503] (II) fglrx(0):     Desc: ATI FireGL DRM kernel module
[   458.503] (II) fglrx(0): Kernel Module version matches driver.
[   458.503] (II) fglrx(0): Kernel Module Build Time Information:
[   458.503] (II) fglrx(0):     Build-Kernel UTS_RELEASE:        3.0.4-gentoo
[   458.503] (II) fglrx(0):     Build-Kernel MODVERSIONS:        no
[   458.503] (II) fglrx(0):     Build-Kernel __SMP__:            yes
[   458.503] (II) fglrx(0):     Build-Kernel PAGE_SIZE:          0x1000
[   458.503] (II) fglrx(0): [uki] register handle = 0x00004000
[   458.526] (II) fglrx(0): DRI initialization successfull
[   458.526] (II) fglrx(0): FBADPhys: 0xc0000000 FBMappedSize: 0x0100e000
proxy adam #


When using the radeon driver;
proxy adam # tail /root/Xorg.0.log
[   123.799] GC: 0 objects of 72 bytes = 0 total bytes 0 private allocs
[   123.799] CURSOR: 0 objects of 8 bytes = 0 total bytes 0 private allocs
[   123.799] CURSOR_BITS: 0 objects of 8 bytes = 0 total bytes 0 private allocs
[   123.799] DBE_WINDOW: 0 objects of 24 bytes = 0 total bytes 0 private allocs
[   123.799] TOTAL: 1 objects, 120 bytes, 0 allocs
[   123.800] (II) Open ACPI successful (/var/run/acpid.socket)
[   123.800] (II) APM registered successfully
[   123.800] (II) RADEON(0): RADEONScreenInit d0000000 0 0
[   123.862] Output CRT1 disable success
[   123.871] Blank

What's my next step?


xorg.conf is;
Section "ServerLayout"
        Identifier     "Layout"
        Screen      0  "aticonfig-Screen[0]-0" 0 0
EndSection

Section "Files"
#       These are not needed for fglrx, but will be for radeon
        ModulePath "/usr/lib64/xorg/modules"
        ModulePath "/usr/lib64/opengl/xorg-x11/extensions/"
EndSection

Section "ServerFlags"
        Option      "Xinerama" "off"
        #Option  "blank time"  "5"  # Blank the screen after 5 minutes (Fake)
        Option  "standby time"  "10"  # Turn off screen after 10 minutes (DPMS)
        Option  "suspend time"  "20"  # Full suspend after 20 minutes
        Option  "off time"  "30"  # Turn off after half an hour
EndSection

Section "Monitor"
        Identifier   "aticonfig-Monitor[0]-0"
        Option      "DPMS" "true"
        Option      "PreferredMode" "1440x900"
EndSection

Section "Device"
        Identifier  "aticonfig-Device[0]-0"
        Driver      "fglrx"
        #Driver      "radeon"
        Option      "backingstore" "true"
        #BusID       "PCI:1:0:0"
        #BusID       "PCI:0@1:0:1"
        # dynamicclocks is for powersaving but not impl on flgrx
        #Option      "DynamicClocks" "on"
        #Option      "RenderAccel" "true" - not supported by flgrx
        #Option      "AccelMethod" "exa" - not supported by flgrx
        #Option      "UseFastTLS" "1"
        #Option      "EnablePageFlip" "true" - not supported by flgrx
EndSection

Section "Screen"
        Identifier "aticonfig-Screen[0]-0"
        Device     "aticonfig-Device[0]-0"
        Monitor    "aticonfig-Monitor[0]-0"
        DefaultDepth     24
        SubSection "Display"
                Viewport   0 0
                Depth     24
        EndSubSection
EndSection

Section "Extensions"
        Option      "Composite" "Enable"
EndSection

Section "InputClass"
        Identifier "keyboard-all"
        Driver "evdev"
        #Option "XkbLayout" "us,cz"
        #Option "XkbModel" "logitech_g15"
        Option "XkbRules" "xorg"
        #Option "XkbOptions"
"grp:alt_shift_toggle,grp:switch,grp_led:scroll,compose:rwin,terminate:ctrl_alt_bksp"
        Option "XkbOptions" "terminate:ctrl_alt_bksp"
        #Option "XkbVariant" ",qwerty"
        MatchIsKeyboard "on"
EndSection



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-user] Blank screen in X, no errors in Xorg.log
  2011-10-02  6:51 [gentoo-user] Blank screen in X, no errors in Xorg.log Adam Carter
@ 2011-10-02  7:45 ` Volker Armin Hemmann
  2011-10-02  8:14   ` Adam Carter
  2011-10-02  9:14 ` Volker Armin Hemmann
  1 sibling, 1 reply; 8+ messages in thread
From: Volker Armin Hemmann @ 2011-10-02  7:45 UTC (permalink / raw
  To: gentoo-user

Am Sonntag 02 Oktober 2011, 17:51:19 schrieb Adam Carter:
> HW = Chipset: "ATI Radeon HD 4250  " (Chipset = 0x9715)
> 
> Config is mostly taken from a working amd64 + radeon system.
> linux-firmware is installed. No errors or warning in the the xorg
> logs, but startx returns a blank screen on both the VGA and HDMI
> outputs. It also fails with no xorg.conf. There's no process called X
> or anything related to X, if i ssh in from another machine and run
> 'pgrep -lf X' as root.
> 
> When using fglrx;
> proxy adam # tail Xorg.0.log
> [   458.503] (II) fglrx(0):     Desc: ATI FireGL DRM kernel module
> [   458.503] (II) fglrx(0): Kernel Module version matches driver.
> [   458.503] (II) fglrx(0): Kernel Module Build Time Information:
> [   458.503] (II) fglrx(0):     Build-Kernel UTS_RELEASE:       
> 3.0.4-gentoo [   458.503] (II) fglrx(0):     Build-Kernel MODVERSIONS:     
>   no [   458.503] (II) fglrx(0):     Build-Kernel __SMP__:            yes [
>   458.503] (II) fglrx(0):     Build-Kernel PAGE_SIZE:          0x1000 [  
> 458.503] (II) fglrx(0): [uki] register handle = 0x00004000
> [   458.526] (II) fglrx(0): DRI initialization successfull
> [   458.526] (II) fglrx(0): FBADPhys: 0xc0000000 FBMappedSize: 0x0100e000
> proxy adam #
> 
> 
> When using the radeon driver;
> proxy adam # tail /root/Xorg.0.log
> [   123.799] GC: 0 objects of 72 bytes = 0 total bytes 0 private allocs
> [   123.799] CURSOR: 0 objects of 8 bytes = 0 total bytes 0 private allocs
> [   123.799] CURSOR_BITS: 0 objects of 8 bytes = 0 total bytes 0 private
> allocs [   123.799] DBE_WINDOW: 0 objects of 24 bytes = 0 total bytes 0
> private allocs [   123.799] TOTAL: 1 objects, 120 bytes, 0 allocs
> [   123.800] (II) Open ACPI successful (/var/run/acpid.socket)
> [   123.800] (II) APM registered successfully
> [   123.800] (II) RADEON(0): RADEONScreenInit d0000000 0 0
> [   123.862] Output CRT1 disable success
> [   123.871] Blank
> 
> What's my next step?
> 
> 
> xorg.conf is;
> Section "ServerLayout"
>         Identifier     "Layout"
>         Screen      0  "aticonfig-Screen[0]-0" 0 0
> EndSection
> 
> Section "Files"
> #       These are not needed for fglrx, but will be for radeon
>         ModulePath "/usr/lib64/xorg/modules"
>         ModulePath "/usr/lib64/opengl/xorg-x11/extensions/"
> EndSection
> 
> Section "ServerFlags"
>         Option      "Xinerama" "off"
>         #Option  "blank time"  "5"  # Blank the screen after 5 minutes
> (Fake) Option  "standby time"  "10"  # Turn off screen after 10 minutes
> (DPMS) Option  "suspend time"  "20"  # Full suspend after 20 minutes Option
>  "off time"  "30"  # Turn off after half an hour
> EndSection
> 
> Section "Monitor"
>         Identifier   "aticonfig-Monitor[0]-0"
>         Option      "DPMS" "true"
>         Option      "PreferredMode" "1440x900"
> EndSection
> 
> Section "Device"
>         Identifier  "aticonfig-Device[0]-0"
>         Driver      "fglrx"
>         #Driver      "radeon"
>         Option      "backingstore" "true"
>         #BusID       "PCI:1:0:0"
>         #BusID       "PCI:0@1:0:1"
>         # dynamicclocks is for powersaving but not impl on flgrx
>         #Option      "DynamicClocks" "on"
>         #Option      "RenderAccel" "true" - not supported by flgrx
>         #Option      "AccelMethod" "exa" - not supported by flgrx
>         #Option      "UseFastTLS" "1"
>         #Option      "EnablePageFlip" "true" - not supported by flgrx
> EndSection
> 
> Section "Screen"
>         Identifier "aticonfig-Screen[0]-0"
>         Device     "aticonfig-Device[0]-0"
>         Monitor    "aticonfig-Monitor[0]-0"
>         DefaultDepth     24
>         SubSection "Display"
>                 Viewport   0 0
>                 Depth     24
>         EndSubSection
> EndSection
> 
> Section "Extensions"
>         Option      "Composite" "Enable"
> EndSection
> 
> Section "InputClass"
>         Identifier "keyboard-all"
>         Driver "evdev"
>         #Option "XkbLayout" "us,cz"
>         #Option "XkbModel" "logitech_g15"
>         Option "XkbRules" "xorg"
>         #Option "XkbOptions"
> "grp:alt_shift_toggle,grp:switch,grp_led:scroll,compose:rwin,terminate:ctrl_
> alt_bksp" Option "XkbOptions" "terminate:ctrl_alt_bksp"
>         #Option "XkbVariant" ",qwerty"
>         MatchIsKeyboard "on"
> EndSection

post Xorg.0.log?

-- 
#163933



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-user] Blank screen in X, no errors in Xorg.log
  2011-10-02  7:45 ` Volker Armin Hemmann
@ 2011-10-02  8:14   ` Adam Carter
  0 siblings, 0 replies; 8+ messages in thread
From: Adam Carter @ 2011-10-02  8:14 UTC (permalink / raw
  To: gentoo-user

Xorg.0.log;

[   824.120]
X.Org X Server 1.10.4
Release Date: 2011-08-19
[   824.121] X Protocol Version 11, Revision 0
[   824.121] Build Operating System: Linux 3.0.4-gentoo x86_64 Gentoo
[   824.121] Current Operating System: Linux proxy 3.0.4-gentoo #2 SMP
Sat Oct 1 18:19:30 EST 2011 x86_64
[   824.121] Kernel command line: root=/dev/md126 md=126,/dev/sdb2,/dev/sdc2
[   824.121] Build Date: 01 October 2011  04:54:19AM
[   824.121]
[   824.121] Current version of pixman: 0.22.2
[   824.121] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[   824.121] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   824.121] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Oct  3
03:49:49 2011
[   824.121] (==) Using config file: "/etc/X11/xorg.conf"
[   824.121] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[   824.122] (==) ServerLayout "Layout"
[   824.122] (**) |-->Screen "aticonfig-Screen[0]-0" (0)
[   824.122] (**) |   |-->Monitor "aticonfig-Monitor[0]-0"
[   824.122] (**) |   |-->Device "aticonfig-Device[0]-0"
[   824.122] (**) Option "StandbyTime" "10"
[   824.122] (**) Option "SuspendTime" "20"
[   824.122] (**) Option "OffTime" "30"
[   824.122] (**) Option "Xinerama" "off"
[   824.122] (==) Automatically adding devices
[   824.122] (==) Automatically enabling devices
[   824.122] (==) FontPath set to:
	/usr/share/fonts/misc/,
	/usr/share/fonts/TTF/,
	/usr/share/fonts/OTF/,
	/usr/share/fonts/Type1/,
	/usr/share/fonts/100dpi/,
	/usr/share/fonts/75dpi/
[   824.122] (**) ModulePath set to
"/usr/lib64/xorg/modules,/usr/lib64/opengl/xorg-x11/extensions/"
[   824.122] (**) Extension "Composite" is enabled
[   824.123] (II) The server relies on udev to provide the list of
input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[   824.123] (II) Loader magic: 0x7df160
[   824.123] (II) Module ABI versions:
[   824.123] 	X.Org ANSI C Emulation: 0.4
[   824.123] 	X.Org Video Driver: 10.0
[   824.123] 	X.Org XInput driver : 12.2
[   824.123] 	X.Org Server Extension : 5.0
[   824.124] (--) PCI:*(0:1:5:0) 1002:9715:1458:d000 rev 0, Mem @
0xd0000000/268435456, 0xfdfe0000/65536, 0xfde00000/1048576, I/O @
0x0000ee00/256
[   824.124] (II) Open ACPI successful (/var/run/acpid.socket)
[   824.124] (II) LoadModule: "extmod"
[   824.125] (II) Loading /usr/lib64/xorg/modules/extensions/libextmod.so
[   824.125] (II) Module extmod: vendor="X.Org Foundation"
[   824.125] 	compiled for 1.10.4, module version = 1.0.0
[   824.125] 	Module class: X.Org Server Extension
[   824.125] 	ABI class: X.Org Server Extension, version 5.0
[   824.125] (II) Loading extension MIT-SCREEN-SAVER
[   824.125] (II) Loading extension XFree86-VidModeExtension
[   824.125] (II) Loading extension XFree86-DGA
[   824.125] (II) Loading extension DPMS
[   824.125] (II) Loading extension XVideo
[   824.126] (II) Loading extension XVideo-MotionCompensation
[   824.126] (II) Loading extension X-Resource
[   824.126] (II) LoadModule: "dbe"
[   824.126] (II) Loading /usr/lib64/xorg/modules/extensions/libdbe.so
[   824.126] (II) Module dbe: vendor="X.Org Foundation"
[   824.126] 	compiled for 1.10.4, module version = 1.0.0
[   824.126] 	Module class: X.Org Server Extension
[   824.126] 	ABI class: X.Org Server Extension, version 5.0
[   824.126] (II) Loading extension DOUBLE-BUFFER
[   824.126] (II) LoadModule: "glx"
[   824.126] (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so
[   824.127] (II) Module glx: vendor="X.Org Foundation"
[   824.127] 	compiled for 1.10.4, module version = 1.0.0
[   824.127] 	ABI class: X.Org Server Extension, version 5.0
[   824.127] (==) AIGLX enabled
[   824.127] (II) Loading extension GLX
[   824.127] (II) LoadModule: "record"
[   824.127] (II) Loading /usr/lib64/xorg/modules/extensions/librecord.so
[   824.127] (II) Module record: vendor="X.Org Foundation"
[   824.127] 	compiled for 1.10.4, module version = 1.13.0
[   824.127] 	Module class: X.Org Server Extension
[   824.127] 	ABI class: X.Org Server Extension, version 5.0
[   824.127] (II) Loading extension RECORD
[   824.127] (II) LoadModule: "dri"
[   824.127] (II) Loading /usr/lib64/xorg/modules/extensions/libdri.so
[   824.128] (II) Module dri: vendor="X.Org Foundation"
[   824.128] 	compiled for 1.10.4, module version = 1.0.0
[   824.128] 	ABI class: X.Org Server Extension, version 5.0
[   824.128] (II) Loading extension XFree86-DRI
[   824.128] (II) LoadModule: "dri2"
[   824.128] (II) Loading /usr/lib64/xorg/modules/extensions/libdri2.so
[   824.128] (II) Module dri2: vendor="X.Org Foundation"
[   824.128] 	compiled for 1.10.4, module version = 1.2.0
[   824.128] 	ABI class: X.Org Server Extension, version 5.0
[   824.128] (II) Loading extension DRI2
[   824.128] (II) LoadModule: "fglrx"
[   824.129] (II) Loading /usr/lib64/xorg/modules/drivers/fglrx_drv.so
[   824.142] (II) Module fglrx: vendor="FireGL - ATI Technologies Inc."
[   824.142] 	compiled for 1.4.99.906, module version = 8.88.7
[   824.142] 	Module class: X.Org Video Driver
[   824.142] (II) Loading sub module "fglrxdrm"
[   824.142] (II) LoadModule: "fglrxdrm"
[   824.142] (II) Loading /usr/lib64/xorg/modules/linux/libfglrxdrm.so
[   824.142] (II) Module fglrxdrm: vendor="FireGL - ATI Technologies Inc."
[   824.142] 	compiled for 1.4.99.906, module version = 8.88.7
[   824.142] (II) ATI Proprietary Linux Driver Version Identifier:8.88.7
[   824.142] (II) ATI Proprietary Linux Driver Release Identifier:
8.881
[   824.142] (II) ATI Proprietary Linux Driver Build Date: Jul 28 2011 17:04:01
[   824.143] (--) using VT number 8

[   824.143] (WW) Falling back to old probe method for fglrx
[   824.159] (II) Loading PCS database from /etc/ati/amdpcsdb
[   824.159] (--) Assigning device section with no busID to primary device
[   824.159] (--) Chipset Supported AMD Graphics Processor (0x9715) found
[   824.159] (WW) fglrx: No matching Device section for instance
(BusID PCI:0@0:17:0) found
[   824.159] (WW) fglrx: No matching Device section for instance
(BusID PCI:0@0:18:0) found
[   824.159] (WW) fglrx: No matching Device section for instance
(BusID PCI:0@0:18:1) found
[   824.159] (WW) fglrx: No matching Device section for instance
(BusID PCI:0@0:18:2) found
[   824.159] (WW) fglrx: No matching Device section for instance
(BusID PCI:0@0:19:0) found
[   824.159] (WW) fglrx: No matching Device section for instance
(BusID PCI:0@0:19:1) found
[   824.159] (WW) fglrx: No matching Device section for instance
(BusID PCI:0@0:19:2) found
[   824.159] (WW) fglrx: No matching Device section for instance
(BusID PCI:0@0:20:0) found
[   824.159] (WW) fglrx: No matching Device section for instance
(BusID PCI:0@0:20:1) found
[   824.159] (WW) fglrx: No matching Device section for instance
(BusID PCI:0@0:20:2) found
[   824.159] (WW) fglrx: No matching Device section for instance
(BusID PCI:0@0:20:3) found
[   824.159] (WW) fglrx: No matching Device section for instance
(BusID PCI:0@0:20:4) found
[   824.159] (WW) fglrx: No matching Device section for instance
(BusID PCI:0@0:20:5) found
[   824.159] (WW) fglrx: No matching Device section for instance
(BusID PCI:0@1:5:1) found
[   824.160] (II) AMD Video driver is running on a device belonging to
a group targeted for this release
[   824.160] (II) AMD Video driver is signed
[   824.160] (II) Loading /usr/lib64/xorg/modules/drivers/fglrx_drv.so
[   824.160] (II) Loading /usr/lib64/xorg/modules/linux/libfglrxdrm.so
[   824.160] (II) fglrx(0): pEnt->device->identifier=0x9553b0
[   824.160] (II) fglrx(0): === [xdl_xs110_atiddxPreInit] === begin
[   824.160] (II) Loading sub module "vgahw"
[   824.160] (II) LoadModule: "vgahw"
[   824.160] (II) Loading /usr/lib64/xorg/modules/libvgahw.so
[   824.160] (II) Module vgahw: vendor="X.Org Foundation"
[   824.160] 	compiled for 1.10.4, module version = 0.1.0
[   824.160] 	ABI class: X.Org Video Driver, version 10.0
[   824.160] (**) fglrx(0): Depth 24, (--) framebuffer bpp 32
[   824.160] (II) fglrx(0): Pixel depth = 24 bits stored in 4 bytes
(32 bpp pixmaps)
[   824.160] (==) fglrx(0): Default visual is TrueColor
[   824.160] (**) fglrx(0): Option "DPMS" "true"
[   824.160] (==) fglrx(0): RGB weight 888
[   824.160] (II) fglrx(0): Using 8 bits per RGB
[   824.160] (==) fglrx(0): Buffer Tiling is ON
[   824.160] (II) Loading sub module "fglrxdrm"
[   824.160] (II) LoadModule: "fglrxdrm"
[   824.160] (II) Loading /usr/lib64/xorg/modules/linux/libfglrxdrm.so
[   824.160] (II) Module fglrxdrm: vendor="FireGL - ATI Technologies Inc."
[   824.160] 	compiled for 1.4.99.906, module version = 8.88.7
[   824.162] ukiDynamicMajor: found major device number 250
[   824.162] ukiDynamicMajor: found major device number 250
[   824.162] ukiOpenByBusid: Searching for BusID PCI:1:5:0
[   824.162] ukiOpenDevice: node name is /dev/ati/card0
[   824.162] ukiOpenDevice: open result is 11, (OK)
[   824.162] ukiOpenByBusid: ukiOpenMinor returns 11
[   824.162] ukiOpenByBusid: ukiGetBusid reports PCI:1:5:0
[   824.162] (==) fglrx(0): NoAccel = NO
[   824.162] (==) fglrx(0): ATI 2D Acceleration Architecture enabled
[   824.163] (--) fglrx(0): Chipset: "ATI Radeon HD 4250  " (Chipset = 0x9715)
[   824.163] (--) fglrx(0): (PciSubVendor = 0x1458, PciSubDevice = 0xd000)
[   824.163] (==) fglrx(0): board vendor info: third party graphics
adapter - NOT original ATI
[   824.163] (--) fglrx(0): Linear framebuffer (phys) at 0xd0000000
[   824.163] (--) fglrx(0): MMIO registers at 0xfdfe0000
[   824.163] (--) fglrx(0): I/O port at 0x0000ee00
[   824.163] (==) fglrx(0): ROM-BIOS at 0x000c0000
[   824.163] (II) fglrx(0): AC Adapter is used
[   824.172] (II) fglrx(0): Primary V_BIOS segment is: 0xc000
[   824.233] (II) Loading sub module "vbe"
[   824.233] (II) LoadModule: "vbe"
[   824.233] (II) Loading /usr/lib64/xorg/modules/libvbe.so
[   824.233] (II) Module vbe: vendor="X.Org Foundation"
[   824.233] 	compiled for 1.10.4, module version = 1.1.0
[   824.233] 	ABI class: X.Org Video Driver, version 10.0
[   824.233] (II) fglrx(0): VESA BIOS detected
[   824.233] (II) fglrx(0): VESA VBE Version 3.0
[   824.233] (II) fglrx(0): VESA VBE Total Mem: 16384 kB
[   824.233] (II) fglrx(0): VESA VBE OEM: ATI ATOMBIOS
[   824.233] (II) fglrx(0): VESA VBE OEM Software Rev: 10.94
[   824.233] (II) fglrx(0): VESA VBE OEM Vendor: (C) 1988-2005, ATI
Technologies Inc.
[   824.233] (II) fglrx(0): VESA VBE OEM Product: RS880
[   824.233] (II) fglrx(0): VESA VBE OEM Product Rev: 01.00
[   824.239] (II) fglrx(0): ATI Video BIOS revision 9 or later detected
[   824.239] (--) fglrx(0): Video RAM: 524288 kByte, Type: DDR2
[   824.239] (II) fglrx(0): PCIE card detected
[   824.239] (--) fglrx(0): Using per-process page tables (PPPT) as GART.
[   824.239] (WW) fglrx(0): board is an unknown third party board,
chipset is supported
[   824.241] (II) fglrx(0): Using adapter: 1:5.0.
[   824.246] (II) fglrx(0): [FB] MC range(MCFBBase = 0xc0000000,
MCFBSize = 0x20000000)
[   824.254] (II) fglrx(0): Interrupt handler installed at IRQ 18.
[   824.255] (II) fglrx(0): RandR 1.2 support is enabled!
[   824.255] (II) fglrx(0): RandR 1.2 rotation support is enabled!
[   824.255] (==) fglrx(0): Center Mode is disabled
[   824.255] (II) Loading sub module "fb"
[   824.255] (II) LoadModule: "fb"
[   824.255] (II) Loading /usr/lib64/xorg/modules/libfb.so
[   824.256] (II) Module fb: vendor="X.Org Foundation"
[   824.256] 	compiled for 1.10.4, module version = 1.0.0
[   824.256] 	ABI class: X.Org ANSI C Emulation, version 0.4
[   824.256] (II) Loading sub module "ddc"
[   824.256] (II) LoadModule: "ddc"
[   824.256] (II) Module "ddc" already built-in
[   825.291] (II) fglrx(0): Finished Initialize PPLIB!
[   825.298] (II) fglrx(0): Output DFP1 using monitor section
aticonfig-Monitor[0]-0
[   825.298] (**) fglrx(0): Option "PreferredMode" "1440x900"
[   825.298] (II) fglrx(0): Output CRT1 has no monitor section
[   825.298] (II) Loading sub module "ddc"
[   825.298] (II) LoadModule: "ddc"
[   825.298] (II) Module "ddc" already built-in
[   825.298] (II) fglrx(0): Connected Display0: DFP1
[   825.299] (II) fglrx(0): Display0 EDID data ---------------------------
[   825.299] (II) fglrx(0): Manufacturer: BNQ  Model: 780a  Serial#: 21573
[   825.299] (II) fglrx(0): Year: 2008  Week: 20
[   825.299] (II) fglrx(0): EDID Version: 1.3
[   825.299] (II) fglrx(0): Digital Display Input
[   825.299] (II) fglrx(0): Max Image Size [cm]: horiz.: 52  vert.: 32
[   825.299] (II) fglrx(0): Gamma: 2.20
[   825.299] (II) fglrx(0): DPMS capabilities: Off
[   825.299] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
[   825.299] (II) fglrx(0): Default color space is primary color space
[   825.299] (II) fglrx(0): First detailed timing is preferred mode
[   825.299] (II) fglrx(0): redX: 0.640 redY: 0.340   greenX: 0.290
greenY: 0.610
[   825.299] (II) fglrx(0): blueX: 0.140 blueY: 0.070   whiteX: 0.310
whiteY: 0.320
[   825.299] (II) fglrx(0): Supported established timings:
[   825.299] (II) fglrx(0): 720x400@70Hz
[   825.299] (II) fglrx(0): 640x480@60Hz
[   825.299] (II) fglrx(0): 640x480@75Hz
[   825.299] (II) fglrx(0): 800x600@60Hz
[   825.299] (II) fglrx(0): 800x600@75Hz
[   825.299] (II) fglrx(0): 832x624@75Hz
[   825.299] (II) fglrx(0): 1024x768@60Hz
[   825.299] (II) fglrx(0): 1024x768@75Hz
[   825.299] (II) fglrx(0): 1280x1024@75Hz
[   825.299] (II) fglrx(0): 1152x864@75Hz
[   825.299] (II) fglrx(0): Manufacturer's mask: 0
[   825.299] (II) fglrx(0): Supported standard timings:
[   825.299] (II) fglrx(0): #0: hsize: 1152  vsize 720  refresh: 60  vid: 113
[   825.299] (II) fglrx(0): #1: hsize: 1280  vsize 800  refresh: 60  vid: 129
[   825.299] (II) fglrx(0): #2: hsize: 1440  vsize 900  refresh: 60  vid: 149
[   825.299] (II) fglrx(0): #3: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[   825.299] (II) fglrx(0): #4: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[   825.299] (II) fglrx(0): #5: hsize: 1600  vsize 1200  refresh: 60  vid: 16553
[   825.299] (II) fglrx(0): #6: hsize: 1920  vsize 1200  refresh: 60  vid: 209
[   825.299] (II) fglrx(0): Supported detailed timing:
[   825.299] (II) fglrx(0): clock: 154.0 MHz   Image Size:  519 x 324 mm
[   825.299] (II) fglrx(0): h_active: 1920  h_sync: 1968  h_sync_end
2000 h_blank_end 2080 h_border: 0
[   825.299] (II) fglrx(0): v_active: 1200  v_sync: 1203  v_sync_end
1209 v_blanking: 1235 v_border: 0
[   825.299] (II) fglrx(0): Serial No: Y5801042SL0
[   825.299] (II) fglrx(0): Ranges: V min: 50 V max: 85 Hz, H min: 31
H max: 94 kHz, PixClock max 175 MHz
[   825.299] (II) fglrx(0): Monitor name: BenQ G2400W
[   825.299] (II) fglrx(0): Supported detailed timing:
[   825.299] (II) fglrx(0): clock: 74.2 MHz   Image Size:  708 x 398 mm
[   825.299] (II) fglrx(0): h_active: 1280  h_sync: 1390  h_sync_end
1430 h_blank_end 1650 h_border: 0
[   825.299] (II) fglrx(0): v_active: 720  v_sync: 725  v_sync_end 730
v_blanking: 750 v_border: 0
[   825.299] (II) fglrx(0): Supported detailed timing:
[   825.299] (II) fglrx(0): clock: 74.2 MHz   Image Size:  708 x 398 mm
[   825.299] (II) fglrx(0): h_active: 1920  h_sync: 2008  h_sync_end
2052 h_blank_end 2200 h_border: 0
[   825.299] (II) fglrx(0): v_active: 540  v_sync: 542  v_sync_end 547
v_blanking: 562 v_border: 0
[   825.299] (II) fglrx(0): Supported detailed timing:
[   825.299] (II) fglrx(0): clock: 27.0 MHz   Image Size:  708 x 398 mm
[   825.299] (II) fglrx(0): h_active: 720  h_sync: 736  h_sync_end 798
h_blank_end 858 h_border: 0
[   825.299] (II) fglrx(0): v_active: 480  v_sync: 489  v_sync_end 495
v_blanking: 525 v_border: 0
[   825.299] (II) fglrx(0): Supported detailed timing:
[   825.299] (II) fglrx(0): clock: 148.5 MHz   Image Size:  708 x 398 mm
[   825.299] (II) fglrx(0): h_active: 1920  h_sync: 2008  h_sync_end
2052 h_blank_end 2200 h_border: 0
[   825.299] (II) fglrx(0): v_active: 1080  v_sync: 1084  v_sync_end
1089 v_blanking: 1125 v_border: 0
[   825.299] (II) fglrx(0): Supported detailed timing:
[   825.299] (II) fglrx(0): clock: 25.2 MHz   Image Size:  530 x 398 mm
[   825.299] (II) fglrx(0): h_active: 640  h_sync: 648  h_sync_end 744
h_blank_end 800 h_border: 8
[   825.299] (II) fglrx(0): v_active: 480  v_sync: 482  v_sync_end 484
v_blanking: 525 v_border: 8
[   825.299] (II) fglrx(0): Number of EDID sections to follow: 1
[   825.299] (II) fglrx(0): EDID (in hex):
[   825.299] (II) fglrx(0): 	00ffffffffffff0009d10a7845540000
[   825.299] (II) fglrx(0): 	14120103803420782ec5c4a3574a9c23
[   825.299] (II) fglrx(0): 	124f52a56b807100810095008180b300
[   825.299] (II) fglrx(0): 	a940d1000101283c80a070b023403020
[   825.299] (II) fglrx(0): 	360007442100001a000000ff00593538
[   825.299] (II) fglrx(0): 	3031303432534c300a20000000fd0032
[   825.299] (II) fglrx(0): 	551f5e11000a202020202020000000fc
[   825.299] (II) fglrx(0): 	0042656e51204732343030570a2001f2
[   825.299] (II) fglrx(0): End of Display0 EDID data --------------------
[   825.299] (II) fglrx(0): Connected Display1: CRT1
[   825.299] (II) fglrx(0): Display1 EDID data ---------------------------
[   825.299] (II) fglrx(0): Manufacturer: BNQ  Model: 7809  Serial#: 21573
[   825.299] (II) fglrx(0): Year: 2008  Week: 20
[   825.299] (II) fglrx(0): EDID Version: 1.3
[   825.299] (II) fglrx(0): Analog Display Input,  Input Voltage
Level: 0.700/0.300 V
[   825.299] (II) fglrx(0): Sync:  Separate  Composite  SyncOnGreen
[   825.299] (II) fglrx(0): Max Image Size [cm]: horiz.: 52  vert.: 32
[   825.299] (II) fglrx(0): Gamma: 2.20
[   825.299] (II) fglrx(0): DPMS capabilities: Off; RGB/Color Display
[   825.299] (II) fglrx(0): Default color space is primary color space
[   825.299] (II) fglrx(0): First detailed timing is preferred mode
[   825.299] (II) fglrx(0): redX: 0.640 redY: 0.340   greenX: 0.290
greenY: 0.610
[   825.299] (II) fglrx(0): blueX: 0.140 blueY: 0.070   whiteX: 0.310
whiteY: 0.320
[   825.299] (II) fglrx(0): Supported established timings:
[   825.299] (II) fglrx(0): 720x400@70Hz
[   825.299] (II) fglrx(0): 640x480@60Hz
[   825.299] (II) fglrx(0): 640x480@75Hz
[   825.299] (II) fglrx(0): 800x600@60Hz
[   825.299] (II) fglrx(0): 800x600@75Hz
[   825.299] (II) fglrx(0): 832x624@75Hz
[   825.299] (II) fglrx(0): 1024x768@60Hz
[   825.299] (II) fglrx(0): 1024x768@75Hz
[   825.299] (II) fglrx(0): 1280x1024@75Hz
[   825.299] (II) fglrx(0): 1152x864@75Hz
[   825.299] (II) fglrx(0): Manufacturer's mask: 0
[   825.299] (II) fglrx(0): Supported standard timings:
[   825.299] (II) fglrx(0): #0: hsize: 1152  vsize 720  refresh: 60  vid: 113
[   825.299] (II) fglrx(0): #1: hsize: 1280  vsize 800  refresh: 60  vid: 129
[   825.299] (II) fglrx(0): #2: hsize: 1440  vsize 900  refresh: 60  vid: 149
[   825.299] (II) fglrx(0): #3: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[   825.299] (II) fglrx(0): #4: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[   825.299] (II) fglrx(0): #5: hsize: 1600  vsize 1200  refresh: 60  vid: 16553
[   825.299] (II) fglrx(0): #6: hsize: 1920  vsize 1200  refresh: 60  vid: 209
[   825.299] (II) fglrx(0): Supported detailed timing:
[   825.299] (II) fglrx(0): clock: 154.0 MHz   Image Size:  519 x 324 mm
[   825.299] (II) fglrx(0): h_active: 1920  h_sync: 1968  h_sync_end
2000 h_blank_end 2080 h_border: 0
[   825.299] (II) fglrx(0): v_active: 1200  v_sync: 1203  v_sync_end
1209 v_blanking: 1235 v_border: 0
[   825.299] (II) fglrx(0): Serial No: Y5801042SL0
[   825.299] (II) fglrx(0): Ranges: V min: 50 V max: 85 Hz, H min: 31
H max: 94 kHz, PixClock max 215 MHz
[   825.299] (II) fglrx(0): Monitor name: BenQ G2400W
[   825.299] (II) fglrx(0): EDID (in hex):
[   825.299] (II) fglrx(0): 	00ffffffffffff0009d1097845540000
[   825.299] (II) fglrx(0): 	141201030e3420782ec5c4a3574a9c23
[   825.299] (II) fglrx(0): 	124f52a56b807100810095008180b300
[   825.299] (II) fglrx(0): 	a940d1000101283c80a070b023403020
[   825.299] (II) fglrx(0): 	360007442100001a000000ff00593538
[   825.299] (II) fglrx(0): 	3031303432534c300a20000000fd0032
[   825.299] (II) fglrx(0): 	551f5e15000a202020202020000000fc
[   825.299] (II) fglrx(0): 	0042656e51204732343030570a200062
[   825.299] (II) fglrx(0): End of Display1 EDID data --------------------
[   825.348] (II) fglrx(0): EDID for output DFP1
[   825.348] (II) fglrx(0): Manufacturer: BNQ  Model: 780a  Serial#: 21573
[   825.348] (II) fglrx(0): Year: 2008  Week: 20
[   825.348] (II) fglrx(0): EDID Version: 1.3
[   825.348] (II) fglrx(0): Digital Display Input
[   825.348] (II) fglrx(0): Max Image Size [cm]: horiz.: 52  vert.: 32
[   825.348] (II) fglrx(0): Gamma: 2.20
[   825.348] (II) fglrx(0): DPMS capabilities: Off
[   825.348] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
[   825.348] (II) fglrx(0): Default color space is primary color space
[   825.348] (II) fglrx(0): First detailed timing is preferred mode
[   825.348] (II) fglrx(0): redX: 0.640 redY: 0.340   greenX: 0.290
greenY: 0.610
[   825.348] (II) fglrx(0): blueX: 0.140 blueY: 0.070   whiteX: 0.310
whiteY: 0.320
[   825.348] (II) fglrx(0): Supported established timings:
[   825.348] (II) fglrx(0): 720x400@70Hz
[   825.348] (II) fglrx(0): 640x480@60Hz
[   825.348] (II) fglrx(0): 640x480@75Hz
[   825.348] (II) fglrx(0): 800x600@60Hz
[   825.348] (II) fglrx(0): 800x600@75Hz
[   825.348] (II) fglrx(0): 832x624@75Hz
[   825.348] (II) fglrx(0): 1024x768@60Hz
[   825.348] (II) fglrx(0): 1024x768@75Hz
[   825.348] (II) fglrx(0): 1280x1024@75Hz
[   825.348] (II) fglrx(0): 1152x864@75Hz
[   825.348] (II) fglrx(0): Manufacturer's mask: 0
[   825.348] (II) fglrx(0): Supported standard timings:
[   825.348] (II) fglrx(0): #0: hsize: 1152  vsize 720  refresh: 60  vid: 113
[   825.348] (II) fglrx(0): #1: hsize: 1280  vsize 800  refresh: 60  vid: 129
[   825.348] (II) fglrx(0): #2: hsize: 1440  vsize 900  refresh: 60  vid: 149
[   825.348] (II) fglrx(0): #3: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[   825.348] (II) fglrx(0): #4: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[   825.348] (II) fglrx(0): #5: hsize: 1600  vsize 1200  refresh: 60  vid: 16553
[   825.348] (II) fglrx(0): #6: hsize: 1920  vsize 1200  refresh: 60  vid: 209
[   825.348] (II) fglrx(0): Supported detailed timing:
[   825.348] (II) fglrx(0): clock: 154.0 MHz   Image Size:  519 x 324 mm
[   825.348] (II) fglrx(0): h_active: 1920  h_sync: 1968  h_sync_end
2000 h_blank_end 2080 h_border: 0
[   825.348] (II) fglrx(0): v_active: 1200  v_sync: 1203  v_sync_end
1209 v_blanking: 1235 v_border: 0
[   825.348] (II) fglrx(0): Serial No: Y5801042SL0
[   825.348] (II) fglrx(0): Ranges: V min: 50 V max: 85 Hz, H min: 31
H max: 94 kHz, PixClock max 175 MHz
[   825.348] (II) fglrx(0): Monitor name: BenQ G2400W
[   825.348] (II) fglrx(0): Supported detailed timing:
[   825.348] (II) fglrx(0): clock: 74.2 MHz   Image Size:  708 x 398 mm
[   825.348] (II) fglrx(0): h_active: 1280  h_sync: 1390  h_sync_end
1430 h_blank_end 1650 h_border: 0
[   825.348] (II) fglrx(0): v_active: 720  v_sync: 725  v_sync_end 730
v_blanking: 750 v_border: 0
[   825.348] (II) fglrx(0): Supported detailed timing:
[   825.348] (II) fglrx(0): clock: 74.2 MHz   Image Size:  708 x 398 mm
[   825.348] (II) fglrx(0): h_active: 1920  h_sync: 2008  h_sync_end
2052 h_blank_end 2200 h_border: 0
[   825.348] (II) fglrx(0): v_active: 540  v_sync: 542  v_sync_end 547
v_blanking: 562 v_border: 0
[   825.348] (II) fglrx(0): Supported detailed timing:
[   825.348] (II) fglrx(0): clock: 27.0 MHz   Image Size:  708 x 398 mm
[   825.348] (II) fglrx(0): h_active: 720  h_sync: 736  h_sync_end 798
h_blank_end 858 h_border: 0
[   825.348] (II) fglrx(0): v_active: 480  v_sync: 489  v_sync_end 495
v_blanking: 525 v_border: 0
[   825.348] (II) fglrx(0): Supported detailed timing:
[   825.348] (II) fglrx(0): clock: 148.5 MHz   Image Size:  708 x 398 mm
[   825.348] (II) fglrx(0): h_active: 1920  h_sync: 2008  h_sync_end
2052 h_blank_end 2200 h_border: 0
[   825.348] (II) fglrx(0): v_active: 1080  v_sync: 1084  v_sync_end
1089 v_blanking: 1125 v_border: 0
[   825.348] (II) fglrx(0): Supported detailed timing:
[   825.348] (II) fglrx(0): clock: 25.2 MHz   Image Size:  530 x 398 mm
[   825.348] (II) fglrx(0): h_active: 640  h_sync: 648  h_sync_end 744
h_blank_end 800 h_border: 8
[   825.348] (II) fglrx(0): v_active: 480  v_sync: 482  v_sync_end 484
v_blanking: 525 v_border: 8
[   825.348] (II) fglrx(0): Number of EDID sections to follow: 1
[   825.348] (II) fglrx(0): EDID (in hex):
[   825.348] (II) fglrx(0): 	00ffffffffffff0009d10a7845540000
[   825.348] (II) fglrx(0): 	14120103803420782ec5c4a3574a9c23
[   825.348] (II) fglrx(0): 	124f52a56b807100810095008180b300
[   825.348] (II) fglrx(0): 	a940d1000101283c80a070b023403020
[   825.348] (II) fglrx(0): 	360007442100001a000000ff00593538
[   825.348] (II) fglrx(0): 	3031303432534c300a20000000fd0032
[   825.348] (II) fglrx(0): 	551f5e11000a202020202020000000fc
[   825.348] (II) fglrx(0): 	0042656e51204732343030570a2001f2
[   825.348] (II) fglrx(0): EDID vendor "BNQ", prod id 30730
[   825.348] (II) fglrx(0): DDCModeFromDetailedTiming: 1920x1080
Warning: We only handle separate sync.
[   825.348] (II) fglrx(0): Using EDID range info for horizontal sync
[   825.348] (II) fglrx(0): Using EDID range info for vertical refresh
[   825.348] (II) fglrx(0): Printing DDC gathered Modelines:
[   825.348] (II) fglrx(0): Modeline "1920x1200"x0.0  154.00  1920
1968 2000 2080  1200 1203 1209 1235 +hsync -vsync (74.0 kHz)
[   825.348] (II) fglrx(0): Modeline "1280x720"x0.0   74.25  1280 1390
1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz)
[   825.348] (II) fglrx(0): Modeline "1920x1080i"x0.0   74.25  1920
2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz)
[   825.348] (II) fglrx(0): Modeline "720x480"x0.0   27.00  720 736
798 858  480 489 495 525 -hsync -vsync (31.5 kHz)
[   825.348] (II) fglrx(0): Modeline "1920x1080"x0.0  148.50  1920
2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
[   825.348] (II) fglrx(0): Modeline "640x480"x0.0   25.18  640 648
744 800  480 482 484 525 -hsync -vsync (31.5 kHz)
[   825.348] (II) fglrx(0): Modeline "800x600"x0.0   40.00  800 840
968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[   825.348] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 656
720 840  480 481 484 500 -hsync -vsync (37.5 kHz)
[   825.348] (II) fglrx(0): Modeline "640x480"x0.0   25.18  640 656
752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[   825.348] (II) fglrx(0): Modeline "720x400"x0.0   28.32  720 738
846 900  400 412 414 449 -hsync +vsync (31.5 kHz)
[   825.348] (II) fglrx(0): Modeline "1280x1024"x0.0  135.00  1280
1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[   825.348] (II) fglrx(0): Modeline "1024x768"x0.0   78.75  1024 1040
1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz)
[   825.348] (II) fglrx(0): Modeline "1024x768"x0.0   65.00  1024 1048
1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[   825.348] (II) fglrx(0): Modeline "832x624"x0.0   57.28  832 864
928 1152  624 625 628 667 -hsync -vsync (49.7 kHz)
[   825.348] (II) fglrx(0): Modeline "800x600"x0.0   49.50  800 816
896 1056  600 601 604 625 +hsync +vsync (46.9 kHz)
[   825.348] (II) fglrx(0): Modeline "1152x864"x0.0  108.00  1152 1216
1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz)
[   825.348] (II) fglrx(0): Modeline "1152x720"x60.0   67.32  1152
1208 1328 1504  720 721 724 746 -hsync +vsync (44.8 kHz)
[   825.348] (II) fglrx(0): Modeline "1280x800"x0.0   71.00  1280 1328
1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz)
[   825.348] (II) fglrx(0): Modeline "1440x900"x0.0   88.75  1440 1488
1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz)
[   825.348] (II) fglrx(0): Modeline "1280x1024"x0.0  108.00  1280
1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[   825.348] (II) fglrx(0): Modeline "1680x1050"x0.0  119.00  1680
1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz)
[   825.348] (II) fglrx(0): Modeline "1600x1200"x0.0  162.00  1600
1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
[   825.348] (II) fglrx(0): Modeline "720x576"x0.0   27.00  720 732
796 864  576 581 586 625 -hsync -vsync (31.2 kHz)
[   825.348] (II) fglrx(0): Modeline "1440x480i"x0.0   27.00  1440
1478 1602 1716  480 488 494 525 interlace -hsync -vsync (15.7 kHz)
[   825.348] (II) fglrx(0): Modeline "1440x240"x0.0   27.00  1440 1478
1602 1716  240 244 247 262 -hsync -vsync (15.7 kHz)
[   825.348] (II) fglrx(0): Printing probed modes for output DFP1
[   825.348] (II) fglrx(0): Modeline "1440x900"x60.0  106.50  1440
1520 1672 1904  900 903 909 934 +hsync -vsync (55.9 kHz)
[   825.348] (II) fglrx(0): Modeline "1920x1200"x60.0  154.00  1920
1968 2000 2080  1200 1203 1209 1235 -hsync +vsync (74.0 kHz)
[   825.348] (II) fglrx(0): Modeline "1920x1080"x60.0  148.50  1920
2008 2052 2200  1080 1084 1089 1125 -hsync -vsync (67.5 kHz)
[   825.348] (II) fglrx(0): Modeline "1920x1080"x30.0   74.25  1920
2008 2052 2200  1080 1084 1094 1125 interlace -hsync -vsync (33.8 kHz)
[   825.348] (II) fglrx(0): Modeline "1600x1200"x60.0  162.00  1600
1664 1856 2160  1200 1201 1204 1250 -hsync -vsync (75.0 kHz)
[   825.348] (II) fglrx(0): Modeline "1776x1000"x60.0  147.05  1776
1880 2072 2368  1000 1001 1004 1035 +hsync -vsync (62.1 kHz)
[   825.348] (II) fglrx(0): Modeline "1776x1000"x30.0   67.92  1776
1824 2000 2224  1000 1001 1004 1018 +hsync -vsync (30.5 kHz)
[   825.348] (II) fglrx(0): Modeline "1680x1050"x60.0  146.25  1680
1784 1960 2240  1050 1053 1059 1089 +hsync -vsync (65.3 kHz)
[   825.348] (II) fglrx(0): Modeline "1400x1050"x60.0  121.75  1400
1488 1632 1864  1050 1053 1057 1089 +hsync -vsync (65.3 kHz)
[   825.348] (II) fglrx(0): Modeline "1280x1024"x75.0  135.00  1280
1296 1440 1688  1024 1025 1028 1066 -hsync -vsync (80.0 kHz)
[   825.348] (II) fglrx(0): Modeline "1280x1024"x60.0  108.00  1280
1328 1440 1688  1024 1025 1028 1066 -hsync -vsync (64.0 kHz)
[   825.348] (II) fglrx(0): Modeline "1280x960"x60.0  108.00  1280
1376 1488 1800  960 961 964 1000 -hsync -vsync (60.0 kHz)
[   825.348] (II) fglrx(0): Modeline "1366x768"x60.0   85.76  1366
1438 1582 1800  768 769 772 795 +hsync -vsync (47.6 kHz)
[   825.348] (II) fglrx(0): Modeline "1360x768"x60.0   85.50  1360
1424 1536 1792  768 771 777 795 -hsync -vsync (47.7 kHz)
[   825.348] (II) fglrx(0): Modeline "1280x800"x60.0   83.46  1280
1344 1480 1680  800 801 804 828 +hsync -vsync (49.7 kHz)
[   825.348] (II) fglrx(0): Modeline "1152x864"x60.0   81.62  1152
1216 1336 1520  864 865 868 895 +hsync -vsync (53.7 kHz)
[   825.348] (II) fglrx(0): Modeline "1280x768"x60.0   79.50  1280
1344 1472 1664  768 771 778 798 +hsync -vsync (47.8 kHz)
[   825.348] (II) fglrx(0): Modeline "1280x720"x60.0   74.25  1280
1390 1430 1650  720 725 730 750 -hsync -vsync (45.0 kHz)
[   825.348] (II) fglrx(0): Modeline "1024x768"x75.0   78.75  1024
1040 1136 1312  768 769 772 800 -hsync -vsync (60.0 kHz)
[   825.348] (II) fglrx(0): Modeline "1024x768"x60.0   65.00  1024
1048 1184 1344  768 771 777 806 +hsync +vsync (48.4 kHz)
[   825.348] (II) fglrx(0): Modeline "1152x648"x60.0   59.90  1152
1200 1320 1488  648 649 652 671 +hsync -vsync (40.3 kHz)
[   825.348] (II) fglrx(0): Modeline "800x600"x75.0   49.50  800 816
896 1056  600 601 604 625 -hsync -vsync (46.9 kHz)
[   825.348] (II) fglrx(0): Modeline "800x600"x60.0   40.00  800 840
968 1056  600 601 605 628 -hsync -vsync (37.9 kHz)
[   825.348] (II) fglrx(0): Modeline "720x480"x60.0   27.00  720 736
798 858  480 489 495 525 +hsync +vsync (31.5 kHz)
[   825.348] (II) fglrx(0): Modeline "640x480"x75.0   31.50  640 656
720 840  480 481 484 500 +hsync +vsync (37.5 kHz)
[   825.348] (II) fglrx(0): Modeline "640x480"x60.0   25.20  640 656
752 800  480 490 492 525 +hsync +vsync (31.5 kHz)
[   825.348] (II) fglrx(0): Modeline "640x480"x57.0   25.18  640 664
760 816  480 490 492 541 +hsync +vsync (30.9 kHz)
[   825.348] (II) fglrx(0): EDID for output CRT1
[   825.348] (II) fglrx(0): Manufacturer: BNQ  Model: 7809  Serial#: 21573
[   825.348] (II) fglrx(0): Year: 2008  Week: 20
[   825.348] (II) fglrx(0): EDID Version: 1.3
[   825.348] (II) fglrx(0): Analog Display Input,  Input Voltage
Level: 0.700/0.300 V
[   825.348] (II) fglrx(0): Sync:  Separate  Composite  SyncOnGreen
[   825.348] (II) fglrx(0): Max Image Size [cm]: horiz.: 52  vert.: 32
[   825.348] (II) fglrx(0): Gamma: 2.20
[   825.348] (II) fglrx(0): DPMS capabilities: Off; RGB/Color Display
[   825.348] (II) fglrx(0): Default color space is primary color space
[   825.348] (II) fglrx(0): First detailed timing is preferred mode
[   825.348] (II) fglrx(0): redX: 0.640 redY: 0.340   greenX: 0.290
greenY: 0.610
[   825.348] (II) fglrx(0): blueX: 0.140 blueY: 0.070   whiteX: 0.310
whiteY: 0.320
[   825.349] (II) fglrx(0): Supported established timings:
[   825.349] (II) fglrx(0): 720x400@70Hz
[   825.349] (II) fglrx(0): 640x480@60Hz
[   825.349] (II) fglrx(0): 640x480@75Hz
[   825.349] (II) fglrx(0): 800x600@60Hz
[   825.349] (II) fglrx(0): 800x600@75Hz
[   825.349] (II) fglrx(0): 832x624@75Hz
[   825.349] (II) fglrx(0): 1024x768@60Hz
[   825.349] (II) fglrx(0): 1024x768@75Hz
[   825.349] (II) fglrx(0): 1280x1024@75Hz
[   825.349] (II) fglrx(0): 1152x864@75Hz
[   825.349] (II) fglrx(0): Manufacturer's mask: 0
[   825.349] (II) fglrx(0): Supported standard timings:
[   825.349] (II) fglrx(0): #0: hsize: 1152  vsize 720  refresh: 60  vid: 113
[   825.349] (II) fglrx(0): #1: hsize: 1280  vsize 800  refresh: 60  vid: 129
[   825.349] (II) fglrx(0): #2: hsize: 1440  vsize 900  refresh: 60  vid: 149
[   825.349] (II) fglrx(0): #3: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[   825.349] (II) fglrx(0): #4: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[   825.349] (II) fglrx(0): #5: hsize: 1600  vsize 1200  refresh: 60  vid: 16553
[   825.349] (II) fglrx(0): #6: hsize: 1920  vsize 1200  refresh: 60  vid: 209
[   825.349] (II) fglrx(0): Supported detailed timing:
[   825.349] (II) fglrx(0): clock: 154.0 MHz   Image Size:  519 x 324 mm
[   825.349] (II) fglrx(0): h_active: 1920  h_sync: 1968  h_sync_end
2000 h_blank_end 2080 h_border: 0
[   825.349] (II) fglrx(0): v_active: 1200  v_sync: 1203  v_sync_end
1209 v_blanking: 1235 v_border: 0
[   825.349] (II) fglrx(0): Serial No: Y5801042SL0
[   825.349] (II) fglrx(0): Ranges: V min: 50 V max: 85 Hz, H min: 31
H max: 94 kHz, PixClock max 215 MHz
[   825.349] (II) fglrx(0): Monitor name: BenQ G2400W
[   825.349] (II) fglrx(0): EDID (in hex):
[   825.349] (II) fglrx(0): 	00ffffffffffff0009d1097845540000
[   825.349] (II) fglrx(0): 	141201030e3420782ec5c4a3574a9c23
[   825.349] (II) fglrx(0): 	124f52a56b807100810095008180b300
[   825.349] (II) fglrx(0): 	a940d1000101283c80a070b023403020
[   825.349] (II) fglrx(0): 	360007442100001a000000ff00593538
[   825.349] (II) fglrx(0): 	3031303432534c300a20000000fd0032
[   825.349] (II) fglrx(0): 	551f5e15000a202020202020000000fc
[   825.349] (II) fglrx(0): 	0042656e51204732343030570a200062
[   825.349] (II) fglrx(0): Printing probed modes for output CRT1
[   825.349] (II) fglrx(0): Modeline "1920x1200"x60.0  154.00  1920
1968 2000 2080  1200 1203 1209 1235 -hsync +vsync (74.0 kHz)
[   825.349] (II) fglrx(0): Modeline "1920x1080"x60.0  148.50  1920
2008 2052 2200  1080 1084 1089 1125 -hsync -vsync (67.5 kHz)
[   825.349] (II) fglrx(0): Modeline "1600x1200"x60.0  162.00  1600
1664 1856 2160  1200 1201 1204 1250 -hsync -vsync (75.0 kHz)
[   825.349] (II) fglrx(0): Modeline "1680x1050"x60.0  146.25  1680
1784 1960 2240  1050 1053 1059 1089 +hsync -vsync (65.3 kHz)
[   825.349] (II) fglrx(0): Modeline "1400x1050"x60.0  121.75  1400
1488 1632 1864  1050 1053 1057 1089 +hsync -vsync (65.3 kHz)
[   825.349] (II) fglrx(0): Modeline "1280x1024"x75.0  135.00  1280
1296 1440 1688  1024 1025 1028 1066 -hsync -vsync (80.0 kHz)
[   825.349] (II) fglrx(0): Modeline "1280x1024"x60.0  108.00  1280
1328 1440 1688  1024 1025 1028 1066 -hsync -vsync (64.0 kHz)
[   825.349] (II) fglrx(0): Modeline "1440x900"x60.0  106.50  1440
1520 1672 1904  900 903 909 934 +hsync -vsync (55.9 kHz)
[   825.349] (II) fglrx(0): Modeline "1280x960"x75.0  129.86  1280
1368 1504 1728  960 961 964 1002 +hsync -vsync (75.2 kHz)
[   825.349] (II) fglrx(0): Modeline "1280x960"x60.0  108.00  1280
1376 1488 1800  960 961 964 1000 -hsync -vsync (60.0 kHz)
[   825.349] (II) fglrx(0): Modeline "1366x768"x60.0   85.76  1366
1438 1582 1800  768 769 772 795 +hsync -vsync (47.6 kHz)
[   825.349] (II) fglrx(0): Modeline "1360x768"x60.0   85.50  1360
1424 1536 1792  768 771 777 795 -hsync -vsync (47.7 kHz)
[   825.349] (II) fglrx(0): Modeline "1280x800"x75.0  107.21  1280
1360 1496 1712  800 801 804 835 +hsync -vsync (62.6 kHz)
[   825.349] (II) fglrx(0): Modeline "1280x800"x60.0   83.46  1280
1344 1480 1680  800 801 804 828 +hsync -vsync (49.7 kHz)
[   825.349] (II) fglrx(0): Modeline "1152x864"x75.0  108.00  1152
1216 1344 1600  864 865 868 900 -hsync -vsync (67.5 kHz)
[   825.349] (II) fglrx(0): Modeline "1152x864"x60.0   81.62  1152
1216 1336 1520  864 865 868 895 +hsync -vsync (53.7 kHz)
[   825.349] (II) fglrx(0): Modeline "1280x768"x75.0  102.25  1280
1360 1488 1696  768 771 778 805 +hsync -vsync (60.3 kHz)
[   825.349] (II) fglrx(0): Modeline "1280x768"x60.0   79.50  1280
1344 1472 1664  768 771 778 798 +hsync -vsync (47.8 kHz)
[   825.349] (II) fglrx(0): Modeline "1280x720"x60.0   74.25  1280
1390 1430 1650  720 725 730 750 -hsync -vsync (45.0 kHz)
[   825.349] (II) fglrx(0): Modeline "1024x768"x75.0   78.75  1024
1040 1136 1312  768 769 772 800 -hsync -vsync (60.0 kHz)
[   825.349] (II) fglrx(0): Modeline "1024x768"x60.0   65.00  1024
1048 1184 1344  768 771 777 806 +hsync +vsync (48.4 kHz)
[   825.349] (II) fglrx(0): Modeline "800x600"x75.0   49.50  800 816
896 1056  600 601 604 625 -hsync -vsync (46.9 kHz)
[   825.349] (II) fglrx(0): Modeline "800x600"x60.0   40.00  800 840
968 1056  600 601 605 628 -hsync -vsync (37.9 kHz)
[   825.349] (II) fglrx(0): Modeline "720x480"x60.0   26.71  720 736
808 896  480 481 484 497 +hsync -vsync (29.8 kHz)
[   825.349] (II) fglrx(0): Modeline "640x480"x75.0   31.50  640 656
720 840  480 481 484 500 +hsync +vsync (37.5 kHz)
[   825.349] (II) fglrx(0): Modeline "640x480"x60.0   25.18  640 648
744 800  480 482 484 525 +hsync +vsync (31.5 kHz)
[   825.349] (II) fglrx(0): Output DFP1 connected
[   825.349] (II) fglrx(0): Output CRT1 connected
[   825.349] (II) fglrx(0): Using user preference for initial modes
[   825.349] (II) fglrx(0): Output DFP1 using initial mode 1440x900
[   825.349] (II) fglrx(0): Output CRT1 using initial mode 1440x900
[   825.349] (II) fglrx(0): Display dimensions: (520, 320) mm
[   825.349] (II) fglrx(0): DPI set to (71, 71)
[   825.349] (II) fglrx(0): Adapter ATI Radeon HD 4250   has 2
configurable heads and 2 displays connected.
[   825.349] (==) fglrx(0):  PseudoColor visuals disabled
[   825.349] (II) Loading sub module "ramdac"
[   825.349] (II) LoadModule: "ramdac"
[   825.349] (II) Module "ramdac" already built-in
[   825.349] (==) fglrx(0): NoDRI = NO
[   825.349] (==) fglrx(0): Capabilities: 0x00000000
[   825.349] (==) fglrx(0): CapabilitiesEx: 0x00000000
[   825.349] (==) fglrx(0): OpenGL ClientDriverName: "fglrx_dri.so"
[   825.349] (==) fglrx(0): UseFastTLS=0
[   825.349] (==) fglrx(0): BlockSignalsOnLock=1
[   825.349] (--) Depth 24 pixmap format is 32 bpp
[   825.349] (II) Loading extension ATIFGLRXDRI
[   825.349] (II) fglrx(0): doing swlDriScreenInit
[   825.349] (II) fglrx(0): swlDriScreenInit for fglrx driver
[   825.349] ukiDynamicMajor: found major device number 250
[   825.349] ukiDynamicMajor: found major device number 250
[   825.349] ukiDynamicMajor: found major device number 250
[   825.349] ukiOpenByBusid: Searching for BusID PCI:1:5:0
[   825.349] ukiOpenDevice: node name is /dev/ati/card0
[   825.349] ukiOpenDevice: open result is 16, (OK)
[   825.349] ukiOpenByBusid: ukiOpenMinor returns 16
[   825.349] ukiOpenByBusid: ukiGetBusid reports PCI:1:5:0
[   825.349] (II) fglrx(0): [uki] DRM interface version 1.0
[   825.349] (II) fglrx(0): [uki] created "fglrx" driver at busid "PCI:1:5:0"
[   825.349] (II) fglrx(0): [uki] added 8192 byte SAREA at 0xb000
[   825.349] (II) fglrx(0): [uki] mapped SAREA 0xb000 to 0x7fc35bfb6000
[   825.349] (II) fglrx(0): [uki] framebuffer handle = 0xc000
[   825.349] (II) fglrx(0): [uki] added 1 reserved context for kernel
[   825.349] (II) fglrx(0): swlDriScreenInit done
[   825.349] (II) fglrx(0): Kernel Module Version Information:
[   825.349] (II) fglrx(0):     Name: fglrx
[   825.349] (II) fglrx(0):     Version: 8.88.7
[   825.349] (II) fglrx(0):     Date: Jul 28 2011
[   825.349] (II) fglrx(0):     Desc: ATI FireGL DRM kernel module
[   825.349] (II) fglrx(0): Kernel Module version matches driver.
[   825.349] (II) fglrx(0): Kernel Module Build Time Information:
[   825.349] (II) fglrx(0):     Build-Kernel UTS_RELEASE:        3.0.4-gentoo
[   825.349] (II) fglrx(0):     Build-Kernel MODVERSIONS:        no
[   825.349] (II) fglrx(0):     Build-Kernel __SMP__:            yes
[   825.349] (II) fglrx(0):     Build-Kernel PAGE_SIZE:          0x1000
[   825.350] (II) fglrx(0): [uki] register handle = 0x0000d000
adam@proxy ~ $



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-user] Blank screen in X, no errors in Xorg.log
  2011-10-02  6:51 [gentoo-user] Blank screen in X, no errors in Xorg.log Adam Carter
  2011-10-02  7:45 ` Volker Armin Hemmann
@ 2011-10-02  9:14 ` Volker Armin Hemmann
  2011-10-02 18:56   ` Spidey
  1 sibling, 1 reply; 8+ messages in thread
From: Volker Armin Hemmann @ 2011-10-02  9:14 UTC (permalink / raw
  To: gentoo-user

Am Sonntag 02 Oktober 2011, 17:51:19 schrieb Adam Carter:
> HW = Chipset: "ATI Radeon HD 4250  " (Chipset = 0x9715)
> 
> Config is mostly taken from a working amd64 + radeon system.
> linux-firmware is installed. No errors or warning in the the xorg
> logs, but startx returns a blank screen on both the VGA and HDMI
> outputs. It also fails with no xorg.conf. There's no process called X
> or anything related to X, if i ssh in from another machine and run
> 'pgrep -lf X' as root.
> 
> When using fglrx;
> proxy adam # tail Xorg.0.log
> [   458.503] (II) fglrx(0):     Desc: ATI FireGL DRM kernel module
> [   458.503] (II) fglrx(0): Kernel Module version matches driver.
> [   458.503] (II) fglrx(0): Kernel Module Build Time Information:
> [   458.503] (II) fglrx(0):     Build-Kernel UTS_RELEASE:       
> 3.0.4-gentoo [   458.503] (II) fglrx(0):     Build-Kernel MODVERSIONS:     
>   no [   458.503] (II) fglrx(0):     Build-Kernel __SMP__:            yes [
>   458.503] (II) fglrx(0):     Build-Kernel PAGE_SIZE:          0x1000 [  
> 458.503] (II) fglrx(0): [uki] register handle = 0x00004000
> [   458.526] (II) fglrx(0): DRI initialization successfull
> [   458.526] (II) fglrx(0): FBADPhys: 0xc0000000 FBMappedSize: 0x0100e000
> proxy adam #
> 
> 
> When using the radeon driver;
> proxy adam # tail /root/Xorg.0.log
> [   123.799] GC: 0 objects of 72 bytes = 0 total bytes 0 private allocs
> [   123.799] CURSOR: 0 objects of 8 bytes = 0 total bytes 0 private allocs
> [   123.799] CURSOR_BITS: 0 objects of 8 bytes = 0 total bytes 0 private
> allocs [   123.799] DBE_WINDOW: 0 objects of 24 bytes = 0 total bytes 0
> private allocs [   123.799] TOTAL: 1 objects, 120 bytes, 0 allocs
> [   123.800] (II) Open ACPI successful (/var/run/acpid.socket)
> [   123.800] (II) APM registered successfully
> [   123.800] (II) RADEON(0): RADEONScreenInit d0000000 0 0
> [   123.862] Output CRT1 disable success
> [   123.871] Blank
> 
> What's my next step?
> 
> 
> xorg.conf is;
> Section "ServerLayout"
>         Identifier     "Layout"
>         Screen      0  "aticonfig-Screen[0]-0" 0 0
> EndSection
> 
> Section "Files"
> #       These are not needed for fglrx, but will be for radeon
>         ModulePath "/usr/lib64/xorg/modules"
>         ModulePath "/usr/lib64/opengl/xorg-x11/extensions/"
> EndSection
> 
> Section "ServerFlags"
>         Option      "Xinerama" "off"
>         #Option  "blank time"  "5"  # Blank the screen after 5 minutes
> (Fake) Option  "standby time"  "10"  # Turn off screen after 10 minutes
> (DPMS) Option  "suspend time"  "20"  # Full suspend after 20 minutes Option
>  "off time"  "30"  # Turn off after half an hour
> EndSection
> 
> Section "Monitor"
>         Identifier   "aticonfig-Monitor[0]-0"
>         Option      "DPMS" "true"
>         Option      "PreferredMode" "1440x900"
> EndSection
> 
> Section "Device"
>         Identifier  "aticonfig-Device[0]-0"
>         Driver      "fglrx"
>         #Driver      "radeon"
>         Option      "backingstore" "true"
>         #BusID       "PCI:1:0:0"
>         #BusID       "PCI:0@1:0:1"
>         # dynamicclocks is for powersaving but not impl on flgrx
>         #Option      "DynamicClocks" "on"
>         #Option      "RenderAccel" "true" - not supported by flgrx
>         #Option      "AccelMethod" "exa" - not supported by flgrx
>         #Option      "UseFastTLS" "1"
>         #Option      "EnablePageFlip" "true" - not supported by flgrx
> EndSection
> 
> Section "Screen"
>         Identifier "aticonfig-Screen[0]-0"
>         Device     "aticonfig-Device[0]-0"
>         Monitor    "aticonfig-Monitor[0]-0"
>         DefaultDepth     24
>         SubSection "Display"
>                 Viewport   0 0
>                 Depth     24
>         EndSubSection
> EndSection
> 
> Section "Extensions"
>         Option      "Composite" "Enable"
> EndSection
> 
> Section "InputClass"
>         Identifier "keyboard-all"
>         Driver "evdev"
>         #Option "XkbLayout" "us,cz"
>         #Option "XkbModel" "logitech_g15"
>         Option "XkbRules" "xorg"
>         #Option "XkbOptions"
> "grp:alt_shift_toggle,grp:switch,grp_led:scroll,compose:rwin,terminate:ctrl_
> alt_bksp" Option "XkbOptions" "terminate:ctrl_alt_bksp"
>         #Option "XkbVariant" ",qwerty"
>         MatchIsKeyboard "on"
> EndSection

post Xorg.0.log?

-- 
#163933



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-user] Blank screen in X, no errors in Xorg.log
  2011-10-02  9:14 ` Volker Armin Hemmann
@ 2011-10-02 18:56   ` Spidey
  2011-10-02 23:05     ` Adam Carter
  0 siblings, 1 reply; 8+ messages in thread
From: Spidey @ 2011-10-02 18:56 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 502 bytes --]

Try with this simplified xorg.conf:

Section "Device"
       Identifier  "aticonfig-Device[0]-0"
       Driver      "fglrx"
       #Driver      "radeon"
EndSection


You can toggle video drivers also and tell what happened. By the way, you
realise you also need to setup correct kernel modules and disable
conflicting ones when changing from fglrx to radeon, right?

Claudio Roberto França Pereira (a.k.a. Spidey)
hardMOB - HTForum - @spideybr
Engenharia de Computação - UFES 2006/1

[-- Attachment #2: Type: text/html, Size: 626 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-user] Blank screen in X, no errors in Xorg.log
  2011-10-02 18:56   ` Spidey
@ 2011-10-02 23:05     ` Adam Carter
  2011-10-03 22:01       ` Adam Carter
  0 siblings, 1 reply; 8+ messages in thread
From: Adam Carter @ 2011-10-02 23:05 UTC (permalink / raw
  To: gentoo-user

> By the way, you
> realise you also need to setup correct kernel modules and disable
> conflicting ones when changing from fglrx to radeon, right?

Really - i thought changing the X driver was all that was required. Is
that do with with KMS?

Anyway, i think i'll focus on just using fglrx as its what i use
successfully on my laptop.



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-user] Blank screen in X, no errors in Xorg.log
  2011-10-02 23:05     ` Adam Carter
@ 2011-10-03 22:01       ` Adam Carter
  2011-10-04  4:58         ` Spidey
  0 siblings, 1 reply; 8+ messages in thread
From: Adam Carter @ 2011-10-03 22:01 UTC (permalink / raw
  To: gentoo-user

FYI, this is fixed. I ran 'strace startx > startx.strace.out 2>&1' and
this showed;
/usr/bin/X: symbol lookup error:
/usr/lib64/xorg/modules/drivers/fglrx_drv.so: undefined symbol:
GlxInitVisuals2D

Which means that i forget to eselect opengl set 1, though it wasn't
logged to Xorg.0.log (so it was logged to STDOUT, but i couldn't see
that as the screen was blank).

Then after fixing that;
which: no keychain in
(/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/bin:/usr/x86_64-pc-linux-gnu/gcc-bin/4.5.3)
/etc/X11/xinit/xinitrc: line 63: exec: xterm: not found
/etc/X11/xinit/xinitrc: line 61: xterm: command not found
xinit: connection to X server lost

So i emerged keychain and xterm and it now works. Of course i didn't
need xterm as i'm running gnome, so i could have just kicked that off
instead.



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [gentoo-user] Blank screen in X, no errors in Xorg.log
  2011-10-03 22:01       ` Adam Carter
@ 2011-10-04  4:58         ` Spidey
  0 siblings, 0 replies; 8+ messages in thread
From: Spidey @ 2011-10-04  4:58 UTC (permalink / raw
  To: gentoo-user

[-- Attachment #1: Type: text/plain, Size: 1576 bytes --]

On Mon, Oct 3, 2011 at 19:01, Adam Carter <adamcarter3@gmail.com> wrote:

> FYI, this is fixed. I ran 'strace startx > startx.strace.out 2>&1' and
> this showed;
> /usr/bin/X: symbol lookup error:
> /usr/lib64/xorg/modules/drivers/fglrx_drv.so: undefined symbol:
> GlxInitVisuals2D
>
> Which means that i forget to eselect opengl set 1, though it wasn't
> logged to Xorg.0.log (so it was logged to STDOUT, but i couldn't see
> that as the screen was blank).
>
> Then after fixing that;
> which: no keychain in
>
> (/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/opt/bin:/usr/x86_64-pc-linux-gnu/gcc-bin/4.5.3)
> /etc/X11/xinit/xinitrc: line 63: exec: xterm: not found
> /etc/X11/xinit/xinitrc: line 61: xterm: command not found
> xinit: connection to X server lost
>
> So i emerged keychain and xterm and it now works. Of course i didn't
> need xterm as i'm running gnome, so i could have just kicked that off
> instead.
>
>
The default xinitrc or something starts twm, xterm and xclock or something
like that, that's normal behavior for first time X.org users. You can toggle
that to your needs, or you emerge gnome and add gdm to your default
runlevel, and forget about startx.

About what kernel configurations you have to check and what you have to make
sure to not have checked, you can see it here:
http://en.gentoo-wiki.com/wiki/Fglrx
You'll want to disable everything related to DRM, basically.

Claudio Roberto França Pereira (a.k.a. Spidey)
hardMOB - HTForum - @spideybr
Engenharia de Computação - UFES 2006/1

[-- Attachment #2: Type: text/html, Size: 1977 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2011-10-04  5:02 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-02  6:51 [gentoo-user] Blank screen in X, no errors in Xorg.log Adam Carter
2011-10-02  7:45 ` Volker Armin Hemmann
2011-10-02  8:14   ` Adam Carter
2011-10-02  9:14 ` Volker Armin Hemmann
2011-10-02 18:56   ` Spidey
2011-10-02 23:05     ` Adam Carter
2011-10-03 22:01       ` Adam Carter
2011-10-04  4:58         ` Spidey

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox