Re: X Server want not start

2012-11-19 Thread Silvio Siefke
On Mon, 19 Nov 2012 02:41:56 + (UTC)
Chí-Thanh Christopher Nguyễn chith...@gentoo.org wrote:

 It seems that the pastebin links have expired. It is usually a better idea to
 use attachments instead of pastebins where possible.

Yes that's right. Ok the files as attachments at this mail.
 
 In your case, ensure that xf86-video-ati was rebuilt against the new
 xorg-server, and that KMS is enabled in your kernel. A grep for RADEON in your
 kernel config should result in this:

Kernel .config
#
# Graphics support
#
CONFIG_AGP=y
# CONFIG_AGP_ALI is not set
CONFIG_AGP_ATI=y
# CONFIG_AGP_AMD is not set
# CONFIG_AGP_AMD64 is not set
CONFIG_AGP_INTEL=y
# CONFIG_AGP_NVIDIA is not set
# CONFIG_AGP_SIS is not set
# CONFIG_AGP_SWORKS is not set
# CONFIG_AGP_VIA is not set
# CONFIG_AGP_EFFICEON is not set
CONFIG_VGA_ARB=y
CONFIG_VGA_ARB_MAX_GPUS=16
CONFIG_VGA_SWITCHEROO=y
CONFIG_DRM=y
CONFIG_DRM_KMS_HELPER=m
CONFIG_DRM_TTM=m
CONFIG_DRM_TDFX=m
CONFIG_DRM_R128=m
CONFIG_DRM_RADEON=m
CONFIG_DRM_RADEON_KMS=y
CONFIG_DRM_I810=m
CONFIG_DRM_I915=m
CONFIG_DRM_I915_KMS=y
CONFIG_DRM_MGA=m
CONFIG_DRM_SIS=m
CONFIG_DRM_VIA=m
CONFIG_DRM_SAVAGE=m
CONFIG_DRM_VMWGFX=m
CONFIG_STUB_POULSBO=y
CONFIG_VGASTATE=m
CONFIG_VIDEO_OUTPUT_CONTROL=y
CONFIG_FB=y
CONFIG_FIRMWARE_EDID=y
CONFIG_FB_DDC=m
# CONFIG_FB_BOOT_VESA_SUPPORT is not set
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
# CONFIG_FB_CFB_REV_PIXELS_IN_BYTE is not set
CONFIG_FB_SYS_FILLRECT=m
CONFIG_FB_SYS_COPYAREA=m
CONFIG_FB_SYS_IMAGEBLIT=m
# CONFIG_FB_FOREIGN_ENDIAN is not set
CONFIG_FB_SYS_FOPS=m
# CONFIG_FB_WMT_GE_ROPS is not set
CONFIG_FB_DEFERRED_IO=y
CONFIG_FB_HECUBA=m
CONFIG_FB_SVGALIB=m
# CONFIG_FB_MACMODES is not set
CONFIG_FB_BACKLIGHT=y
CONFIG_FB_MODE_HELPERS=y
CONFIG_FB_TILEBLITTING=y

 
 If the kernel is configured correctly, cat /proc/fb should return
 0 radeondrmfb.

gentoo-desk linux # cat /proc/fb
0 ATI Radeon 4966


Regards and Thank you for help

Silvio
Section ServerLayout
Identifier X.org Configured
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceKeyboard0 CoreKeyboard
Option BlankTime 0
Option StandbyTime 0
Option SuspendTime 0
Option OffTime  0   
EndSection

Section ServerFlags
Option BlankTime 0
Option StandbyTime 0
Option SuspendTime 0
Option OffTime 0
EndSection

Section Files
ModulePath   /usr/lib/xorg/modules
FontPath /usr/share/fonts/misc/
FontPath /usr/share/fonts/TTF/
FontPath /usr/share/fonts/OTF/
FontPath /usr/share/fonts/Type1/
FontPath /usr/share/fonts/100dpi/
FontPath /usr/share/fonts/75dpi/
FontPath /usr/share/fonts/arabeyes-fonts/
FontPath /usr/share/fonts/arphicfonts/
FontPath /usr/share/fonts/bitstream-cyberbit/
FontPath /usr/share/fonts/dejavu/
FontPath /usr/share/fonts/droid/
FontPath /usr/share/fonts/freefonts/
FontPath /usr/share/fonts/intlfonts/
FontPath /usr/share/fonts/ipamonafont/
FontPath /usr/share/fonts/encodings/
FontPath /usr/share/fonts/ja-ipafonts/
FontPath /usr/share/fonts/kacst-fonts/
FontPath /usr/share/fonts/sil-arabicfonts/
FontPath /usr/share/fonts/terminus/
FontPath /usr/share/fonts/urw-fonts/
FontPath /usr/share/fonts/truetype/
EndSection

