Pages: [1]
  Print  
Author Topic: Open arena and logout  (Read 9122 times)
other
Nub


Cakes 0
Posts: 3


« on: June 14, 2008, 07:14:41 AM »

After execute openarena  (installed from AUR) it's freezing. Xorg is going to logout and i can see kdm screen. My System: Arch Linux, my graphic card: Radeon 9200SE, graphic driver: open source for radeon (dri). For example foobilard is working (normal opengl game), in the other hand Tremulous and Enemy Territory don't start (like Open Arena, quake3 engine). 

Some logs:


My xorg.conf

Code:
Section "ServerLayout"
Identifier      "X.org Configured"
Screen      0  "Screen0" 0 0
InputDevice    "Mouse0" "CorePointer"
InputDevice    "Keyboard0" "CoreKeyboard"
Option "AIGLX" "false" # Dodane
EndSection

Section "Files"
RgbPath "/usr/share/X11/rgb"
ModulePath    "/usr/lib/xorg/modules"
FontPath      "/usr/share/fonts/misc"
# FontPath      "/usr/share/fonts/100dpi:unscaled"
# FontPath      "/usr/share/fonts/75dpi:unscaled"
FontPath      "/usr/share/fonts/TTF"
FontPath      "/usr/share/fonts/Type1"
EndSection

Section "Module"
Load  "dri"
Load  "extmod"
Load  "xtrap"
Load  "GLcore"
Load  "dbe"
Load  "glx"
Load  "record"
Load  "freetype"
# Load "xtt" # Dodane
EndSection

# Dodane
Section "Extensions"
Option "Composite" "Disable"
EndSection

Section "InputDevice"
        Identifier      "Mouse0"
        Driver          "mouse"
        Option          "CorePointer"
        Option          "Protocol"      "ExplorerPS/2"
        Option          "Device"        "/dev/input/mice"
        Option          "Resolution"    "800"
        Option          "Buttons"       "7"
        Option          "ZAxisMapping"  "4 5"                   # scrolling buttons
        Option          "ButtonMapping" "1 2 3 6 7"             # reszta
EndSection

Section "InputDevice"
Identifier "Keyboard0"
        Driver          "kbd"
        Option          "XkbModel" "pc104"
        Option          "XkbLayout" "pl"
EndSection

Section "Monitor"
Identifier    "Monitor0"
# VendorName    "GSM"
# ModelName    ""
# HorizSync 30 - 83 # analog
HorizSync 30 - 71 # digital
VertRefresh 56 - 75
# Option     "DPMS"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
        ### [arg]: arg optional
        #Option     "NoAccel"            # [<bool>]
        #Option     "SWcursor"            # [<bool>]
        #Option     "Dac6Bit"            # [<bool>]
        #Option     "Dac8Bit"            # [<bool>]
        #Option     "BusType"            # [<str>]
        #Option     "CPPIOMode"          # [<bool>]
        #Option     "CPusecTimeout"      # <i>
        #Option     "AGPMode"            # <i>
        #Option     "AGPFastWrite"        # [<bool>]
        #Option     "AGPSize"            # <i>
        #Option     "GARTSize"            # <i>
        #Option     "RingSize"            # <i>
        #Option     "BufferSize"          # <i>
        #Option     "EnableDepthMoves"    # [<bool>]
        #Option     "EnablePageFlip"      # [<bool>]
        #Option     "NoBackBuffer"        # [<bool>]
        #Option     "DMAForXv"            # [<bool>]
        #Option     "FBTexPercent"        # <i>
        #Option     "DepthBits"          # <i>
        #Option     "PCIAPERSize"        # <i>
        #Option     "AccelDFS"            # [<bool>]
        #Option     "DDCMode"            # [<bool>]
        #Option     "IgnoreEDID"          # [<bool>]
        #Option     "DisplayPriority"    # [<str>]
        #Option     "PanelSize"          # [<str>]
        #Option     "ForceMinDotClock"    # <freq>
        #Option     "ColorTiling"        # [<bool>]
        #Option     "VideoKey"            # <i>
        #Option     "RageTheatreCrystal" # <i>
        #Option     "RageTheatreTunerPort" # <i>
        #Option     "RageTheatreCompositePort" # <i>
        #Option     "RageTheatreSVideoPort" # <i>
        #Option     "TunerType"          # <i>
        #Option     "RageTheatreMicrocPath" # <str>
        #Option     "RageTheatreMicrocType" # <str>
        #Option     "ScalerWidth"        # <i>
        #Option     "RenderAccel"        # [<bool>]
        #Option     "SubPixelOrder"      # [<str>]
        #Option     "ShowCache"          # [<bool>]
        #Option     "DynamicClocks"      # [<bool>]
        #Option     "VGAAccess"          # [<bool>]
        #Option     "ReverseDDC"          # [<bool>]
        #Option     "LVDSProbePLL"        # [<bool>]
        #Option     "AccelMethod"        # <str>
        #Option     "DRI"                # [<bool>]
        #Option     "ConnectorTable"      # <str>
        #Option     "DefaultConnectorTable" # [<bool>]
        #Option     "DefaultTMDSPLL"      # [<bool>]
        #Option     "TVDACLoadDetect"    # [<bool>]
        #Option     "ForceTVOut"          # [<bool>]
        #Option     "TVStandard"          # <str>
        #Option     "IgnoreLidStatus"    # [<bool>]
