Sie sind nicht angemeldet.

  • »Imagine« ist männlich
  • »Imagine« ist der Autor dieses Themas

Beiträge: 6

Registrierungsdatum: 21.08.2005

  • Nachricht senden

1

21.08.2005, 17:22

Auflösung 1280x1024 mit ATI X700 auf Laptop - wie?

Hi,

ich habe auf einem ACER Extensa 4101 WLMI mit ATI RADEON X700 Debian 3.1 und XFree86-4.3 drauf.
Zusätzlich habe ich mir

Quellcode

1
2
alien -d fglrx_4_3_0-8.16.20-1.i386.rpm
dpkg -i fglrx-4-3-0-8.16.20-1.i386.deb

gebastelt.

Meine XF86Config-4 sieht so aus:

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
Section "Files"
	FontPath	"unix/:7100"			# local font server
	# if the local font server has problems, we can fall back on these
	FontPath	"/usr/lib/X11/fonts/misc"
	FontPath	"/usr/lib/X11/fonts/cyrillic"
	FontPath	"/usr/lib/X11/fonts/100dpi/:unscaled"
	FontPath	"/usr/lib/X11/fonts/75dpi/:unscaled"
	FontPath	"/usr/lib/X11/fonts/Type1"
	FontPath	"/usr/lib/X11/fonts/CID"
	FontPath	"/usr/lib/X11/fonts/Speedo"
	FontPath	"/usr/lib/X11/fonts/100dpi"
	FontPath	"/usr/lib/X11/fonts/75dpi"
EndSection

Section "Module"
	Load	"GLcore"
	Load	"bitmap"
	Load	"dbe"
	Load	"ddc"
	Load	"dri"
	Load	"extmod"
	Load	"freetype"
	Load	"glx"
	Load	"int10"
	Load	"record"
	Load	"speedo"
	Load	"type1"
	Load	"vbe"
EndSection

Section "InputDevice"
	Identifier	"Generic Keyboard"
	Driver		"keyboard"
	Option		"CoreKeyboard"
	Option		"XkbRules"	"xfree86"
	Option		"XkbModel"	"pc105"
	Option		"XkbLayout"	"de"
	Option		"XkbVariant"	"nodeadkeys"
EndSection

Section "InputDevice"
	Identifier	"Configured Mouse"
	Driver		"mouse"
	Option		"CorePointer"
	Option		"Device"		"/dev/psaux"
	Option		"Protocol"		"ImPS/2"
	Option		"Emulate3Buttons"	"true"
	Option		"ZAxisMapping"		"4 5"
EndSection

Section "Device"
	Identifier	"ATI Radeon X700"
	Driver		"fglrx"
	VideoRam	131072
EndSection

Section "Monitor"
	Identifier	"Standardbildschirm"
	HorizSync	28-49
	VertRefresh	43-72
	Option		"DPMS"
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Device		"ATI Radeon X700"
	Monitor		"Standardbildschirm"
	DefaultDepth	24
	SubSection "Display"
		Depth		1
		Modes		"1280x1024" "1280x960" "1152x864" "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		4
		Modes		"1280x1024" "1280x960" "1152x864" "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		8
		Modes		"1280x1024" "1280x960" "1152x864" "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		15
		Modes		"1280x1024" "1280x960" "1152x864" "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		16
		Modes		"1280x1024" "1280x960" "1152x864" "1024x768" "800x600" "640x480"
	EndSubSection
	SubSection "Display"
		Depth		24
		Modes		"1280x1024" "1280x960" "1152x864" "1024x768" "800x600" "640x480"
	EndSubSection
EndSection

Section "ServerLayout"
	Identifier	"Default Layout"
	Screen		"Default Screen"
	InputDevice	"Generic Keyboard"
	InputDevice	"Configured Mouse"
EndSection

Section "DRI"
	Mode	0666
EndSection


Die Log-Datei dazu schaut so aus

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
(==) Log file: "/var/log/XFree86.0.log", Time: Sun Aug 21 16:32:38 2005
(==) Using config file: "/etc/X11/XF86Config-4"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Default Screen" (0)
(**) |   |-->Monitor "Standardbildschirm"
(**) |   |-->Device "ATI Radeon X700"
(**) |-->Input Device "Generic Keyboard"
(**) Option "XkbRules" "xfree86"
(**) XKB: rules: "xfree86"
(**) Option "XkbModel" "pc105"
(**) XKB: model: "pc105"
(**) Option "XkbLayout" "de"
(**) XKB: layout: "de"
(**) Option "XkbVariant" "nodeadkeys"
(**) XKB: variant: "nodeadkeys"
(==) Keyboard: CustomKeycode disabled
(**) |-->Input Device "Configured Mouse"
(WW) The directory "/usr/lib/X11/fonts/cyrillic" does not exist.
	Entry deleted from font path.
(WW) The directory "/usr/lib/X11/fonts/CID" does not exist.
	Entry deleted from font path.
(**) FontPath set to "unix/:7100,/usr/lib/X11/fonts/misc,/usr/lib/X11/fonts/100dpi/:unscaled,/usr/lib/X11/fonts/75dpi/:unscaled,/usr/lib/X11/fonts/Type1,/usr/lib/X11/fonts/Speedo,/usr/lib/X11/fonts/100dpi,/usr/lib/X11/fonts/75dpi"
(==) RgbPath set to "/usr/X11R6/lib/X11/rgb"
(==) ModulePath set to "/usr/X11R6/lib/modules"
(++) using VT number 7

(WW) Open APM failed (/dev/apm_bios) (No such file or directory)
(II) Module ABI versions:
	XFree86 ANSI C Emulation: 0.2
	XFree86 Video Driver: 0.6
	XFree86 XInput driver : 0.4
	XFree86 Server Extension : 0.2
	XFree86 Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.0
	Module class: XFree86 Font Renderer
	ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: "pcidata"
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.0
	ABI class: XFree86 Video Driver, version 0.6
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x8000003c, mode1Res1 = 0x80000000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,2590 card 1025,0066 rev 03 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,2591 card 0000,0000 rev 03 class 06,04,00 hdr 01
(II) PCI: 00:1c:0: chip 8086,2660 card 0000,0000 rev 04 class 06,04,00 hdr 81
(II) PCI: 00:1c:1: chip 8086,2662 card 0000,0000 rev 04 class 06,04,00 hdr 81
(II) PCI: 00:1c:2: chip 8086,2664 card 0000,0000 rev 04 class 06,04,00 hdr 81
(II) PCI: 00:1d:0: chip 8086,2658 card 1025,0066 rev 04 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,2659 card 1025,0066 rev 04 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,265a card 1025,0066 rev 04 class 0c,03,00 hdr 00
(II) PCI: 00:1d:3: chip 8086,265b card 1025,0066 rev 04 class 0c,03,00 hdr 00
(II) PCI: 00:1d:7: chip 8086,265c card 1025,0066 rev 04 class 0c,03,20 hdr 00
(II) PCI: 00:1e:0: chip 8086,2448 card 0000,0000 rev d4 class 06,04,01 hdr 81
(II) PCI: 00:1e:2: chip 8086,266e card 1025,0066 rev 04 class 04,01,00 hdr 00
(II) PCI: 00:1e:3: chip 8086,266d card 1025,0066 rev 04 class 07,03,00 hdr 00
(II) PCI: 00:1f:0: chip 8086,2641 card 1025,0066 rev 04 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,266f card 1025,0066 rev 04 class 01,01,8a hdr 00
(II) PCI: 00:1f:3: chip 8086,266a card 1025,0066 rev 04 class 0c,05,00 hdr 00
(II) PCI: 01:00:0: chip 1002,5653 card 1025,0066 rev 00 class 03,00,00 hdr 00
(II) PCI: 06:01:0: chip 104c,8031 card 4000,0000 rev 00 class 06,07,00 hdr 82
(II) PCI: 06:01:2: chip 104c,8032 card 1025,0066 rev 00 class 0c,00,10 hdr 80
(II) PCI: 06:01:3: chip 104c,8033 card 1025,0066 rev 00 class 01,80,00 hdr 80
(II) PCI: 06:03:0: chip 8086,4220 card 8086,2701 rev 05 class 02,80,00 hdr 00
(II) PCI: 06:08:0: chip 14e4,169c card 1025,0066 rev 03 class 02,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,10), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
	[0] -1	0	0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) Bus 0 non-prefetchable memory range:
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000c (VGA_EN is set)
(II) Bus 1 I/O range:
	[0] -1	0	0x00003000 - 0x000030ff (0x100) IX[B]
	[1] -1	0	0x00003400 - 0x000034ff (0x100) IX[B]
	[2] -1	0	0x00003800 - 0x000038ff (0x100) IX[B]
	[3] -1	0	0x00003c00 - 0x00003cff (0x100) IX[B]