Section Module
Load  glx
Load  record
Load  dri2
Load  dbe
Load  extmod
Load  dri
EndSection

Section Extensions
Option Composite Enable
EndSection

Section InputDevice
Identifier  Keyboard0
Driver  kbd
Option  XkbRules xorg
Option  XkbModel pc105
Option  XkbLayout de,fr,ma
Option  XkbVariant nodeadkeys
EndSection

Section InputDevice
Identifier  Mouse0
Driver  mouse
Option  Protocol auto
Option  Device /dev/input/mice
Option  ZAxisMapping 4 5 6 7
EndSection

Section Monitor
Identifier   Monitor0
VendorName   Monitor Vendor
ModelNameMonitor Model
EndSection

Section Monitor
Identifier   Monitor1
VendorName   Monitor Vendor
ModelNameMonitor Model
EndSection

Section Device
### Available Driver options are:-
### Values: i: integer, f: float, bool: True/False,
### string: String, freq: f Hz/kHz/MHz,
### percent: f%
### [arg]: arg optional
#Option NoAccel   # [bool]
#Option SWcursor  # [bool]
#Option Dac6Bit   # [bool]
#Option Dac8Bit   # [bool]
#Option BusType   # [str]
#Option CPPIOMode # 

Re: X Server want not start

2012-11-19 Thread Michel Dänzer
On Mon, 2012-11-19 at 12:10 +0100, Silvio Siefke wrote: 
 On Mon, 19 Nov 2012 02:41:56 + (UTC)
 Chí-Thanh Christopher Nguyễn chith...@gentoo.org wrote:
 
  If the kernel is configured correctly, cat /proc/fb should return
  0 radeondrmfb.
 
 gentoo-desk linux # cat /proc/fb
 0 ATI Radeon 4966

That looks like radeonfb, which conflicts with radeon KMS. You can
disable it at runtime by passing video=radeonfb:off on the kernel
command line, or at build time by disabling CONFIG_FB_RADEON.


-- 
Earthling Michel Dänzer   |   http://www.amd.com
Libre software enthusiast |  Debian, X and DRI developer
___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

Re: X Server want not start

2012-11-19 Thread Silvio Siefke
Hello,

On Mon, 19 Nov 2012 12:20:58 +0100
Michel Dänzer mic...@daenzer.net wrote:

 That looks like radeonfb, which conflicts with radeon KMS. You can
 disable it at runtime by passing video=radeonfb:off on the kernel
 command line, or at build time by disabling CONFIG_FB_RADEON.

Ok i built the kernel new. That need little time, is a older PC with single
CPU :) . 


Thank you for help and Greetings
Silvio
___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com


Re: X Server want not start

2012-11-19 Thread stompdagg...@yahoo.com
Hello,

just to make Michal's comment clearer, as kms includes a fb implementation, you 
cannot use both. either select fb or kms.
for more info please consult http://en.gentoo-wiki.com/wiki/Radeon

Dagg.




 From: Silvio Siefke siefke_lis...@web.de
To: xorg@lists.x.org 
Sent: Monday, November 19, 2012 2:13 PM
Subject: Re: X Server want not start
 
Hello,

On Mon, 19 Nov 2012 12:20:58 +0100
Michel Dänzer mic...@daenzer.net wrote:

 That looks like radeonfb, which conflicts with radeon KMS. You can
 disable it at runtime by passing video=radeonfb:off on the kernel
 command line, or at build time by disabling CONFIG_FB_RADEON.

Ok i built the kernel new. That need little time, is a older PC with single
CPU :) . 


Thank you for help and Greetings
Silvio
___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: stompdagg...@yahoo.com___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com

X Server want not start

2012-11-18 Thread Silvio Siefke
Hello,

i use Gentoo and today come updates for the XServer. Since then the 
Desktop want not start. 

I try with xorg.conf and without. I not know what should do now. 

Xorg.log.0  http://pastebin.geany.org/pqHbz/
xorg.conf  http://pastebin.geany.org/AH33D/

x11-base/xorg-server
  Latest version available: 1.13.0-r1
  Latest version installed: 1.13.0-r1

gentoo-desk siefke # lspci | grep VGA
01:00.0 VGA compatible controller: Advanced Micro Devices [AMD] nee 
ATI R250 If [Radeon 9000] (rev 01)


When more information need, plz ask. 


Thanks for help and Regards
Silvio
___
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: arch...@mail-archive.com