Identifier  "Card0"
Driver      "radeon"
VendorName  "ATI Technologies Inc"
BoardName    "RV280 [Radeon 9200 SE]"
Option "BusType" "PCI" # Dodane
BusID        "PCI:1:0:0"
Option "XAANoOffscreenPixmaps" "false" # Dodane
Option "DRI" "true" # Dodane
EndSection

Section "Screen"
Identifier "Screen0"
Device      "Card0"
Monitor    "Monitor0"
DefaultDepth 16 # Dodane
SubSection "Display"
# Viewport 0 0
Depth      16
Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
# Viewport   0 0
Depth 24
Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480"
EndSubSection
EndSection
Rendering test:

Code:
[other ~] $ glxinfo |grep direct
direct rendering: Yes
Code:
[other ~] $ glxgears
5887 frames in 5.0 seconds = 1177.391 FPS
6092 frames in 5.0 seconds = 1218.337 FPS
6146 frames in 5.0 seconds = 1229.085 FPS
OpenArena output:

Code:
ioQ3 1.33+oa linux-i386 Dec 15 2007
----- FS_Startup -----
Current search path:
/home/other/.openarena/baseoa
/usr/share/openarena/baseoa/pak7-patch.pk3 (76 files)
/usr/share/openarena/baseoa/pak6-misc.pk3 (191 files)
/usr/share/openarena/baseoa/pak5-TA.pk3 (11 files)
/usr/share/openarena/baseoa/pak4-textures.pk3 (1496 files)
/usr/share/openarena/baseoa/pak3-music.pk3 (9 files)
/usr/share/openarena/baseoa/pak2-players.pk3 (620 files)
/usr/share/openarena/baseoa/pak2-players-mature.pk3 (171 files)
/usr/share/openarena/baseoa/pak1-maps.pk3 (73 files)
/usr/share/openarena/baseoa/pak0.pk3 (926 files)
/usr/share/openarena/baseoa
/usr/bin/baseoa

----------------------
3573 files in pk3 files
execing default.cfg
couldn't exec q3config.cfg
couldn't exec autoexec.cfg
Hunk_Clear: reset the hunk ok
----- Client Initialization -----
Couldn't read q3history.
----- Initializing Renderer ----
-------------------------------
QKEY found.
----- Client Initialization Complete -----
----- R_Init -----

------- Input Initialization -------
Joystick is not active.
------------------------------------
...loading libGL.so.1:
Calling SDL_Init(SDL_INIT_VIDEO)...
SDL_Init(SDL_INIT_VIDEO) passed.
Initializing OpenGL display
...setting mode 3: 640 480
SDL_SetVideoMode failed: Couldn't find matching GLX visual
SDL_SetVideoMode failed: Couldn't find matching GLX visual
SDL_SetVideoMode failed: Couldn't find matching GLX visual
SDL_SetVideoMode failed: Couldn't find matching GLX visual
SDL_SetVideoMode failed: Couldn't find matching GLX visual
SDL_SetVideoMode failed: Couldn't find matching GLX visual
SDL_SetVideoMode failed: Couldn't find matching GLX visual
Using 4/4/4 Color bits, 16 depth, 0 stencil display.
GL_RENDERER: Mesa DRI R200 20060602 AGP 8x x86/MMX+/3DNow!+/SSE TCL
Initializing OpenGL extensions
...GL_S3_s3tc not found
...ignoring GL_EXT_texture_env_add
...using GL_ARB_multitexture
...using GL_EXT_compiled_vertex_array
...ignoring GL_EXT_texture_filter_anisotropic