(II) Bus 1 non-prefetchable memory range:
	[0] -1	0	0xc8100000 - 0xc81fffff (0x100000) MX[B]
(II) Bus 1 prefetchable memory range:
	[0] -1	0	0xd0000000 - 0xd7ffffff (0x8000000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 9: bridge is at (0:28:0), (0,9,9), BCTRL: 0x0004 (VGA_EN is cleared)
(II) PCI-to-PCI bridge:
(II) Bus 10: bridge is at (0:28:1), (0,10,10), BCTRL: 0x0004 (VGA_EN is cleared)
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:28:2), (0,2,4), BCTRL: 0x0004 (VGA_EN is cleared)
(II) Subtractive PCI-to-PCI bridge:
(II) Bus 6: bridge is at (0:30:0), (0,6,7), BCTRL: 0x0004 (VGA_EN is cleared)
(II) Bus 6 non-prefetchable memory range:
	[0] -1	0	0xc8200000 - 0xc82fffff (0x100000) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) PCI-to-CardBus bridge:
(II) Bus 7: bridge is at (6:1:0), (6,7,10), BCTRL: 0x05c0 (VGA_EN is cleared)
(--) PCI:*(1:0:0) ATI Technologies Inc unknown chipset (0x5653) rev 0, Mem @ 0xd0000000/27, 0xc8100000/16, I/O @ 0x3000/8
(II) Addressable bus resource ranges are
	[0] -1	0	0x00000000 - 0xffffffff (0x0) MX[B]
	[1] -1	0	0x00000000 - 0x0000ffff (0x10000) IX[B]
(II) OS-reported resource ranges:
	[0] -1	0	0xffe00000 - 0xffffffff (0x200000) MX[B](B)
	[1] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[2] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[3] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[4] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[5] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[6] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
(II) Active PCI resource ranges:
	[0] -1	0	0xc8200000 - 0xc820ffff (0x10000) MX[B]
	[1] -1	0	0xc8219000 - 0xc8219fff (0x1000) MX[B]
	[2] -1	0	0xc8214000 - 0xc8215fff (0x2000) MX[B]
	[3] -1	0	0xc8210000 - 0xc8213fff (0x4000) MX[B]
	[4] -1	0	0xc8217000 - 0xc82177ff (0x800) MX[B]
	[5] -1	0	0xc8000400 - 0xc80004ff (0x100) MX[B]
	[6] -1	0	0xc8000800 - 0xc80009ff (0x200) MX[B]
	[7] -1	0	0xc8000000 - 0xc80003ff (0x400) MX[B]
	[8] -1	0	0xc8100000 - 0xc810ffff (0x10000) MX[B](B)
	[9] -1	0	0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
	[10] -1	0	0x000020a0 - 0x000020bf (0x20) IX[B]
	[11] -1	0	0x000018c0 - 0x000018cf (0x10) IX[B]
	[12] -1	0	0x00002000 - 0x0000207f (0x80) IX[B]
	[13] -1	0	0x00002400 - 0x000024ff (0x100) IX[B]
	[14] -1	0	0x00001880 - 0x000018bf (0x40) IX[B]
	[15] -1	0	0x00001c00 - 0x00001cff (0x100) IX[B]
	[16] -1	0	0x00001860 - 0x0000187f (0x20) IX[B]
	[17] -1	0	0x00001840 - 0x0000185f (0x20) IX[B]
	[18] -1	0	0x00001820 - 0x0000183f (0x20) IX[B]
	[19] -1	0	0x00001800 - 0x0000181f (0x20) IX[B]
	[20] -1	0	0x00003000 - 0x000030ff (0x100) IX[B](B)
(II) Active PCI resource ranges after removing overlaps:
	[0] -1	0	0xc8200000 - 0xc820ffff (0x10000) MX[B]
	[1] -1	0	0xc8219000 - 0xc8219fff (0x1000) MX[B]
	[2] -1	0	0xc8214000 - 0xc8215fff (0x2000) MX[B]
	[3] -1	0	0xc8210000 - 0xc8213fff (0x4000) MX[B]
	[4] -1	0	0xc8217000 - 0xc82177ff (0x800) MX[B]
	[5] -1	0	0xc8000400 - 0xc80004ff (0x100) MX[B]
	[6] -1	0	0xc8000800 - 0xc80009ff (0x200) MX[B]
	[7] -1	0	0xc8000000 - 0xc80003ff (0x400) MX[B]
	[8] -1	0	0xc8100000 - 0xc810ffff (0x10000) MX[B](B)
	[9] -1	0	0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
	[10] -1	0	0x000020a0 - 0x000020bf (0x20) IX[B]
	[11] -1	0	0x000018c0 - 0x000018cf (0x10) IX[B]
	[12] -1	0	0x00002000 - 0x0000207f (0x80) IX[B]
	[13] -1	0	0x00002400 - 0x000024ff (0x100) IX[B]
	[14] -1	0	0x00001880 - 0x000018bf (0x40) IX[B]
	[15] -1	0	0x00001c00 - 0x00001cff (0x100) IX[B]
	[16] -1	0	0x00001860 - 0x0000187f (0x20) IX[B]
	[17] -1	0	0x00001840 - 0x0000185f (0x20) IX[B]
	[18] -1	0	0x00001820 - 0x0000183f (0x20) IX[B]
	[19] -1	0	0x00001800 - 0x0000181f (0x20) IX[B]
	[20] -1	0	0x00003000 - 0x000030ff (0x100) IX[B](B)
(II) OS-reported resource ranges after removing overlaps with PCI:
	[0] -1	0	0xffe00000 - 0xffffffff (0x200000) MX[B](B)
	[1] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[2] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[3] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[4] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[5] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[6] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
(II) All system resource ranges:
	[0] -1	0	0xffe00000 - 0xffffffff (0x200000) MX[B](B)
	[1] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[2] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[3] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[4] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[5] -1	0	0xc8200000 - 0xc820ffff (0x10000) MX[B]
	[6] -1	0	0xc8219000 - 0xc8219fff (0x1000) MX[B]
	[7] -1	0	0xc8214000 - 0xc8215fff (0x2000) MX[B]
	[8] -1	0	0xc8210000 - 0xc8213fff (0x4000) MX[B]
	[9] -1	0	0xc8217000 - 0xc82177ff (0x800) MX[B]
	[10] -1	0	0xc8000400 - 0xc80004ff (0x100) MX[B]
	[11] -1	0	0xc8000800 - 0xc80009ff (0x200) MX[B]
	[12] -1	0	0xc8000000 - 0xc80003ff (0x400) MX[B]
	[13] -1	0	0xc8100000 - 0xc810ffff (0x10000) MX[B](B)
	[14] -1	0	0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
	[15] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[16] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
	[17] -1	0	0x000020a0 - 0x000020bf (0x20) IX[B]
	[18] -1	0	0x000018c0 - 0x000018cf (0x10) IX[B]
	[19] -1	0	0x00002000 - 0x0000207f (0x80) IX[B]
	[20] -1	0	0x00002400 - 0x000024ff (0x100) IX[B]
	[21] -1	0	0x00001880 - 0x000018bf (0x40) IX[B]
	[22] -1	0	0x00001c00 - 0x00001cff (0x100) IX[B]
	[23] -1	0	0x00001860 - 0x0000187f (0x20) IX[B]
	[24] -1	0	0x00001840 - 0x0000185f (0x20) IX[B]
	[25] -1	0	0x00001820 - 0x0000183f (0x20) IX[B]
	[26] -1	0	0x00001800 - 0x0000181f (0x20) IX[B]
	[27] -1	0	0x00003000 - 0x000030ff (0x100) IX[B](B)
(II) LoadModule: "GLcore"
(II) Loading /usr/X11R6/lib/modules/extensions/libGLcore.a
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_clip.o":  No symbols found
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_norm.o":  No symbols found
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_xform.o":  No symbols found
Skipping "/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_vertex.o":  No symbols found
(II) Module GLcore: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.0
	ABI class: XFree86 Server Extension, version 0.2
(II) LoadModule: "bitmap"
(II) Reloading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Loading font Bitmap
(II) LoadModule: "dbe"
(II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a
(II) Module dbe: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.0
	Module class: XFree86 Server Extension
	ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "ddc"
(II) Loading /usr/X11R6/lib/modules/libddc.a
(II) Module ddc: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.0
	ABI class: XFree86 Video Driver, version 0.6
(II) LoadModule: "dri"
(II) Loading /usr/X11R6/lib/modules/extensions/libdri.a
(II) Module dri: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.0
	ABI class: XFree86 Server Extension, version 0.2
(II) Loading sub module "drm"
(II) LoadModule: "drm"
(II) Loading /usr/X11R6/lib/modules/linux/libdrm.a
(II) Module drm: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.0
	ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension XFree86-DRI
(II) LoadModule: "extmod"
(II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a
(II) Module extmod: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.0
	Module class: XFree86 Server Extension
	ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension FontCache
(II) Loading extension TOG-CUP
(II) Loading extension Extended-Visual-Information
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "freetype"
(II) Loading /usr/X11R6/lib/modules/fonts/libfreetype.a
(II) Module freetype: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 2.0.2
	Module class: XFree86 Font Renderer
	ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font FreeType
(II) LoadModule: "glx"
(II) Loading /usr/X11R6/lib/modules/extensions/libglx.a
(II) Module glx: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.0
	ABI class: XFree86 Server Extension, version 0.2
(II) Loading sub module "GLcore"
(II) LoadModule: "GLcore"
(II) Reloading /usr/X11R6/lib/modules/extensions/libGLcore.a
(II) Loading extension GLX
(II) LoadModule: "int10"
(II) Loading /usr/X11R6/lib/modules/linux/libint10.a
(II) Module int10: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.0
	ABI class: XFree86 Video Driver, version 0.6
(II) LoadModule: "record"
(II) Loading /usr/X11R6/lib/modules/extensions/librecord.a
(II) Module record: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.13.0
	Module class: XFree86 Server Extension
	ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension RECORD
(II) LoadModule: "speedo"
(II) Loading /usr/X11R6/lib/modules/fonts/libspeedo.a
Skipping "/usr/X11R6/lib/modules/fonts/libspeedo.a:spencode.o":  No symbols found
(II) Module speedo: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.1
	Module class: XFree86 Font Renderer
	ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Speedo
(II) LoadModule: "type1"
(II) Loading /usr/X11R6/lib/modules/fonts/libtype1.a
(II) Module type1: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.2
	Module class: XFree86 Font Renderer
	ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Type1
(II) Loading font CID
(II) LoadModule: "vbe"
(II) Loading /usr/X11R6/lib/modules/libvbe.a
(II) Module vbe: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.1.0
	ABI class: XFree86 Video Driver, version 0.6
(II) LoadModule: "fglrx"
(II) Loading /usr/X11R6/lib/modules/drivers/fglrx_drv.o
(II) Module fglrx: vendor="FireGL - ATI Technologies Inc."
	compiled for 4.3.0.1, module version = 8.16.20
	Module class: XFree86 Video Driver
	ABI class: XFree86 Video Driver, version 0.6
(II) LoadModule: "mouse"
(II) Loading /usr/X11R6/lib/modules/input/mouse_drv.o
(II) Module mouse: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.0
	Module class: XFree86 XInput Driver
	ABI class: XFree86 XInput driver, version 0.4
(II) ATI Radeon/FireGL: The following chipsets are supported:
	RADEON 9000/9000 PRO (RV250 4966), RADEON 9000 LE (RV250 4967),
	MOBILITY FireGL 9000 (M9 4C64), MOBILITY RADEON 9000 (M9 4C66),
	RADEON 9000 PRO (D9 4C67), RADEON 9250 (RV280 5960),
	RADEON 9200 (RV280 5961), RADEON 9200 SE (RV280 5964),
	MOBILITY RADEON 9200 (M9+ 5C61), MOBILITY RADEON 9200 (M9+ 5C63),
	FireGL 8800 (R200 5148), RADEON 8500 (R200 514C),
	RADEON 9100 (R200 514D), RADEON 8500 AIW (R200 4242),
	RADEON 9600 (RV350 4150), RADEON 9600 SE (RV350 4151),
	RADEON 9600 PRO (RV360 4152),
	MOBILITY RADEON 9600/9700 (M10/M11 4E50),
	MOBILITY RADEON 9550 (M12 4E56), RADEON 9500 (R300 4144),
	RADEON 9600 TX (R300 4146), FireGL Z1 (R300 4147),
	RADEON 9700 PRO (R300 4E44), RADEON 9500 PRO/9700 (R300 4E45),
	RADEON 9600 TX (R300 4E46), FireGL X1 (R300 4E47),
	RADEON 9800 SE (R350 4148), RADEON 9550 (RV350 4153),
	FireGL T2 (RV350 4154), RADEON 9800 PRO (R350 4E48),
	RADEON 9800 (R350 4E49), RADEON 9800 XT (R360 4E4A),
	FireGL X2-256/X2-256t (R350 4E4B),
	MOBILITY FireGL T2/T2e (M10/M11 4E54), RADEON X300 (RV370 5B60),
	RADEON X600 (RV380 5B62), FireGL V3100 (RV370 5B64),
	MOBILITY RADEON X300 (M22 5460), MOBILITY FireGL V3100 (M22 5464),
	RADEON X600 (RV380 3E50), FireGL V3200 (RV380 3E54),
	MOBILITY RADEON X600 (M24 3150), MOBILITY RADEON X300 (M22 3152),
	MOBILITY FireGL V3200 (M24 3154), RADEON X800 (R420 4A48),
	RADEON X800 PRO (R420 4A49), RADEON X800 SE (R420 4A4A),
	RADEON X800 XT (R420 4A4B), RADEON X800 (R420 4A4C),
	FireGL X3-256 (R420 4A4D), MOBILITY RADEON 9800 (M18 4A4E),
	RADEON X800 XT Platinum Edition (R420 4A50), RADEON X800 (R423 5548),
	RADEON X800 PRO (R423 5549),
	RADEON X800 XT Platinum Edition (R423 554A),
	RADEON X800 SE (R423 554B), RADEON X800 XT (R423 5D57),
	FireGL V7100 (R423 5550), FireGL V5100 (R423 5551),
	MOBILITY RADEON X800 XT (M28 5D48), MOBILITY FireGL V5100 (M28 5D49),
	RADEON X800 XL (R430 554D), RADEON X800 (R430 554F),
	RADEON X850 XT Platinum Edition (R480 5D4D),
	RADEON X850 PRO (R480 5D4F), RADEON X850 XT (R480 5D52),
	MOBILITY FireGL V5000 (M26 564A), MOBILITY FireGL V5000 (M26 564B),
	FireGL V5000 (RV410 5E48), FireGL V3300 (RV410 5E49),
	RADEON X700 XT (RV410 5E4A), RADEON X700 PRO (RV410 5E4B),
	RADEON X700 SE (RV410 5E4C), RADEON X700 (RV410 5E4D),
	RADEON X700 (RV410 5E4F), MOBILITY RADEON X700 (M26 5652),
	MOBILITY RADEON X700 (M26 5653), RADEON 9100 IGP (RS300 5834),
	RADEON 9000 PRO/9100 PRO IGP (RS350 7834),
	MOBILITY RADEON 9000/9100 IGP (RS300M 5835),
	RADEON XPRESS 200 (RS400 5A41), RADEON XPRESS 200M (RS400 5A42),
	RADEON XPRESS 200 (RS480 5954), RADEON XPRESS 200M (RS480 5955),
	RADEON XPRESS 200 (RS482 5974), RADEON XPRESS 200M (RS482 5975),
	RADEON XPRESS 200 (RC410 5A61), RADEON XPRESS 200M (RC410 5A62)
(II) Primary Device is: PCI 01:00:0
(II) ATI Proprietary Linux Driver Version Identifier:8.16.20
(II) ATI Proprietary Linux Driver Release Identifier: @@UNRELEASED_AND_UNSUPPORTED_DRIVER@@
(II) ATI Proprietary Linux Driver Build Date: Aug 16 2005 00:14:49
(II) ATI Proprietary Linux Driver Build Information: autobuild-rel-r6-8.16.1-driver-lnx-206829
(--) Assigning device section with no busID to primary device
(--) Chipset MOBILITY RADEON X700 (M26 5653) found
(II) resource ranges after xf86ClaimFixedResources() call:
	[0] -1	0	0xffe00000 - 0xffffffff (0x200000) MX[B](B)
	[1] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[2] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[3] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[4] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[5] -1	0	0xc8200000 - 0xc820ffff (0x10000) MX[B]
	[6] -1	0	0xc8219000 - 0xc8219fff (0x1000) MX[B]
	[7] -1	0	0xc8214000 - 0xc8215fff (0x2000) MX[B]
	[8] -1	0	0xc8210000 - 0xc8213fff (0x4000) MX[B]
	[9] -1	0	0xc8217000 - 0xc82177ff (0x800) MX[B]
	[10] -1	0	0xc8000400 - 0xc80004ff (0x100) MX[B]
	[11] -1	0	0xc8000800 - 0xc80009ff (0x200) MX[B]
	[12] -1	0	0xc8000000 - 0xc80003ff (0x400) MX[B]
	[13] -1	0	0xc8100000 - 0xc810ffff (0x10000) MX[B](B)
	[14] -1	0	0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
	[15] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[16] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
	[17] -1	0	0x000020a0 - 0x000020bf (0x20) IX[B]
	[18] -1	0	0x000018c0 - 0x000018cf (0x10) IX[B]
	[19] -1	0	0x00002000 - 0x0000207f (0x80) IX[B]
	[20] -1	0	0x00002400 - 0x000024ff (0x100) IX[B]
	[21] -1	0	0x00001880 - 0x000018bf (0x40) IX[B]
	[22] -1	0	0x00001c00 - 0x00001cff (0x100) IX[B]
	[23] -1	0	0x00001860 - 0x0000187f (0x20) IX[B]
	[24] -1	0	0x00001840 - 0x0000185f (0x20) IX[B]
	[25] -1	0	0x00001820 - 0x0000183f (0x20) IX[B]
	[26] -1	0	0x00001800 - 0x0000181f (0x20) IX[B]
	[27] -1	0	0x00003000 - 0x000030ff (0x100) IX[B](B)
(II) fglrx(0): pEnt->device->identifier=0x8209728
(II) resource ranges after probing:
	[0] -1	0	0xffe00000 - 0xffffffff (0x200000) MX[B](B)
	[1] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[2] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[3] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[4] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[5] -1	0	0xc8200000 - 0xc820ffff (0x10000) MX[B]
	[6] -1	0	0xc8219000 - 0xc8219fff (0x1000) MX[B]
	[7] -1	0	0xc8214000 - 0xc8215fff (0x2000) MX[B]
	[8] -1	0	0xc8210000 - 0xc8213fff (0x4000) MX[B]
	[9] -1	0	0xc8217000 - 0xc82177ff (0x800) MX[B]
	[10] -1	0	0xc8000400 - 0xc80004ff (0x100) MX[B]
	[11] -1	0	0xc8000800 - 0xc80009ff (0x200) MX[B]
	[12] -1	0	0xc8000000 - 0xc80003ff (0x400) MX[B]
	[13] -1	0	0xc8100000 - 0xc810ffff (0x10000) MX[B](B)
	[14] -1	0	0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
	[15] 0	0	0x000a0000 - 0x000affff (0x10000) MS[B]
	[16] 0	0	0x000b0000 - 0x000b7fff (0x8000) MS[B]
	[17] 0	0	0x000b8000 - 0x000bffff (0x8000) MS[B]
	[18] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[19] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
	[20] -1	0	0x000020a0 - 0x000020bf (0x20) IX[B]
	[21] -1	0	0x000018c0 - 0x000018cf (0x10) IX[B]
	[22] -1	0	0x00002000 - 0x0000207f (0x80) IX[B]
	[23] -1	0	0x00002400 - 0x000024ff (0x100) IX[B]
	[24] -1	0	0x00001880 - 0x000018bf (0x40) IX[B]
	[25] -1	0	0x00001c00 - 0x00001cff (0x100) IX[B]
	[26] -1	0	0x00001860 - 0x0000187f (0x20) IX[B]
	[27] -1	0	0x00001840 - 0x0000185f (0x20) IX[B]
	[28] -1	0	0x00001820 - 0x0000183f (0x20) IX[B]
	[29] -1	0	0x00001800 - 0x0000181f (0x20) IX[B]
	[30] -1	0	0x00003000 - 0x000030ff (0x100) IX[B](B)
	[31] 0	0	0x000003b0 - 0x000003bb (0xc) IS[B]
	[32] 0	0	0x000003c0 - 0x000003df (0x20) IS[B]
(II) Setting vga for screen 0.
(II) fglrx(0): === [R200PreInit] === begin, [s]
(II) Loading sub module "vgahw"
(II) LoadModule: "vgahw"
(II) Loading /usr/X11R6/lib/modules/libvgahw.a
(II) Module vgahw: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 0.1.0
	ABI class: XFree86 Video Driver, version 0.6
(II) fglrx(0): PCI bus 1 card 0 func 0
(**) fglrx(0): Depth 24, (--) framebuffer bpp 32
(II) fglrx(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
(==) fglrx(0): Default visual is TrueColor
(==) fglrx(0): Qbs disabled
(==) fglrx(0): FAST_SWAP disabled
(==) fglrx(0): RGB weight 888
(II) fglrx(0): Using 8 bits per RGB (8 bit DAC)
(==) fglrx(0): Gamma Correction for I is 0x06419064
(==) fglrx(0): Gamma Correction for II is 0x06419064
(==) fglrx(0): Buffer Tiling is ON
(II) Loading sub module "int10"
(II) LoadModule: "int10"
(II) Reloading /usr/X11R6/lib/modules/linux/libint10.a
(II) fglrx(0): Primary V_BIOS segment is: 0xc000
(--) fglrx(0): Chipset: "MOBILITY RADEON X700 (M26 5653)" (Chipset = 0x5653)
(--) fglrx(0): (PciSubVendor = 0x1025, PciSubDevice = 0x0066)
(--) fglrx(0): board vendor info: third party graphics adapter - NOT original ATI
(--) fglrx(0): Linear framebuffer (phys) at 0xd0000000
(--) fglrx(0): MMIO registers at 0xc8100000
(II) Loading sub module "vbe"
(II) LoadModule: "vbe"
(II) Reloading /usr/X11R6/lib/modules/libvbe.a
(II) fglrx(0): VESA BIOS detected
(II) fglrx(0): VESA VBE Version 3.0
(II) fglrx(0): VESA VBE Total Mem: 16384 kB
(II) fglrx(0): VESA VBE OEM: ATI ATOMBIOS
(II) fglrx(0): VESA VBE OEM Software Rev: 9.10
(II) fglrx(0): VESA VBE OEM Vendor: (C) 1988-2003, ATI Technologies Inc. 
(II) fglrx(0): VESA VBE OEM Product: M26-P
(II) fglrx(0): VESA VBE OEM Product Rev: 01.00
(II) fglrx(0): ATI Video BIOS revision 9 or later detected
(II) fglrx(0): Video RAM override, using 131072 kB instead of 131072 kB
(**) fglrx(0): VideoRAM: 131072 kByte, Type: DDR1
(II) fglrx(0): PCIE card detected
(WW) fglrx(0): board is an unknown third party board, chipset is supported
(II) Loading sub module "ddc"
(II) LoadModule: "ddc"
(II) Reloading /usr/X11R6/lib/modules/libddc.a
(II) fglrx(0): Connected Display1: LCD on internal LVDS
(II) fglrx(0): Display1 EDID data ---------------------------
(II) fglrx(0): Manufacturer: QDS  Model: 1c  Serial#: 0
(II) fglrx(0): Year: 2005  Week: 0
(II) fglrx(0): EDID Version: 1.3
(II) fglrx(0): Digital Display Input
(II) fglrx(0): Max H-Image Size [cm]: horiz.: 33  vert.: 21
(II) fglrx(0): Gamma: 2.20
(II) fglrx(0): No DPMS capabilities specified; RGB/Color Display
(II) fglrx(0): First detailed timing is preferred mode
(II) fglrx(0): redX: 0.575 redY: 0.359   greenX: 0.319 greenY: 0.532
(II) fglrx(0): blueX: 0.155 blueY: 0.129   whiteX: 0.312 whiteY: 0.328
(II) fglrx(0): Manufacturer's mask: 0
(II) fglrx(0): Supported additional Video Mode:
(II) fglrx(0): clock: 68.9 MHz   Image Size:  331 x 207 mm
(II) fglrx(0): h_active: 1280  h_sync: 1301  h_sync_end 1333 h_blank_end 1408 h_border: 0
(II) fglrx(0): v_active: 800  v_sync: 804  v_sync_end 808 v_blanking: 816 v_border: 0
(II) fglrx(0):  QUANTADISPLAY
(II) fglrx(0):  QD15TL021
(II) fglrx(0): End of Display1 EDID data --------------------
(WW) fglrx(0): Specified desktop setup not supported: 8
(II) fglrx(0): Primary Controller - LCD on internal LVDS
(II) fglrx(0): Internal Desktop Setting: 0x00000004
(==) fglrx(0):  PseudoColor visuals disabled
(==) fglrx(0): Using gamma correction (1.0, 1.0, 1.0)
(==) fglrx(0): Center Mode is disabled 
(==) fglrx(0): TMDS coherent mode is enabled 
(II) fglrx(0): Total of 8 modes found for primary display.
(--) fglrx(0): Virtual size is 1024x768 (pitch 1024)
(**) fglrx(0): *Mode "1024x768": 68.9 MHz (scaled from 0.0 MHz), 48.9 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1024x768"   68.90  1024 1045 1077 1408  768 804 808 816
(**) fglrx(0): *Mode "800x600": 68.9 MHz (scaled from 0.0 MHz), 48.9 kHz, 60.0 Hz
(II) fglrx(0): Modeline "800x600"   68.90  800 821 853 1408  600 804 808 816
(**) fglrx(0): *Mode "640x480": 68.9 MHz (scaled from 0.0 MHz), 48.9 kHz, 60.0 Hz
(II) fglrx(0): Modeline "640x480"   68.90  640 661 693 1408  480 804 808 816
(**) fglrx(0):  Default mode "640x400": 68.9 MHz (scaled from 0.0 MHz), 48.9 kHz, 60.0 Hz
(II) fglrx(0): Modeline "640x400"   68.90  640 661 693 1408  400 804 808 816 -hsync -vsync
(**) fglrx(0):  Default mode "512x384": 68.9 MHz (scaled from 0.0 MHz), 48.9 kHz, 60.0 Hz
(II) fglrx(0): Modeline "512x384"   68.90  512 533 565 1408  384 804 808 816 -hsync
(**) fglrx(0):  Default mode "400x300": 68.9 MHz (scaled from 0.0 MHz), 48.9 kHz, 60.0 Hz
(II) fglrx(0): Modeline "400x300"   68.90  400 421 453 1408  600 804 808 816 -hsync
(**) fglrx(0):  Default mode "320x240": 68.9 MHz (scaled from 0.0 MHz), 48.9 kHz, 60.0 Hz
(II) fglrx(0): Modeline "320x240"   68.90  320 341 373 1408  480 804 808 816 -hsync
(**) fglrx(0):  Default mode "320x200": 68.9 MHz (scaled from 0.0 MHz), 48.9 kHz, 60.0 Hz
(II) fglrx(0): Modeline "320x200"   68.90  320 341 373 1408  400 804 808 816 -hsync -vsync
(--) fglrx(0): Display dimensions: (330, 210) mm
(--) fglrx(0): DPI set to (78, 92)
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/X11R6/lib/modules/libfb.a
(II) Module fb: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.0.0
	ABI class: XFree86 ANSI C Emulation, version 0.2
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Loading /usr/X11R6/lib/modules/libramdac.a
(II) Module ramdac: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 0.1.0
	ABI class: XFree86 Video Driver, version 0.6
(==) fglrx(0): NoAccel = NO
(II) Loading sub module "xaa"
(II) LoadModule: "xaa"
(II) Loading /usr/X11R6/lib/modules/libxaa.a
(II) Module xaa: vendor="The XFree86 Project"
	compiled for 4.3.0.1, module version = 1.1.0
	ABI class: XFree86 Video Driver, version 0.6
(==) fglrx(0): HPV inactive
(==) fglrx(0): FSAA enabled: NO
(==) fglrx(0): FSAA Gamma enabled
(==) fglrx(0): FSAA Multisample Position is fix
(==) fglrx(0): NoDRI = NO
(II) Loading sub module "fglrxdrm"
(II) LoadModule: "fglrxdrm"
(II) Loading /usr/X11R6/lib/modules/linux/libfglrxdrm.a
(II) Module fglrxdrm: vendor="FireGL - ATI Technologies Inc."
	compiled for 4.3.0.1, module version = 8.16.20
	ABI class: XFree86 Server Extension, version 0.2
(II) fglrx(0): Depth moves disabled by default
(==) fglrx(0): Capabilities: 0x00000000
(==) fglrx(0): CapabilitiesEx: 0x00000000
(==) fglrx(0): cpuFlags: 0x8000001d
(==) fglrx(0): cpuSpeedMHz: 0x0000063c
(==) fglrx(0): OpenGL ClientDriverName: "fglrx_dri.so"
(==) fglrx(0): UseFastTLS=0
(==) fglrx(0): BlockSignalsOnLock=1
(==) fglrx(0): EnablePrivateBackZ = NO
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC?  No, I don't.
(II) resource ranges after preInit:
	[0] 0	0	0xc8100000 - 0xc810ffff (0x10000) MX[B]
	[1] 0	0	0xd0000000 - 0xd7ffffff (0x8000000) MX[B]
	[2] -1	0	0xffe00000 - 0xffffffff (0x200000) MX[B](B)
	[3] -1	0	0x00100000 - 0x3fffffff (0x3ff00000) MX[B]E(B)
	[4] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[5] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[6] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[7] -1	0	0xc8200000 - 0xc820ffff (0x10000) MX[B]
	[8] -1	0	0xc8219000 - 0xc8219fff (0x1000) MX[B]
	[9] -1	0	0xc8214000 - 0xc8215fff (0x2000) MX[B]
	[10] -1	0	0xc8210000 - 0xc8213fff (0x4000) MX[B]
	[11] -1	0	0xc8217000 - 0xc82177ff (0x800) MX[B]
	[12] -1	0	0xc8000400 - 0xc80004ff (0x100) MX[B]
	[13] -1	0	0xc8000800 - 0xc80009ff (0x200) MX[B]
	[14] -1	0	0xc8000000 - 0xc80003ff (0x400) MX[B]
	[15] -1	0	0xc8100000 - 0xc810ffff (0x10000) MX[B](B)
	[16] -1	0	0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
	[17] 0	0	0x000a0000 - 0x000affff (0x10000) MS[B]
	[18] 0	0	0x000b0000 - 0x000b7fff (0x8000) MS[B]
	[19] 0	0	0x000b8000 - 0x000bffff (0x8000) MS[B]
	[20] 0	0	0x00003000 - 0x000030ff (0x100) IX[B]
	[21] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[22] -1	0	0x00000000 - 0x000000ff (0x100) IX[B]
	[23] -1	0	0x000020a0 - 0x000020bf (0x20) IX[B]
	[24] -1	0	0x000018c0 - 0x000018cf (0x10) IX[B]
	[25] -1	0	0x00002000 - 0x0000207f (0x80) IX[B]
	[26] -1	0	0x00002400 - 0x000024ff (0x100) IX[B]
	[27] -1	0	0x00001880 - 0x000018bf (0x40) IX[B]
	[28] -1	0	0x00001c00 - 0x00001cff (0x100) IX[B]
	[29] -1	0	0x00001860 - 0x0000187f (0x20) IX[B]
	[30] -1	0	0x00001840 - 0x0000185f (0x20) IX[B]
	[31] -1	0	0x00001820 - 0x0000183f (0x20) IX[B]
	[32] -1	0	0x00001800 - 0x0000181f (0x20) IX[B]
	[33] -1	0	0x00003000 - 0x000030ff (0x100) IX[B](B)
	[34] 0	0	0x000003b0 - 0x000003bb (0xc) IS[B]
	[35] 0	0	0x000003c0 - 0x000003df (0x20) IS[B]
(II) fglrx(0): UMM Bus area:     0xd0501000 (size=0x07aef000)
(II) fglrx(0): UMM area:     0xd0501000 (size=0x07aef000)
(II) fglrx(0): driver needs XFree86 4.3.x.y with x.y >= 0.1
(II) fglrx(0): detected XFree86 4.3.0.1
(II) Loading extension ATIFGLRXDRI
(II) fglrx(0): doing DRIScreenInit
drmOpenDevice: minor is 0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is -1, (Unknown error 999)
drmOpenDevice: open result is -1, (Unknown error 999)
drmOpenDevice: Open failed
drmOpenDevice: minor is 0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is -1, (Unknown error 999)
drmOpenDevice: open result is -1, (Unknown error 999)
drmOpenDevice: Open failed
[drm] failed to load kernel module "fglrx"
(II) fglrx(0): [drm] drmOpen failed
(EE) fglrx(0): DRIScreenInit failed!
(WW) fglrx(0): ***********************************************
(WW) fglrx(0): * DRI initialization failed!                  *
(WW) fglrx(0): * (maybe driver kernel module missing or bad) *
(WW) fglrx(0): * 2D acceleraton available (MMIO)             *
(WW) fglrx(0): * no 3D acceleration available                *
(WW) fglrx(0): ********************************************* *
(II) fglrx(0): FBADPhys: 0xd0000000 FBMappedSize: 0x07ff0000
(II) fglrx(0): Splitting WC range: base: 0xd0000000, size: 0x7ff0000
(II) fglrx(0): Splitting WC range: base: 0xd4000000, size: 0x3ff0000
(II) fglrx(0): Splitting WC range: base: 0xd6000000, size: 0x1ff0000
(II) fglrx(0): Splitting WC range: base: 0xd7000000, size: 0xff0000
(II) fglrx(0): Splitting WC range: base: 0xd7800000, size: 0x7f0000
(II) fglrx(0): Splitting WC range: base: 0xd7c00000, size: 0x3f0000
(II) fglrx(0): Splitting WC range: base: 0xd7e00000, size: 0x1f0000
(II) fglrx(0): Splitting WC range: base: 0xd7f00000, size: 0xf0000
(II) fglrx(0): Splitting WC range: base: 0xd7f80000, size: 0x70000
(II) fglrx(0): Splitting WC range: base: 0xd7fc0000, size: 0x30000
(==) fglrx(0): Write-combining range (0xd7fe0000,0x10000)
(==) fglrx(0): Write-combining range (0xd7fc0000,0x30000)
(==) fglrx(0): Write-combining range (0xd7f80000,0x70000)
(==) fglrx(0): Write-combining range (0xd7f00000,0xf0000)
(==) fglrx(0): Write-combining range (0xd7e00000,0x1f0000)
(==) fglrx(0): Write-combining range (0xd7c00000,0x3f0000)
(WW) fglrx(0): Failed to set up write-combining range (0xd7800000,0x7f0000)
(WW) fglrx(0): Failed to set up write-combining range (0xd7000000,0xff0000)
(WW) fglrx(0): Failed to set up write-combining range (0xd6000000,0x1ff0000)
(WW) fglrx(0): Failed to set up write-combining range (0xd4000000,0x3ff0000)
(WW) fglrx(0): Failed to set up write-combining range (0xd0000000,0x7ff0000)
(II) fglrx(0): FBMM initialized for area (0,0)-(1024,8191)
(II) fglrx(0): FBMM auto alloc for area (0,0)-(1024,768) (front color buffer - assumption)
(==) fglrx(0): Backing store disabled
(==) fglrx(0): Silken mouse enabled
(II) fglrx(0): Using hardware cursor (scanline 768)
(II) fglrx(0): Largest offscreen area available: 1024 x 7419
(**) Option "dpms"
(**) fglrx(0): DPMS enabled
(II) fglrx(0): Using XFree86 Acceleration Architecture (XAA)
	Screen to screen bit blits
	Solid filled rectangles
	Solid Horizontal and Vertical Lines
	Offscreen Pixmaps
	Setting up tile and stipple cache:
		32 128x128 slots
		32 256x256 slots
		16 512x512 slots
(II) fglrx(0): Acceleration enabled
(II) fglrx(0): Direct rendering disabled
(II) Loading extension FGLRXEXTENSION
(II) Loading extension ATITVOUT
(==) RandR enabled
(II) Setting vga for screen 0.
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension LBX
(II) Initializing built-in extension XC-APPGROUP
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFree86-Bigfont
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Keyboard "Generic Keyboard" handled by legacy driver
(**) Option "Protocol" "ImPS/2"
(**) Configured Mouse: Protocol: "ImPS/2"
(**) Option "CorePointer"
(**) Configured Mouse: Core Pointer
(**) Option "Device" "/dev/psaux"
(**) Option "Emulate3Buttons" "true"
(**) Configured Mouse: Emulate3Buttons, Emulate3Timeout: 50
(**) Option "ZAxisMapping" "4 5"
(**) Configured Mouse: ZAxisMapping: buttons 4 and 5
(**) Configured Mouse: Buttons: 5
(II) XINPUT: Adding extended input device "Configured Mouse" (type: MOUSE)
(II) Configured Mouse: ps2EnableDataReporting: succeeded
Warning: font renderer for ".pcf" already registered at priority 0
Warning: font renderer for ".pcf.Z" already registered at priority 0
Warning: font renderer for ".pcf.gz" already registered at priority 0
Warning: font renderer for ".snf" already registered at priority 0
Warning: font renderer for ".snf.Z" already registered at priority 0
Warning: font renderer for ".snf.gz" already registered at priority 0
Warning: font renderer for ".bdf" already registered at priority 0
Warning: font renderer for ".bdf.Z" already registered at priority 0
Warning: font renderer for ".bdf.gz" already registered at priority 0
Warning: font renderer for ".pmf" already registered at priority 0
Could not init font path element unix/:7100, removing from list!
SetClientVersion: 0 9
SetClientVersion: 0 8
SetGrabKeysState - disabled
SetGrabKeysState - enabled


Ich jetzt bereits hier gelesen, dass die Werte für
HorizSync 28-49
VertRefresh 43-72
zu ändern sein. Da ich aber zu dem LCD-Monitor des Laptops kein Handbuch habe, kenn e ich die erlaubte Werte nicht.
Andererseits würde ich gerne 1280x1024 als Auflösung einstellen können.

Kann mir hier jemand weiterhelfen?

Grüße und vielen Dank

Imagine

Koxi

User

  • »Koxi« ist männlich

Beiträge: 472

Registrierungsdatum: 19.07.2005

  • Nachricht senden

2

21.08.2005, 17:34

Bist Du WAHNSINNIG .. 719 Zeilen code (wo ggf 10 interessant sind) zu posten .. das liest sich ja kein mensch durch !!!

meine monitor section am notebook schaut so aus

Quellcode

1
2
3
4
Section "Monitor"
        Identifier      "Standardbildschirm"
        Option          "DPMS"
EndSection

und ich fahr bequeme 1680x1050er auflösung :)

also schmeiss mal das restliche zeugs raus
Pentium4 3.2GHz HT alias "tenshi"
PentiumM 1.7GHz alias "oni"
Pentium2 350MHz alias "server"
AMD Athlon 1000MHz alias "MAMElade"

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »Koxi« (21.08.2005, 17:35)


  • »Imagine« ist männlich
  • »Imagine« ist der Autor dieses Themas

Beiträge: 6

Registrierungsdatum: 21.08.2005

  • Nachricht senden

3

21.08.2005, 18:12

Hi,

vielen Dank für die Anttwort und Verzeihung für die 719-Codezeilen, hatte gedacht das ließe sich scrollen.

Aber ich Deinen Rat befolgt und HorizSync und VertRefresh rausgenommen. Neustart, allerdings läßt sich die Auflösung noch nicht höher stellen. Fehlt da noch etwas, was ich noch nicht drin habe?

Grüße

Imagine

Koxi

User

  • »Koxi« ist männlich

Beiträge: 472

Registrierungsdatum: 19.07.2005

  • Nachricht senden

4

21.08.2005, 18:15

ich hab nur die radeon 9600 Mobile .. aber hier ist meine Device und Screen section

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
Section "Device"
        Identifier      "ATI Technologies, Inc. Radeon Mobility 9600/9700 M10/M11 (RV350 NP)"
        Driver          "fglrx"
# === disable/enable XAA/DRI ===
    Option "no_accel"                   "no"
    Option "no_dri"                     "no"
# === misc DRI settings ===
    Option "mtrr"                       "off" # disable DRI mtrr mapper, driver has its own code for mtrr
# ### FireGL DDX driver module specific settings ###
# === Screen Management ===
    Option "DesktopSetup"               "0x00000100"
    Option "MonitorLayout"              "AUTO, NONE"
    Option "IgnoreEDID"                 "off"
    Option "HSync2"                     "unspecified"
    Option "VRefresh2"                  "unspecified"
    Option "ScreenOverlap"              "0"
# === TV-out Management ===
    Option "NoTV"                       "yes"
    Option "TVStandard"                 "NTSC-M"
    Option "TVHSizeAdj"                 "0"
    Option "TVVSizeAdj"                 "0"
    Option "TVHPosAdj"                  "0"
    Option "TVVPosAdj"                  "0"
    Option "TVHStartAdj"                "0"
    Option "TVColorAdj"                 "0"
    Option "GammaCorrectionI"           "0x00000000"
    Option "GammaCorrectionII"          "0x00000000"
# === OpenGL specific profiles/settings ===
    Option "Capabilities"               "0x00000000"
# === Video Overlay for the Xv extension ===
    Option "VideoOverlay"               "on"
# === OpenGL Overlay ===
# Note: When OpenGL Overlay is enabled, Video Overlay
#       will be disabled automatically
    Option "OpenGLOverlay"              "off"
# === Center Mode (Laptops only) ===
    Option "CenterMode"                 "off"
# === Pseudo Color Visuals (8-bit visuals) ===
    Option "PseudoColorVisuals"         "off"
# === QBS Management ===
    Option "Stereo"                     "off"
    Option "StereoSyncEnable"           "1"
# === FSAA Management ===
    Option "FSAAEnable"                 "no"
    Option "FSAAScale"                  "1"
    Option "FSAADisableGamma"           "no"
    Option "FSAACustomizeMSPos"         "no"
    Option "FSAAMSPosX0"                "0.000000"
    Option "FSAAMSPosY0"                "0.000000"
    Option "FSAAMSPosX1"                "0.000000"
    Option "FSAAMSPosY1"                "0.000000"
    Option "FSAAMSPosX2"                "0.000000"
    Option "FSAAMSPosY2"                "0.000000"
    Option "FSAAMSPosX3"                "0.000000"
    Option "FSAAMSPosY3"                "0.000000"
    Option "FSAAMSPosX4"                "0.000000"
    Option "FSAAMSPosY4"                "0.000000"
    Option "FSAAMSPosX5"                "0.000000"
    Option "FSAAMSPosY5"                "0.000000"
# === Misc Options ===
    Option "UseFastTLS"                 "0"
    Option "BlockSignalsOnLock"         "on"
    Option "UseInternalAGPGART"         "yes"
    Option "ForceGenericCPU"            "no"
    BusID "PCI:1:0:0"    # vendor=1002, device=4e50
    Screen 0
EndSection

Section "Screen"
        Identifier      "Default Screen"
        Device          "ATI Technologies, Inc. Radeon Mobility 9600/9700 M10/M11 (RV350 NP)"
        Monitor         "Standardbildschirm"
        DefaultDepth    24
        SubSection "Display"
                Depth           1
                Modes           "1680x1050"
        EndSubSection
        SubSection "Display"
                Depth           4
                Modes           "1680x1050"
        EndSubSection
        SubSection "Display"
                Depth           8
                Modes           "1680x1050"
        EndSubSection
        SubSection "Display"
                Depth           15
                Modes           "1680x1050"
        EndSubSection
        SubSection "Display"
                Depth           16
                Modes           "1680x1050" "1280x800" "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
                Depth           24
                Modes           "1680x1050" "1280x800" "1024x768" "800x600" "640x480"
        EndSubSection
EndSection


jetzt hab ich ein 1680er panel (16:10) .. schau halt was du brauchen kannst
Pentium4 3.2GHz HT alias "tenshi"
PentiumM 1.7GHz alias "oni"
Pentium2 350MHz alias "server"
AMD Athlon 1000MHz alias "MAMElade"

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »Koxi« (21.08.2005, 18:16)


  • »Imagine« ist männlich
  • »Imagine« ist der Autor dieses Themas

Beiträge: 6

Registrierungsdatum: 21.08.2005

  • Nachricht senden

5

21.08.2005, 19:54

Das sieht echt informativ aus. Aber wenn ich die xf86conf versuche zu verstehen,
dann greifen die "Modes" in "SubSection "Display"" auf die "Modelines" in "Section "Monitor"" zu. Richtig?

Ergo, wie gestalte ich ohne Monitorhandbuch in Section "Monitor"
die Modelines wie z.B.

Quellcode

1
Modeline "1280x960" 159.74 1280 1296 1552 1664 960 960 975 1003

Ich kenne diese HTimings-Werte und DotClock-Werte gar nicht. Oder doch?

Imagine

tf.bb

User

  • »tf.bb« ist männlich

Beiträge: 830

Registrierungsdatum: 10.08.2005

Derivat: Ubuntu

Architektur: 32-Bit PC

Andere Betriebssysteme: FreeBSD, Solaris 10 UltraSparc

  • Nachricht senden

6

22.08.2005, 09:54

Welches ist denn die native Auflösung deines LCD-Displays? 1280x1024 sind bei Notebooks recht ungwöhnlich. Meistens sind es bei 1280 Bildpunkten horizontal u. z.B. 960 vertikal.

Zitat

HorizSync 28-49
VertRefresh 43-72

28-49 sind für 960 oder 1024 Bildpunkte zu wenig. Da LCD's sich zwischen 60 und 70 Hz am wohlsten fühlen, würdest du für 60Hz 28-64 und für 70Hz 28-72 benötigen.
Da du ein Debian hast, könntest du zur Konfiguration ein "xf86cfg --textmode" (ich hoffe das war jetzt korrekt) verwenden. Das schreibt dir dann auch deine Modelines. Ich habe hiermit immer gute Erfahrungen gemacht.

Thomas

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »tf.bb« (22.08.2005, 09:54)


Koxi

User

  • »Koxi« ist männlich

Beiträge: 472

Registrierungsdatum: 19.07.2005

  • Nachricht senden

7

22.08.2005, 10:53

hier ist ein auszug aus meinem Xorg.0.log file wo es um die gefundenen modes geht

Quellcode

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
(WW) fglrx(0): Only single display is connected, DesktopOption will be ignored
(II) fglrx(0): DesktopSetup 0x0000
(II) fglrx(0): Panel ID string: 7T774^D154P1

(II) fglrx(0): Panel Size from BIOS: 1680x1050
(**) fglrx(0):  PseudoColor visuals disabled
(**) fglrx(0): Overlay disabled
(**) fglrx(0): Overlay disabled
(II) fglrx(0): PLL parameters: rf=2700 rd=6 min=20000 max=35000
(==) fglrx(0): Using gamma correction (1.0, 1.0, 1.0)
(**) fglrx(0): Center Mode is disabled
(==) fglrx(0): TMDS coherent mode is enabled
(II) fglrx(0): Valid mode using on-chip RMX: 1680x1050
(II) fglrx(0): Valid mode using on-chip RMX: 1280x800
(II) fglrx(0): Valid mode using on-chip RMX: 1024x768
(II) fglrx(0): Valid mode using on-chip RMX: 800x600
(II) fglrx(0): Valid mode using on-chip RMX: 640x480
(II) fglrx(0): Total 5 valid mode(s) found.
(--) fglrx(0): Virtual size is 1680x1050 (pitch 1728)
(**) fglrx(0): *Mode "1680x1050": 119.2 MHz (scaled from 0.0 MHz), 64.8 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1680x1050"  119.25  1680 1728 1760 1840  1050 1052 1058 1080
(**) fglrx(0): *Mode "1280x800": 119.2 MHz (scaled from 0.0 MHz), 64.8 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1280x800"  119.25  1280 1728 1760 1840  800 1052 1058 1080
(**) fglrx(0): *Mode "1024x768": 119.2 MHz (scaled from 0.0 MHz), 64.8 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1024x768"  119.25  1024 1728 1760 1840  768 1052 1058 1080
(**) fglrx(0): *Mode "800x600": 119.2 MHz (scaled from 0.0 MHz), 64.8 kHz, 60.0 Hz
(II) fglrx(0): Modeline "800x600"  119.25  800 1728 1760 1840  600 1052 1058 1080
(**) fglrx(0): *Mode "640x480": 119.2 MHz (scaled from 0.0 MHz), 64.8 kHz, 60.0 Hz
(II) fglrx(0): Modeline "640x480"  119.25  640 1728 1760 1840  480 1052 1058 1080
(==) fglrx(0): DPI set to (75, 75)
(II) Loading sub module "fb"
(II) LoadModule: "fb"


was schreib er bei dir
Pentium4 3.2GHz HT alias "tenshi"
PentiumM 1.7GHz alias "oni"
Pentium2 350MHz alias "server"
AMD Athlon 1000MHz alias "MAMElade"

  • »Imagine« ist männlich
  • »Imagine« ist der Autor dieses Themas

Beiträge: 6

Registrierungsdatum: 21.08.2005

  • Nachricht senden

8

22.08.2005, 10:56

Hi Thomas,

die native Auflösung ist 1024x700 und das Laoptop kann unter Windows bis 1280x800 Pixel. Okay und mit den Letzteren will ich arbeiten.

xf86cfg --textmode

liefert mir allerdings nur Infos über entladene oder geladene Module von Modelines sehe ich da nicht viel.

Und Du meinst das Ganze würde mit

Quellcode

1
2
 HorizSync 28-64
VertRefresh 28-72


funktionieren? Ich nehme mal an, ich muß bei

Quellcode

1
2
3
4
SubSection "Display"
		Depth		1
		Modes		"1280x800" "1152x764" "1024x700" "800x600" "640x480"
	EndSubSection


oder ähnlich korrigieren. Vielleicht weigert sich X die 1280 zu nehmen, weil das ein WXGA -LCD ist und nimmt dann Standard.

Jedenfalls vielen Dank für die lehrreichen Infos - wieder etwas zum Dazulernen.

Imagine

tf.bb

User

  • »tf.bb« ist männlich

Beiträge: 830

Registrierungsdatum: 10.08.2005

Derivat: Ubuntu

Architektur: 32-Bit PC

Andere Betriebssysteme: FreeBSD, Solaris 10 UltraSparc

  • Nachricht senden

9

22.08.2005, 10:57

@Koxi
Das Notebook wird vom Hersteller wie folgt beschrieben:

15.4" WXGA TFT LCD mit 1280 × 800 Pixel Auflösung, Breitbildformat 16:10

1280x1024 sind somit gar nicht drin. Da würden unten immer 224 Bilpunkte fehlen (wenn er Glück hat).

Thomas

Koxi

User

  • »Koxi« ist männlich

Beiträge: 472

Registrierungsdatum: 19.07.2005

  • Nachricht senden

10

22.08.2005, 10:59

@tf.bb

ich hab auch nie etwas von 1280x1024 geschrieben ... meine daten sind auch für ein 16:10 notebook und wenn du meine modlines anschaust kommt darin auch eine 1280x800er auflösung vor und keine 1280x1024er .. ich hab nur 1024x768 als kompatibilitätsauflösung für spiele drinn.


ausserdem sind sehr eigenartige modes in der modeline.

es gibt nur

1280x800, 1152x864, 1024x768

check mal deine modes .. die 1152 hat falsche höhe .. und 1024x640 würde die richtige 16:10er auflösung heissen.

im log file sollte dann eh drinnstehen obs die auflösung gibt
Pentium4 3.2GHz HT alias "tenshi"
PentiumM 1.7GHz alias "oni"
Pentium2 350MHz alias "server"
AMD Athlon 1000MHz alias "MAMElade"

Dieser Beitrag wurde bereits 3 mal editiert, zuletzt von »Koxi« (22.08.2005, 11:05)


tf.bb

User

  • »tf.bb« ist männlich

Beiträge: 830

Registrierungsdatum: 10.08.2005

Derivat: Ubuntu

Architektur: 32-Bit PC

Andere Betriebssysteme: FreeBSD, Solaris 10 UltraSparc

  • Nachricht senden

11

22.08.2005, 11:03

@Koxi
War auch nicht als Antwort auf deinen jetzigen Beitrag, geschweige denn alsKritik zu verstehen. Aber du hattest dich ja dem Problem ursprünglich angenommen und die Rede war ja anfänglich von 1280x1024 Bildpunkten.

tf.bb

User

  • »tf.bb« ist männlich

Beiträge: 830

Registrierungsdatum: 10.08.2005

Derivat: Ubuntu

Architektur: 32-Bit PC

Andere Betriebssysteme: FreeBSD, Solaris 10 UltraSparc

  • Nachricht senden

12

22.08.2005, 11:06

Bei mir auf dem Latitude 610 habe ich keine Modeline-Einträge.

Koxi

User

  • »Koxi« ist männlich

Beiträge: 472

Registrierungsdatum: 19.07.2005

  • Nachricht senden

13

22.08.2005, 11:07

das mag sein, jedoch ist sein problem eher allgemein und ich hab als antwort immer nur allgemein (mit meinen einstellungen) geantwortet und in meinen Posts ist nie von 1280x1024 die rede.

egal....auf jeden fall sind seine auflösungen etwas eigenartig.

ich hab auch keine modelines drinn, da der monitor ja die werte zurückgibt .. und wenn man ins Xorg.0.log (in /var/log) schaut, dann stehen die modelines die er verwendet drinn (und vor allem die er NICHT verwendet (weils sie nicht gehen))
Pentium4 3.2GHz HT alias "tenshi"
PentiumM 1.7GHz alias "oni"
Pentium2 350MHz alias "server"
AMD Athlon 1000MHz alias "MAMElade"

Dieser Beitrag wurde bereits 1 mal editiert, zuletzt von »Koxi« (22.08.2005, 11:08)


tf.bb

User

  • »tf.bb« ist männlich

Beiträge: 830

Registrierungsdatum: 10.08.2005

Derivat: Ubuntu

Architektur: 32-Bit PC

Andere Betriebssysteme: FreeBSD, Solaris 10 UltraSparc

  • Nachricht senden

14

22.08.2005, 11:12

Zitat

Und Du meinst das Ganze würde mit

HorizSync 28-64
VertRefresh 28-72

funktionieren? Ich nehme mal an, ich muß bei


Vom Prinzip schon, aber ... . VertRefresh müßte 50-72 z.B. lauten. Ist aber nicht so wild.
Bei 800 Bildpunkten hättest du für HorizSync 28-58

tf.bb

User

  • »tf.bb« ist männlich

Beiträge: 830

Registrierungsdatum: 10.08.2005

Derivat: Ubuntu

Architektur: 32-Bit PC

Andere Betriebssysteme: FreeBSD, Solaris 10 UltraSparc

  • Nachricht senden

15

22.08.2005, 11:15

Die Modelines sind in der Tat eigenartig und es wäre zu überlegen, sie zu entfernen.
<edit>Sorry! Ich war wohl gerade im falsche Film.</edit>. :)
Mein Display hat nur 1024x768. :(

Dieser Beitrag wurde bereits 3 mal editiert, zuletzt von »tf.bb« (22.08.2005, 11:24)


  • »Imagine« ist männlich
  • »Imagine« ist der Autor dieses Themas

Beiträge: 6

Registrierungsdatum: 21.08.2005

  • Nachricht senden

16

22.08.2005, 16:59

Hi,

ich danke Euch beiden! :) Ich habe jetzt zwei Dinge geändert:
1. Die modes im Verhältnis 16:10 angepaßt
2. Die Frequenz laut Thomas verändert.

Somit funktioniert die Auflösung 1280x800. Mir war ehrlich gesagt das mit den Frequenzen nicht klar und das mit dem Verhältnis auch erst nachdem ich es hier gelesen habe.

Also vielen Dank für die Unterstützung und vor allem die Diskussion. Die ist natürlich umso wertvoller, desto man mitnehmen kann.

Grüße

Imagine

17

16.09.2005, 16:53

Imagine: könntest Du deine config mal posten, ich hab ähnliche Probleme und würde gerne Deine Einstellungen testen. Danke !
Was ist der Mensch? Wo kommt er her? Warum ist er nicht da geblieben? (Matthias Beltz)

  • »Imagine« ist männlich
  • »Imagine« ist der Autor dieses Themas

Beiträge: 6

Registrierungsdatum: 21.08.2005

  • Nachricht senden

18

16.09.2005, 17:19

Aber klar doch Adalgisel-Grimo,

mache ich gerne! Hier is'se

MfG

Imagine

19

16.09.2005, 23:03

Besten Dank, imagine !

Hatte inzwischen (wie immer kurz vorm Verzweifeln) die Lösung durch massives googeln+trail&error in meiner XORG.CONF gefunden. Aber so dürfte dieser thread für einige Verzweifelte ne Fundgrube sein.

[VORSICHT: Mein Toshiba wurde natürlich vom Händler mit XP gelieftert, aber erst jetzt läuft die 3D-Karte richtig !!! Wer auf dieser Kiste BLENDER unter XP hatte braucht jetzt Anschnallgurte...]

Für Toshiba Satellite M30X mit ATI Mobility 9600 (fglrxinfo/ATI-control-Panel zeigen 9700 an) mit 15,4'' WXGA TFT 1280x800 gilt demnach:


Section "Files" #damit wurde 3D erkannt, aber Desktop nur 1024x768
FontPath "unix/:7100" # local font server
# if the local font server has problems, we can fall back on these
FontPath "/usr/lib/X11/fonts/misc"
FontPath "/usr/lib/X11/fonts/cyrillic"
FontPath "/usr/lib/X11/fonts/100dpi/:unscaled"
FontPath "/usr/lib/X11/fonts/75dpi/:unscaled"
FontPath "/usr/lib/X11/fonts/Type1"
FontPath "/usr/lib/X11/fonts/CID"
FontPath "/usr/lib/X11/fonts/100dpi"
FontPath "/usr/lib/X11/fonts/75dpi"
# paths to defoma fonts
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
FontPath "/var/lib/defoma/x-ttcidfont-conf.d/dirs/CID"
EndSection
Section "Monitor"
Identifier "Standardbildschirm"
Option "DPMS"
Modeline "1280x800" 83.91 1280 1312 1624 1656 800 816 824 841
DisplaySize 338 212 # 1280x800 96dpi
EndSection

#[...]

Section "Screen" #Bildschirmauflösung auf 1280x800 setzten
Identifier "Default Screen"
Device "ATI Technologies, Inc. Radeon Mobility 9600/9700 M10/M11 (RV350 NP)"
Monitor "Standardbildschirm"
DefaultDepth 24
SubSection "Display"
Depth 1
Modes "1280x800"
EndSubSection
SubSection "Display"
Depth 4
Modes "1280x800"
EndSubSection
SubSection "Display"
Depth 8
Modes "1280x800"
EndSubSection
SubSection "Display"
Depth 15
Modes "1280x800"
EndSubSection
SubSection "Display"
Depth 16
Modes "1280x800"
EndSubSection
SubSection "Display"
Depth 24
Modes "1280x800"
EndSubSection
EndSection

------------------------------------------------------------------------------------------------------------
Juchuhh !!!!

Danke an alle, die mir Weihnachten auf den 17.September verlegt haben !
Was ist der Mensch? Wo kommt er her? Warum ist er nicht da geblieben? (Matthias Beltz)