GL_VENDOR: Tungsten Graphics, Inc.
GL_RENDERER: Mesa DRI R200 20060602 AGP 8x x86/MMX+/3DNow!+/SSE TCL
GL_VERSION: 1.3 Mesa 7.0.3-rc2
GL_EXTENSIONS: GL_ARB_imaging GL_ARB_multisample GL_ARB_multitexture GL_ARB_point_parameters GL_ARB_point_sprite GL_ARB_texture_border_clamp GL_ARB_texture_compression GL_ARB_texture_cube_map GL_ARB_texture_env_add GL_ARB_texture_env_combine GL_ARB_texture_env_crossbar GL_ARB_texture_env_dot3 GL_ARB_texture_mirrored_repeat GL_ARB_texture_rectangle GL_ARB_transpose_matrix GL_ARB_vertex_buffer_object GL_ARB_vertex_program GL_ARB_window_pos GL_EXT_abgr GL_EXT_bgra GL_EXT_blend_color GL_EXT_blend_equation_separate GL_EXT_blend_func_separate GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_clip_volume_hint GL_EXT_compiled_vertex_array GL_EXT_convolution GL_EXT_copy_texture GL_EXT_draw_range_elements GL_EXT_fog_coord GL_EXT_histogram GL_EXT_packed_pixels GL_EXT_point_parameters GL_EXT_polygon_offset GL_EXT_rescale_normal GL_EXT_secondary_color GL_EXT_separate_specular_color GL_EXT_stencil_wrap GL_EXT_subtexture GL_EXT_texture GL_EXT_texture3D GL_EXT_texture_edge_clamp GL_EXT_texture_env_add GL_EXT_texture_env_combine GL_EXT_texture_env_dot3 GL_EXT_texture_filter_anisotropic GL_EXT_texture_lod_bias GL_EXT_texture_mirror_clamp GL_EXT_texture_object GL_EXT_texture_rectangle GL_EXT_vertex_array GL_APPLE_packed_pixels GL_ATI_blend_equation_separate GL_ATI_texture_env_combine3 GL_ATI_texture_mirror_once GL_ATI_fragment_shader GL_IBM_rasterpos_clip GL_IBM_texture_mirrored_repeat GL_INGR_blend_func_separate GL_MESA_pack_invert GL_MESA_ycbcr_texture GL_MESA_window_pos GL_NV_blend_square GL_NV_light_max_exponent GL_NV_texture_rectangle GL_NV_texgen_reflection GL_OES_read_format GL_SGI_color_matrix GL_SGI_color_table GL_SGIS_generate_mipmap GL_SGIS_texture_border_clamp GL_SGIS_texture_edge_clamp GL_SGIS_texture_lod
GL_MAX_TEXTURE_SIZE: 2048
GL_MAX_ACTIVE_TEXTURES_ARB: 6

PIXELFORMAT: color(16-bits) Z(16-bit) stencil(0-bits)
MODE: 3, 640 x 480 fullscreen hz:N/A
GAMMA: hardware w/ 0 overbright bits
CPU:
rendering primitives: single glDrawElements
texturemode: GL_LINEAR_MIPMAP_NEAREST
picmip: 1
texture bits: 0
multitexture: enabled
compiled vertex arrays: enabled
texenv add: disabled
compressed textures: disabled
----- CL_Shutdown -----
RE_Shutdown( 1 )
XIO:  fatal IO error 104 (Connection reset by peer) on X server ":0.0"
      after 198 requests (196 known processed) with 0 events remaining.
Received signal 1, exiting...
// Sorry for my English..
Logged
CFQ
---
Member


Cakes 0
Posts: 173


---


« Reply #1 on: June 14, 2008, 09:37:47 AM »

-----
« Last Edit: August 13, 2008, 08:23:48 PM by CFQ » Logged

I blanked my posts because I don't like this forum anymore! BAWWWWW
other
Nub


Cakes 0
Posts: 3


« Reply #2 on: June 14, 2008, 11:07:17 AM »

Code:
Option 		"AIGLX" "true"	

doesn't work.

Parts of /var/log/Xorg.0.log :

Code:
other @ ~ $ cat /var/log/Xorg.0.log |grep WW
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(WW) Warning, couldn't open module type1
(WW) RADEON: No matching Device section for instance (BusID PCI:1:0:1) found
(WW) RADEON(0): No crtc mode list for crtc 1,continuing with desired mode
(WW) RADEON(0): DRI init changed memory map, adjusting ...
(WW) RADEON(0):   MC_FB_LOCATION  was: 0xf7fff000 is: 0xf7fff000
(WW) RADEON(0):   MC_AGP_LOCATION was: 0xffffffc0 is: 0xffffffc0
other @ ~ $ cat /var/log/Xorg.0.log |grep EE
Current Operating System: Linux localhost 2.6.25-ARCH #1 SMP PREEMPT Fri May 16 14:52:43 CEST 2008 i686
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(II) Loading extension MIT-SCREEN-SAVER
(EE) Failed to load module "type1" (module does not exist, 0)
(EE) Error compiling keymap (server-0)
(EE) XKB: Couldn't compile keymap

Full /var/log/Xorg.0.log is too long (The message exceeds the maximum allowed length (20000 characters).) .

Logged
CFQ
---
Member


Cakes 0
Posts: 173


---


« Reply #3 on: June 14, 2008, 12:12:02 PM »

-----
« Last Edit: August 13, 2008, 08:24:02 PM by CFQ » Logged

I blanked my posts because I don't like this forum anymore! BAWWWWW
other
Nub


Cakes 0
Posts: 3


« Reply #4 on: June 14, 2008, 12:43:27 PM »

CFQ - thanks, thanks, thanks. I was trying to solve this problem dwo months. DefaultDepth 24 solved problem. Thanks again Smiley
Logged
CFQ
---
Member


Cakes 0
Posts: 173


---


« Reply #5 on: June 16, 2008, 02:56:42 PM »

----
« Last Edit: August 13, 2008, 08:24:15 PM by CFQ » Logged

I blanked my posts because I don't like this forum anymore! BAWWWWW
Pages: [1]
  Print  
 
Jump to: