Toon posts:

[debian] ati driver

Pagina: 1
Acties:

Verwijderd

Topicstarter
Er is heel veel over te vinden, maar ik kom er nog steeds niet uit. Ik heb min of meer deze howto gevolgd in een poging om een 9200se werkend te krijgen onder kernel 2.6.8: http://xoomer.virgilio.it...rx-installer.html#install
Ik heb natuurlijk ook al agpart op yes en no gehad en dit verandert in de kernel, maar dit veranderde niks. Verder nog een paar dingetjes uitgeprobeert maar dat heeft niet geholpen.

Als ik startx doe werkt het maar met mesa, wat opvalt is:

(WW) fglrx: No matching Device section for instance (BusID PCI:3:0:1) found
(EE) fglrx(0): [agp] unable to acquire AGP, error "xf86_ENOMEM"
(EE) fglrx(0): cannot init AGP

Mijn xf86config is gemaakt volgens de howto, en mijn log van de xserver is:

code:
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
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
This is a pre-release version of XFree86, and is not supported in any
way.  Bugs may be reported to XFree86@XFree86.Org and patches submitted
to fixes@XFree86.Org.  Before reporting bugs in pre-release versions,
please check the latest version in the XFree86 CVS repository
(http://www.XFree86.Org/cvs).

XFree86 Version 4.3.0.1 (Debian 4.3.0.dfsg.1-8 20040928112350 fabbione@fabbione.net)
Release Date: 15 August 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.26 i686 [ELF] 
Build Date: 28 September 2004
    Before reporting problems, check http://www.XFree86.Org/
    to make sure that you have the latest version.
Module Loader present
OS Kernel: Linux version 2.6.8 (root@miep) (gcc versie 3.3.4 (Debian 1:3.3.4-13)) 
#1 Wed Dec 1 20:28:37 CET 2004 T
Markers: (--) probed, (**) from config file, (==) default setting,
         (++) from command line, (!!) notice, (II) informational,
         (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/XFree86.0.log", Time: Wed Dec  1 20:58:54 2004
(==) Using config file: "/etc/X11/XF86Config-4"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Default Screen" (0)
(**) |   |-->Monitor "Generic Monitor"
(**) |   |-->Device "ATI"
(**) |-->Input Device "Generic Keyboard"
(**) Option "XkbRules" "xfree86"
(**) XKB: rules: "xfree86"
(**) Option "XkbModel" "pc104"
(**) XKB: model: "pc104"
(**) Option "XkbLayout" "us"
(**) XKB: layout: "us"
(==) Keyboard: CustomKeycode disabled
(**) |-->Input Device "Configured Mouse"
(**) |-->Input Device "Generic 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 = 0x00000000, mode1Res1 = 0x80000000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 10de,01e0 card 1043,80ac rev c1 class 06,00,00 hdr 80
(II) PCI: 00:00:1: chip 10de,01eb card 1043,80ac rev c1 class 05,00,00 hdr 80
(II) PCI: 00:00:2: chip 10de,01ee card 1043,80ac rev c1 class 05,00,00 hdr 80
(II) PCI: 00:00:3: chip 10de,01ed card 1043,80ac rev c1 class 05,00,00 hdr 80
(II) PCI: 00:00:4: chip 10de,01ec card 1043,80ac rev c1 class 05,00,00 hdr 80
(II) PCI: 00:00:5: chip 10de,01ef card 1043,80ac rev c1 class 05,00,00 hdr 80
(II) PCI: 00:01:0: chip 10de,0060 card 1043,80ad rev a4 class 06,01,00 hdr 80
(II) PCI: 00:01:1: chip 10de,0064 card 1043,0c11 rev a2 class 0c,05,00 hdr 80
(II) PCI: 00:02:0: chip 10de,0067 card 1043,0c11 rev a4 class 0c,03,10 hdr 80
(II) PCI: 00:02:1: chip 10de,0067 card 1043,0c11 rev a4 class 0c,03,10 hdr 80
(II) PCI: 00:02:2: chip 10de,0068 card 1043,0c11 rev a4 class 0c,03,20 hdr 80
(II) PCI: 00:04:0: chip 10de,0066 card 1043,80a7 rev a1 class 02,00,00 hdr 00
(II) PCI: 00:05:0: chip 10de,006b card 1043,0c11 rev a2 class 04,01,00 hdr 00
(II) PCI: 00:06:0: chip 10de,006a card 1043,8095 rev a1 class 04,01,00 hdr 00
(II) PCI: 00:08:0: chip 10de,006c card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:09:0: chip 10de,0065 card 1043,0c11 rev a2 class 01,01,8a hdr 00
(II) PCI: 00:0c:0: chip 10de,006d card 0000,0000 rev a3 class 06,04,00 hdr 01
(II) PCI: 00:0d:0: chip 10de,006e card 1043,809a rev a3 class 0c,00,10 hdr 00
(II) PCI: 00:1e:0: chip 10de,01e8 card 0000,0000 rev c1 class 06,04,00 hdr 01
(II) PCI: 01:0b:0: chip 1095,3112 card 1095,6112 rev 02 class 01,04,00 hdr 00
(II) PCI: 02:01:0: chip 10b7,9201 card 1043,80ab rev 40 class 02,00,00 hdr 00
(II) PCI: 03:00:0: chip 1002,5964 card 1043,c008 rev 01 class 03,00,00 hdr 80
(II) PCI: 03:00:1: chip 1002,5d44 card 1043,c009 rev 01 class 03,80,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,3), 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-ISA bridge:
(II) Bus -1: bridge is at (0:1:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:8:0), (0,1,1), BCTRL: 0x0002 (VGA_EN is cleared)
(II) Bus 1 I/O range:
    [0] -1  0   0x00009000 - 0x0000afff (0x2000) IX[B]
(II) Bus 1 non-prefetchable memory range:
    [0] -1  0   0xe8000000 - 0xe9ffffff (0x2000000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:12:0), (0,2,2), BCTRL: 0x0002 (VGA_EN is cleared)
(II) Bus 2 I/O range:
    [0] -1  0   0x0000b000 - 0x0000bfff (0x1000) IX[B]
(II) Bus 2 non-prefetchable memory range:
    [0] -1  0   0xe4000000 - 0xe5ffffff (0x2000000) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 3: bridge is at (0:30:0), (0,3,3), BCTRL: 0x000a (VGA_EN is set)
(II) Bus 3 I/O range:
    [0] -1  0   0x0000c000 - 0x0000cfff (0x1000) IX[B]
(II) Bus 3 non-prefetchable memory range:
    [0] -1  0   0xe6000000 - 0xe7ffffff (0x2000000) MX[B]
(II) Bus 3 prefetchable memory range:
    [0] -1  0   0xd0000000 - 0xdfffffff (0x10000000) MX[B]
(--) PCI:*(3:0:0) ATI Technologies Inc unknown chipset (0x5964) rev 1, Mem @ 0xd0000000/27, 0xe7000000/16, I/O @ 0xc000/8
(--) PCI: (3:0:1) ATI Technologies Inc unknown chipset (0x5d44) rev 1, Mem @ 0xd8000000/27, 0xe7010000/16
(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) PCI Memory resource overlap reduced 0xe0000000 from 0xe3ffffff to 0xdfffffff
(II) Active PCI resource ranges:
    [0] -1  0   0xe5000000 - 0xe500007f (0x80) MX[B]
    [1] -1  0   0xe9000000 - 0xe90001ff (0x200) MX[B]
    [2] -1  0   0xea085000 - 0xea08503f (0x40) MX[B]
    [3] -1  0   0xea084000 - 0xea0847ff (0x800) MX[B]
    [4] -1  0   0xea080000 - 0xea080fff (0x1000) MX[B]
    [5] -1  0   0xea000000 - 0xea07ffff (0x80000) MX[B]
    [6] -1  0   0xea086000 - 0xea086fff (0x1000) MX[B]
    [7] -1  0   0xea083000 - 0xea0830ff (0x100) MX[B]
    [8] -1  0   0xea082000 - 0xea082fff (0x1000) MX[B]
    [9] -1  0   0xea087000 - 0xea087fff (0x1000) MX[B]
    [10] -1 0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
    [11] -1 0   0xe7000000 - 0xe700ffff (0x10000) MX[B](B)
    [12] -1 0   0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
    [13] -1 0   0x0000b000 - 0x0000b07f (0x80) IX[B]
    [14] -1 0   0x0000a000 - 0x0000a00f (0x10) IX[B]
    [15] -1 0   0x00009c00 - 0x00009c03 (0x4) IX[B]
    [16] -1 0   0x00009800 - 0x00009807 (0x8) IX[B]
    [17] -1 0   0x00009400 - 0x00009403 (0x4) IX[B]
    [18] -1 0   0x00009000 - 0x00009007 (0x8) IX[B]
    [19] -1 0   0x0000f000 - 0x0000f00f (0x10) IX[B]
    [20] -1 0   0x0000d000 - 0x0000d07f (0x80) IX[B]
    [21] -1 0   0x0000e400 - 0x0000e4ff (0x100) IX[B]
    [22] -1 0   0x0000e000 - 0x0000e007 (0x8) IX[B]
    [23] -1 0   0x0000dc00 - 0x0000dc1f (0x20) IX[B]
    [24] -1 0   0x0000c000 - 0x0000c0ff (0x100) IX[B](B)
(II) Inactive PCI resource ranges:
    [0] -1  0   0xe7010000 - 0xe701ffff (0x10000) MX[B](B)
    [1] -1  0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
(II) Active PCI resource ranges after removing overlaps:
    [0] -1  0   0xe5000000 - 0xe500007f (0x80) MX[B]
    [1] -1  0   0xe9000000 - 0xe90001ff (0x200) MX[B]
    [2] -1  0   0xea085000 - 0xea08503f (0x40) MX[B]
    [3] -1  0   0xea084000 - 0xea0847ff (0x800) MX[B]
    [4] -1  0   0xea080000 - 0xea080fff (0x1000) MX[B]
    [5] -1  0   0xea000000 - 0xea07ffff (0x80000) MX[B]
    [6] -1  0   0xea086000 - 0xea086fff (0x1000) MX[B]
    [7] -1  0   0xea083000 - 0xea0830ff (0x100) MX[B]
    [8] -1  0   0xea082000 - 0xea082fff (0x1000) MX[B]
    [9] -1  0   0xea087000 - 0xea087fff (0x1000) MX[B]
    [10] -1 0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
    [11] -1 0   0xe7000000 - 0xe700ffff (0x10000) MX[B](B)
    [12] -1 0   0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
    [13] -1 0   0x0000b000 - 0x0000b07f (0x80) IX[B]
    [14] -1 0   0x0000a000 - 0x0000a00f (0x10) IX[B]
    [15] -1 0   0x00009c00 - 0x00009c03 (0x4) IX[B]
    [16] -1 0   0x00009800 - 0x00009807 (0x8) IX[B]
    [17] -1 0   0x00009400 - 0x00009403 (0x4) IX[B]
    [18] -1 0   0x00009000 - 0x00009007 (0x8) IX[B]
    [19] -1 0   0x0000f000 - 0x0000f00f (0x10) IX[B]
    [20] -1 0   0x0000d000 - 0x0000d07f (0x80) IX[B]
    [21] -1 0   0x0000e400 - 0x0000e4ff (0x100) IX[B]
    [22] -1 0   0x0000e000 - 0x0000e007 (0x8) IX[B]
    [23] -1 0   0x0000dc00 - 0x0000dc1f (0x20) IX[B]
    [24] -1 0   0x0000c000 - 0x0000c0ff (0x100) IX[B](B)
(II) Inactive PCI resource ranges after removing overlaps:
    [0] -1  0   0xe7010000 - 0xe701ffff (0x10000) MX[B](B)
    [1] -1  0   0xd8000000 - 0xdfffffff (0x8000000) MX[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   0xe5000000 - 0xe500007f (0x80) MX[B]
    [6] -1  0   0xe9000000 - 0xe90001ff (0x200) MX[B]
    [7] -1  0   0xea085000 - 0xea08503f (0x40) MX[B]
    [8] -1  0   0xea084000 - 0xea0847ff (0x800) MX[B]
    [9] -1  0   0xea080000 - 0xea080fff (0x1000) MX[B]
    [10] -1 0   0xea000000 - 0xea07ffff (0x80000) MX[B]
    [11] -1 0   0xea086000 - 0xea086fff (0x1000) MX[B]
    [12] -1 0   0xea083000 - 0xea0830ff (0x100) MX[B]
    [13] -1 0   0xea082000 - 0xea082fff (0x1000) MX[B]
    [14] -1 0   0xea087000 - 0xea087fff (0x1000) MX[B]
    [15] -1 0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
    [16] -1 0   0xe7000000 - 0xe700ffff (0x10000) MX[B](B)
    [17] -1 0   0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
    [18] -1 0   0xe7010000 - 0xe701ffff (0x10000) MX[B](B)
    [19] -1 0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
    [20] -1 0   0x0000ffff - 0x0000ffff (0x1) IX[B]
    [21] -1 0   0x00000000 - 0x000000ff (0x100) IX[B]
    [22] -1 0   0x0000b000 - 0x0000b07f (0x80) IX[B]
    [23] -1 0   0x0000a000 - 0x0000a00f (0x10) IX[B]
    [24] -1 0   0x00009c00 - 0x00009c03 (0x4) IX[B]
    [25] -1 0   0x00009800 - 0x00009807 (0x8) IX[B]
    [26] -1 0   0x00009400 - 0x00009403 (0x4) IX[B]
    [27] -1 0   0x00009000 - 0x00009007 (0x8) IX[B]
    [28] -1 0   0x0000f000 - 0x0000f00f (0x10) IX[B]
    [29] -1 0   0x0000d000 - 0x0000d07f (0x80) IX[B]
    [30] -1 0   0x0000e400 - 0x0000e4ff (0x100) IX[B]
    [31] -1 0   0x0000e000 - 0x0000e007 (0x8) IX[B]
    [32] -1 0   0x0000dc00 - 0x0000dc1f (0x20) IX[B]
    [33] -1 0   0x0000c000 - 0x0000c0ff (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: "extmod"
(II) Reloading /usr/X11R6/lib/modules/extensions/libextmod.a
(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: "extmod"
(II) Reloading /usr/X11R6/lib/modules/extensions/libextmod.a
(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 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: "fglrx"
(II) Loading /usr/X11R6/lib/modules/drivers/fglrx_drv.o
(II) Module fglrx: vendor="Fire GL - ATI Research GmbH, Germany"
    compiled for 4.3.0.1, module version = 3.14.6
    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) FireGL8700/8800: Driver for chipset: ATI RV250 Id (R9000),
    ATI RV250 Ie (R9000), ATI RV250 If (R9000), ATI RV250 Ig (R9000),
    ATI RV250 Ld (M9), ATI RV250 Le (M9), ATI RV250 Lf (M9),
    ATI RV250 Lg (M9), ATI RV280 5960 (R9200 PRO),
    ATI RV280 Ya (R9200LE), ATI RV250SE Yd (R9200SE),
    ATI RV250 5C61 (M9+), ATI RV250 5C63 (M9+), ATI R200 QH (R8500),
    ATI R200 QL (R8500), ATI R200 QM (R9100), ATI R200 QT (R8500),
    ATI R200 QU (R9100), ATI R200 BB (R8500), ATI RV350 AP (R9600),
    ATI RV350SE AQ (R9600SE), ATI RV350 AR (R9600 PRO),
    ATI RV350 NP (M10), ATI R300 AD (R9500), ATI R300 AE (R9500),
    ATI R300 AF (R9500), ATI R300 AG (Fire GL Z1/X1),
    ATI R300 ND (R9700 PRO), ATI R300 NE (R9700/R9500 PRO),
    ATI R300 NF (R9600 TX), ATI R300 NG (Fire GL X1),
    ATI R350SE AH (R9800SE), ATI R350 AK (Fire GL unknown),
    ATI RV350 AS (Fire GL T2), ATI RV350 AT (Fire GL T2),
    ATI RV350 AU (Fire GL T2), ATI RV350 AV (Fire GL T2),
    ATI RV350 AW (Fire GL T2), ATI R350 NH (R9800),
    ATI R350LE NI (R9800LE), ATI R350 NJ (R9800),
    ATI R350 NK (Fire GL X2), ATI RV350 NT (WS/M10), ATI RV370 5B60,
    ATI RV370 5B61, ATI RV370 5B62, ATI RV370 5B63, ATI RV370 5B64,
    ATI RV370 5B66, ATI RV370 5B67, ATI RV370 5B70, ATI RV370 5B71,
    ATI RV370 5B72, ATI RV370 5B73, ATI RV370 5460, ATI RV370 5461,
    ATI RV370 5462, ATI RV370 5463, ATI RV370 5464, ATI RV370 5465,
    ATI RV370 5466, ATI RV370 5467, ATI RV370 5470, ATI RV370 5471,
    ATI RV370 5472, ATI RV370 5473, ATI RV380 AP, ATI RV380 AQ,
    ATI RV380 AR, ATI RV380 AS, ATI RV380 AT, ATI RV380 AU, ATI RV380 AV,
    ATI RV380 AW, ATI RV380 AP2, ATI RV380 AQ2, ATI RV380 AR2,
    ATI RV380 AS2, ATI RV380 NP, ATI RV380 NQ, ATI RV380 NR,
    ATI RV380 NS, ATI RV380 NT, ATI RV380 NU, ATI RV380 NV, ATI RV380 NW,
    ATI RV380 NP2, ATI RV380 NQ2, ATI RV380 NR2, ATI RV380 NS2,
    ATI R420 JH, ATI R420 JI, ATI R420 JJ, ATI R420 JK, ATI R420 JL,
    ATI R420 JM, ATI R420 JN, ATI R420 JP, ATI R423 UH, ATI R423 UI,
    ATI R423 UJ, ATI R423 UK, ATI R423 UL, ATI R423 UM, ATI R423 ]W,
    ATI R423 UP, ATI R423 UQ, ATI R423 UR, ATI R423 UT, ATI R423 ]H,
    ATI R423 ]I, ATI RV410 VJ, ATI RV410 VK, ATI RV410 VL, ATI RV410 VM,
    ATI RV410 ^H, ATI RV410 ^I, ATI RV410 ^J, ATI RV410 ^K, ATI RV410 ^L,
    ATI RV410 ^M, ATI RV410 ^O, ATI RV410 VR, ATI RV410 VS, ATI RV410 ^R,
    ATI RV410 ^S, ATI RV410 ^U, ATI RS300 IGP, ATI RS350 IGP,
    ATI RS300M IGP
(II) Primary Device is: PCI 03:00:0
(--) Assigning device section with no busID to primary device
(WW) fglrx: No matching Device section for instance (BusID PCI:3:0:1) found
(--) Chipset ATI RV250SE Yd (R9200SE) 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   0xe5000000 - 0xe500007f (0x80) MX[B]
    [6] -1  0   0xe9000000 - 0xe90001ff (0x200) MX[B]
    [7] -1  0   0xea085000 - 0xea08503f (0x40) MX[B]
    [8] -1  0   0xea084000 - 0xea0847ff (0x800) MX[B]
    [9] -1  0   0xea080000 - 0xea080fff (0x1000) MX[B]
    [10] -1 0   0xea000000 - 0xea07ffff (0x80000) MX[B]
    [11] -1 0   0xea086000 - 0xea086fff (0x1000) MX[B]
    [12] -1 0   0xea083000 - 0xea0830ff (0x100) MX[B]
    [13] -1 0   0xea082000 - 0xea082fff (0x1000) MX[B]
    [14] -1 0   0xea087000 - 0xea087fff (0x1000) MX[B]
    [15] -1 0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
    [16] -1 0   0xe7000000 - 0xe700ffff (0x10000) MX[B](B)
    [17] -1 0   0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
    [18] -1 0   0xe7010000 - 0xe701ffff (0x10000) MX[B](B)
    [19] -1 0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
    [20] -1 0   0x0000ffff - 0x0000ffff (0x1) IX[B]
    [21] -1 0   0x00000000 - 0x000000ff (0x100) IX[B]
    [22] -1 0   0x0000b000 - 0x0000b07f (0x80) IX[B]
    [23] -1 0   0x0000a000 - 0x0000a00f (0x10) IX[B]
    [24] -1 0   0x00009c00 - 0x00009c03 (0x4) IX[B]
    [25] -1 0   0x00009800 - 0x00009807 (0x8) IX[B]
    [26] -1 0   0x00009400 - 0x00009403 (0x4) IX[B]
    [27] -1 0   0x00009000 - 0x00009007 (0x8) IX[B]
    [28] -1 0   0x0000f000 - 0x0000f00f (0x10) IX[B]
    [29] -1 0   0x0000d000 - 0x0000d07f (0x80) IX[B]
    [30] -1 0   0x0000e400 - 0x0000e4ff (0x100) IX[B]
    [31] -1 0   0x0000e000 - 0x0000e007 (0x8) IX[B]
    [32] -1 0   0x0000dc00 - 0x0000dc1f (0x20) IX[B]
    [33] -1 0   0x0000c000 - 0x0000c0ff (0x100) IX[B](B)
(II) fglrx(0): pEnt->device->identifier=0x82076a8
(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   0xe5000000 - 0xe500007f (0x80) MX[B]
    [6] -1  0   0xe9000000 - 0xe90001ff (0x200) MX[B]
    [7] -1  0   0xea085000 - 0xea08503f (0x40) MX[B]
    [8] -1  0   0xea084000 - 0xea0847ff (0x800) MX[B]
    [9] -1  0   0xea080000 - 0xea080fff (0x1000) MX[B]
    [10] -1 0   0xea000000 - 0xea07ffff (0x80000) MX[B]
    [11] -1 0   0xea086000 - 0xea086fff (0x1000) MX[B]
    [12] -1 0   0xea083000 - 0xea0830ff (0x100) MX[B]
    [13] -1 0   0xea082000 - 0xea082fff (0x1000) MX[B]
    [14] -1 0   0xea087000 - 0xea087fff (0x1000) MX[B]
    [15] -1 0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
    [16] -1 0   0xe7000000 - 0xe700ffff (0x10000) MX[B](B)
    [17] -1 0   0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
    [18] -1 0   0xe7010000 - 0xe701ffff (0x10000) MX[B](B)
    [19] -1 0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
    [20] 0  0   0x000a0000 - 0x000affff (0x10000) MS[B]
    [21] 0  0   0x000b0000 - 0x000b7fff (0x8000) MS[B]
    [22] 0  0   0x000b8000 - 0x000bffff (0x8000) MS[B]
    [23] -1 0   0x0000ffff - 0x0000ffff (0x1) IX[B]
    [24] -1 0   0x00000000 - 0x000000ff (0x100) IX[B]
    [25] -1 0   0x0000b000 - 0x0000b07f (0x80) IX[B]
    [26] -1 0   0x0000a000 - 0x0000a00f (0x10) IX[B]
    [27] -1 0   0x00009c00 - 0x00009c03 (0x4) IX[B]
    [28] -1 0   0x00009800 - 0x00009807 (0x8) IX[B]
    [29] -1 0   0x00009400 - 0x00009403 (0x4) IX[B]
    [30] -1 0   0x00009000 - 0x00009007 (0x8) IX[B]
    [31] -1 0   0x0000f000 - 0x0000f00f (0x10) IX[B]
    [32] -1 0   0x0000d000 - 0x0000d07f (0x80) IX[B]
    [33] -1 0   0x0000e400 - 0x0000e4ff (0x100) IX[B]
    [34] -1 0   0x0000e000 - 0x0000e007 (0x8) IX[B]
    [35] -1 0   0x0000dc00 - 0x0000dc1f (0x20) IX[B]
    [36] -1 0   0x0000c000 - 0x0000c0ff (0x100) IX[B](B)
    [37] 0  0   0x000003b0 - 0x000003bb (0xc) IS[B]
    [38] 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 3 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): Option "OpenGLOverlay" "off"
(**) fglrx(0): Option "VideoOverlay" "on"
(==) fglrx(0): Qbs 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): initializing int10
(II) fglrx(0): Primary V_BIOS segment is: 0xc000
(--) fglrx(0): Chipset: "ATI RV250SE Yd (R9200SE)" (Chipset = 0x5964)
(--) fglrx(0): (PciSubVendor = 0x1043, PciSubDevice = 0xc008)
(--) fglrx(0): board vendor info: third party grafics adapter - NOT original ATI
(--) fglrx(0): Linear framebuffer (phys) at 0xd0000000
(--) fglrx(0): MMIO registers at 0xe7000000
(--) fglrx(0): ChipExtRevID = 0x01
(--) fglrx(0): ChipIntRevID = 0x00
(--) fglrx(0): VideoRAM: 131072 kByte (64-bit DDR SDRAM)
(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) Loading sub module "i2c"
(II) LoadModule: "i2c"
(II) Loading /usr/X11R6/lib/modules/libi2c.a
(II) Module i2c: vendor="The XFree86 Project"
    compiled for 4.3.0.1, module version = 1.2.0
    ABI class: XFree86 Video Driver, version 0.6
(II) fglrx(0): I2C bus "DDC" initialized.
(II) fglrx(0): Connector Layout from BIOS -------- 
(II) fglrx(0): Connector1: DDCType-3, DACType-0, TMDSType--1, ConnectorType-2
(II) fglrx(0): I2C device "DDC:ddc2" registered at address 0xA0.
(II) fglrx(0): I2C device "DDC:ddc2" removed.
(II) fglrx(0): I2C device "DDC:ddc2" registered at address 0xA0.
(II) fglrx(0): I2C device "DDC:ddc2" removed.
(II) fglrx(0): I2C device "DDC:ddc2" registered at address 0xA0.
(II) fglrx(0): I2C device "DDC:ddc2" removed.
(II) fglrx(0): DDC detected on DDCType 3 with Monitor Type 0
(II) fglrx(0): Primary head:
 Monitor   -- NONE
 Connector -- None
 DAC Type  -- Unknown
 TMDS Type -- NONE
 DDC Type  -- NONE
(II) fglrx(0): Secondary head:
 Monitor   -- CRT
 Connector -- VGA
 DAC Type  -- Primary
 TMDS Type -- NONE
 DDC Type  -- VGA_DDC
(II) fglrx(0): 
(II) fglrx(0): DesktopSetup 0x0000
(==) fglrx(0):  PseudoColor visuals disabled
(==) fglrx(0): Overlay disabled
(**) fglrx(0): Overlay disabled
(II) fglrx(0): PLL parameters: rf=2700 rd=12 min=20000 max=40000
(==) 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): Generic Monitor: Using hsync range of 30.00-70.00 kHz
(II) fglrx(0): Generic Monitor: Using vrefresh range of 50.00-160.00 Hz
(II) fglrx(0): Clock range:  20.00 to 400.00 MHz
(II) fglrx(0): Not using default mode "320x175" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "320x200" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "360x200" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "320x240" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "400x300" (bad mode clock/interlace/doublescan)
(II) fglrx(0): Not using default mode "1280x960" (hsync out of range)
(II) fglrx(0): Not using default mode "640x480" (hsync out of range)
(II) fglrx(0): Not using default mode "1280x1024" (hsync out of range)
(II) fglrx(0): Not using default mode "640x512" (hsync out of range)
(II) fglrx(0): Not using default mode "1280x1024" (hsync out of range)
(II) fglrx(0): Not using default mode "640x512" (hsync out of range)
(II) fglrx(0): Not using default mode "1600x1200" (hsync out of range)
(II) fglrx(0): Not using default mode "800x600" (hsync out of range)
(II) fglrx(0): Not using default mode "1600x1200" (hsync out of range)
(II) fglrx(0): Not using default mode "800x600" (hsync out of range)
(II) fglrx(0): Not using default mode "1600x1200" (hsync out of range)
(II) fglrx(0): Not using default mode "800x600" (hsync out of range)
(II) fglrx(0): Not using default mode "1600x1200" (hsync out of range)
(II) fglrx(0): Not using default mode "800x600" (hsync out of range)
(II) fglrx(0): Not using default mode "1600x1200" (hsync out of range)
(II) fglrx(0): Not using default mode "800x600" (hsync out of range)
(II) fglrx(0): Not using default mode "1792x1344" (hsync out of range)
(II) fglrx(0): Not using default mode "896x672" (hsync out of range)
(II) fglrx(0): Not using default mode "1792x1344" (hsync out of range)
(II) fglrx(0): Not using default mode "896x672" (hsync out of range)
(II) fglrx(0): Not using default mode "1856x1392" (hsync out of range)
(II) fglrx(0): Not using default mode "928x696" (hsync out of range)
(II) fglrx(0): Not using default mode "1856x1392" (hsync out of range)
(II) fglrx(0): Not using default mode "928x696" (hsync out of range)
(II) fglrx(0): Not using default mode "1920x1440" (hsync out of range)
(II) fglrx(0): Not using default mode "960x720" (hsync out of range)
(II) fglrx(0): Not using default mode "1920x1440" (hsync out of range)
(II) fglrx(0): Not using default mode "960x720" (hsync out of range)
(II) fglrx(0): Not using default mode "1400x1050" (hsync out of range)
(II) fglrx(0): Not using default mode "700x525" (hsync out of range)
(II) fglrx(0): Not using default mode "1920x1440" (hsync out of range)
(II) fglrx(0): Not using default mode "960x720" (hsync out of range)
(II) fglrx(0): Not using default mode "2048x1536" (hsync out of range)
(II) fglrx(0): Not using default mode "1024x768" (hsync out of range)
(II) fglrx(0): Not using default mode "2048x1536" (hsync out of range)
(II) fglrx(0): Not using default mode "1024x768" (hsync out of range)
(II) fglrx(0): Not using default mode "2048x1536" (hsync out of range)
(II) fglrx(0): Not using default mode "1024x768" (hsync out of range)
(II) fglrx(0): Not using default mode "1400x1050" (width too large for virtual size)
(--) fglrx(0): Virtual size is 1280x1024 (pitch 1280)
(**) fglrx(0): *Default mode "1280x1024": 108.0 MHz, 64.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1280x1024"  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync
(**) fglrx(0): *Default mode "1280x960": 108.0 MHz, 60.0 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1280x960"  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync
(**) fglrx(0): *Default mode "1152x864": 108.0 MHz, 67.5 kHz, 75.0 Hz
(II) fglrx(0): Modeline "1152x864"  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync
(**) fglrx(0): *Default mode "1024x768": 94.5 MHz, 68.7 kHz, 85.0 Hz
(II) fglrx(0): Modeline "1024x768"   94.50  1024 1072 1168 1376  768 769 772 808 +hsync +vsync
(**) fglrx(0): *Default mode "800x600": 56.3 MHz, 53.7 kHz, 85.1 Hz
(II) fglrx(0): Modeline "800x600"   56.30  800 832 896 1048  600 601 604 631 +hsync +vsync
(**) fglrx(0): *Default mode "640x480": 36.0 MHz, 43.3 kHz, 85.0 Hz
(II) fglrx(0): Modeline "640x480"   36.00  640 696 752 832  480 481 484 509 -hsync -vsync
(**) fglrx(0):  Default mode "1152x768": 65.0 MHz, 44.2 kHz, 54.8 Hz
(II) fglrx(0): Modeline "1152x768"   65.00  1152 1178 1314 1472  768 771 777 806 +hsync +vsync
(**) fglrx(0):  Default mode "1024x768": 78.8 MHz, 60.1 kHz, 75.1 Hz
(II) fglrx(0): Modeline "1024x768"   78.80  1024 1040 1136 1312  768 769 772 800 +hsync +vsync
(**) fglrx(0):  Default mode "1024x768": 75.0 MHz, 56.5 kHz, 70.1 Hz
(II) fglrx(0): Modeline "1024x768"   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync
(**) fglrx(0):  Default mode "1024x768": 65.0 MHz, 48.4 kHz, 60.0 Hz
(II) fglrx(0): Modeline "1024x768"   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync
(**) fglrx(0):  Default mode "1024x768": 44.9 MHz, 35.5 kHz, 87.1 Hz (I)
(II) fglrx(0): Modeline "1024x768"   44.90  1024 1032 1208 1264  768 768 776 817 interlace +hsync +vsync
(**) fglrx(0):  Default mode "832x624": 57.3 MHz, 49.7 kHz, 74.6 Hz
(II) fglrx(0): Modeline "832x624"   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync
(**) fglrx(0):  Default mode "800x600": 49.5 MHz, 46.9 kHz, 75.0 Hz
(II) fglrx(0): Modeline "800x600"   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync
(**) fglrx(0):  Default mode "800x600": 50.0 MHz, 48.1 kHz, 72.2 Hz
(II) fglrx(0): Modeline "800x600"   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync
(**) fglrx(0):  Default mode "800x600": 40.0 MHz, 37.9 kHz, 60.3 Hz
(II) fglrx(0): Modeline "800x600"   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync
(**) fglrx(0):  Default mode "800x600": 36.0 MHz, 35.2 kHz, 56.2 Hz
(II) fglrx(0): Modeline "800x600"   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync
(**) fglrx(0):  Default mode "700x525": 61.0 MHz, 64.9 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "700x525"   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "640x512": 54.0 MHz, 64.0 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "640x512"   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "640x480": 31.5 MHz, 37.5 kHz, 75.0 Hz
(II) fglrx(0): Modeline "640x480"   31.50  640 656 720 840  480 481 484 500 -hsync -vsync
(**) fglrx(0):  Default mode "640x480": 31.5 MHz, 37.9 kHz, 72.8 Hz
(II) fglrx(0): Modeline "640x480"   31.50  640 664 704 832  480 489 491 520 -hsync -vsync
(**) fglrx(0):  Default mode "640x480": 25.2 MHz, 31.5 kHz, 60.0 Hz
(II) fglrx(0): Modeline "640x480"   25.20  640 656 752 800  480 490 492 525 -hsync -vsync
(**) fglrx(0):  Default mode "640x480": 54.0 MHz, 60.0 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "640x480"   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "720x400": 35.5 MHz, 37.9 kHz, 85.0 Hz
(II) fglrx(0): Modeline "720x400"   35.50  720 756 828 936  400 401 404 446 -hsync +vsync
(**) fglrx(0):  Default mode "640x400": 31.5 MHz, 37.9 kHz, 85.1 Hz
(II) fglrx(0): Modeline "640x400"   31.50  640 672 736 832  400 401 404 445 -hsync +vsync
(**) fglrx(0):  Default mode "576x432": 54.0 MHz, 67.5 kHz, 75.0 Hz (D)
(II) fglrx(0): Modeline "576x432"   54.00  576 608 672 800  432 432 434 450 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "640x350": 31.5 MHz, 37.9 kHz, 85.1 Hz
(II) fglrx(0): Modeline "640x350"   31.50  640 672 736 832  350 382 385 445 +hsync -vsync
(**) fglrx(0):  Default mode "576x384": 32.5 MHz, 44.2 kHz, 54.8 Hz (D)
(II) fglrx(0): Modeline "576x384"   32.50  576 589 657 736  384 385 388 403 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "512x384": 47.2 MHz, 68.7 kHz, 85.0 Hz (D)
(II) fglrx(0): Modeline "512x384"   47.25  512 536 584 688  384 384 386 404 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "512x384": 39.4 MHz, 60.1 kHz, 75.1 Hz (D)
(II) fglrx(0): Modeline "512x384"   39.40  512 520 568 656  384 384 386 400 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "512x384": 37.5 MHz, 56.5 kHz, 70.1 Hz (D)
(II) fglrx(0): Modeline "512x384"   37.50  512 524 592 664  384 385 388 403 doublescan -hsync -vsync
(**) fglrx(0):  Default mode "512x384": 32.5 MHz, 48.4 kHz, 60.0 Hz (D)
(II) fglrx(0): Modeline "512x384"   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync
(**) fglrx(0):  Default mode "512x384": 22.4 MHz, 35.5 kHz, 87.1 Hz (D)
(II) fglrx(0): Modeline "512x384"   22.45  512 516 604 632  384 384 388 409 interlace doublescan +hsync +vsync
(**) fglrx(0):  Default mode "416x312": 28.6 MHz, 49.7 kHz, 74.7 Hz (D)
(II) fglrx(0): Modeline "416x312"   28.64  416 432 464 576  312 312 314 333 doublescan -hsync -vsync
(**) fglrx(0):  Default mode "400x300": 28.1 MHz, 53.7 kHz, 85.3 Hz (D)
(II) fglrx(0): Modeline "400x300"   28.15  400 416 448 524  300 300 302 315 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "400x300": 24.8 MHz, 46.9 kHz, 75.1 Hz (D)
(II) fglrx(0): Modeline "400x300"   24.75  400 408 448 528  300 300 302 312 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "400x300": 25.0 MHz, 48.1 kHz, 72.2 Hz (D)
(II) fglrx(0): Modeline "400x300"   25.00  400 428 488 520  300 318 321 333 doublescan +hsync +vsync
(**) fglrx(0):  Default mode "400x300": 20.0 MHz, 37.9 kHz, 60.3 Hz (D)
(II) fglrx(0): Modeline "400x300"   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync
(++) fglrx(0): DPI set to (100, 100)
(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="Fire GL - ATI Research GmbH, Germany"
    compiled for 4.3.0.1, module version = 3.14.6
    ABI class: XFree86 Server Extension, version 0.2
(II) fglrx(0): Depth moves disabled by default
(==) fglrx(0): Capabilities: 0x00000000
(==) fglrx(0): cpuFlags: 0x4000000f
(==) fglrx(0): cpuSpeedMHz: 0x00000726
(==) 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   0xe7000000 - 0xe700ffff (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   0xe5000000 - 0xe500007f (0x80) MX[B]
    [8] -1  0   0xe9000000 - 0xe90001ff (0x200) MX[B]
    [9] -1  0   0xea085000 - 0xea08503f (0x40) MX[B]
    [10] -1 0   0xea084000 - 0xea0847ff (0x800) MX[B]
    [11] -1 0   0xea080000 - 0xea080fff (0x1000) MX[B]
    [12] -1 0   0xea000000 - 0xea07ffff (0x80000) MX[B]
    [13] -1 0   0xea086000 - 0xea086fff (0x1000) MX[B]
    [14] -1 0   0xea083000 - 0xea0830ff (0x100) MX[B]
    [15] -1 0   0xea082000 - 0xea082fff (0x1000) MX[B]
    [16] -1 0   0xea087000 - 0xea087fff (0x1000) MX[B]
    [17] -1 0   0xe0000000 - 0xdfffffff (0x0) MX[B]O
    [18] -1 0   0xe7000000 - 0xe700ffff (0x10000) MX[B](B)
    [19] -1 0   0xd0000000 - 0xd7ffffff (0x8000000) MX[B](B)
    [20] -1 0   0xe7010000 - 0xe701ffff (0x10000) MX[B](B)
    [21] -1 0   0xd8000000 - 0xdfffffff (0x8000000) MX[B](B)
    [22] 0  0   0x000a0000 - 0x000affff (0x10000) MS[B]
    [23] 0  0   0x000b0000 - 0x000b7fff (0x8000) MS[B]
    [24] 0  0   0x000b8000 - 0x000bffff (0x8000) MS[B]
    [25] 0  0   0x0000c000 - 0x0000c0ff (0x100) IX[B]
    [26] -1 0   0x0000ffff - 0x0000ffff (0x1) IX[B]
    [27] -1 0   0x00000000 - 0x000000ff (0x100) IX[B]
    [28] -1 0   0x0000b000 - 0x0000b07f (0x80) IX[B]
    [29] -1 0   0x0000a000 - 0x0000a00f (0x10) IX[B]
    [30] -1 0   0x00009c00 - 0x00009c03 (0x4) IX[B]
    [31] -1 0   0x00009800 - 0x00009807 (0x8) IX[B]
    [32] -1 0   0x00009400 - 0x00009403 (0x4) IX[B]
    [33] -1 0   0x00009000 - 0x00009007 (0x8) IX[B]
    [34] -1 0   0x0000f000 - 0x0000f00f (0x10) IX[B]
    [35] -1 0   0x0000d000 - 0x0000d07f (0x80) IX[B]
    [36] -1 0   0x0000e400 - 0x0000e4ff (0x100) IX[B]
    [37] -1 0   0x0000e000 - 0x0000e007 (0x8) IX[B]
    [38] -1 0   0x0000dc00 - 0x0000dc1f (0x20) IX[B]
    [39] -1 0   0x0000c000 - 0x0000c0ff (0x100) IX[B](B)
    [40] 0  0   0x000003b0 - 0x000003bb (0xc) IS[B]
    [41] 0  0   0x000003c0 - 0x000003df (0x20) IS[B]
(II) fglrx(0): UMM area:     0xd0701000 (size=0x078ff000)
(II) fglrx(0): driver needs XFree86 version: 4.3.x
(II) fglrx(0): detected XFree86 version: 4.3.0
(II) Loading extension ATIFGLRXDRI
(II) fglrx(0): doing DRIScreenInit
drmOpenDevice: minor is 0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 5, (OK)
drmOpenDevice: minor is 0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 5, (OK)
drmOpenDevice: minor is 0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 5, (OK)
drmGetBusid returned ''
(II) fglrx(0): [drm] created "fglrx" driver at busid "PCI:3:0:0"
(II) fglrx(0): [drm] added 8192 byte SAREA at 0xe0947000
(II) fglrx(0): [drm] mapped SAREA 0xe0947000 to 0x40248000
(II) fglrx(0): [drm] framebuffer handle = 0xd0000000
(II) fglrx(0): [drm] added 1 reserved context for kernel
(II) fglrx(0): DRIScreenInit done
(II) fglrx(0): Kernel Module Version Information:
(II) fglrx(0):     Name: fglrx
(II) fglrx(0):     Version: 3.14.6
(II) fglrx(0):     Date: Oct 30 2004
(II) fglrx(0):     Desc: ATI Fire GL DRM kernel module
(II) fglrx(0): Kernel Module version matches driver.
(II) fglrx(0): Kernel Module Build Time Information:
(II) fglrx(0):     Build-Kernel UTS_RELEASE:        2.6.8
(II) fglrx(0):     Build-Kernel MODVERSIONS:        no
(II) fglrx(0):     Build-Kernel __SMP__:            no
(II) fglrx(0):     Build-Kernel PAGE_SIZE:          0x1000
(II) fglrx(0): [drm] register handle = 0xe7000000
(EE) fglrx(0): [agp] unable to acquire AGP, error "xf86_ENOMEM"
(EE) fglrx(0): cannot init AGP
(II) fglrx(0): [drm] removed 1 reserved context for kernel
(II) fglrx(0): [drm] unmapping 8192 bytes of SAREA 0xe0947000 at 0x40248000
(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: 0x08000000
(==) fglrx(0): Write-combining range (0xd0000000,0x8000000)
(II) fglrx(0): FBMM initialized for area (0,0)-(1280,8191)
(II) fglrx(0): FBMM auto alloc for area (0,0)-(1280,1024) (front color buffer - assumption)
(==) fglrx(0): Backing store disabled
(==) fglrx(0): Silken mouse enabled
(II) fglrx(0): Using hardware cursor (scanline 1024)
(II) fglrx(0): Largest offscreen area available: 1280 x 7163
(**) Option "dpms"
(**) fglrx(0): DPMS enabled
(WW) fglrx(0): Option "UseInternalAGPART" is not used
(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" "PS/2"
(**) Configured Mouse: Protocol: "PS/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
(**) Option "Protocol" "ImPS/2"
(**) Generic Mouse: Protocol: "ImPS/2"
(**) Option "SendCoreEvents" "true"
(**) Generic Mouse: always reports core events
(**) Option "Device" "/dev/input/mice"
(**) Option "Emulate3Buttons" "true"
(**) Generic Mouse: Emulate3Buttons, Emulate3Timeout: 50
(**) Option "ZAxisMapping" "4 5"
(**) Generic Mouse: ZAxisMapping: buttons 4 and 5
(**) Generic Mouse: Buttons: 5
(II) XINPUT: Adding extended input device "Generic Mouse" (type: MOUSE)
(II) XINPUT: Adding extended input device "Configured Mouse" (type: MOUSE)
(II) Configured Mouse: ps2EnableDataReporting: succeeded
(II) Generic 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!


edit: woeps sorry als mensen net beetje last hadden van verbouwde layout
offtopic:
Dit verpest jammergenoeg een beetje mijn topic over dat linux heel gebruikersvriendelijk is :'(
Ik zeg het fout, dit zegt iets over ati ;)

[ Voor 35% gewijzigd door Verwijderd op 01-12-2004 21:34 ]


  • cool_zero
  • Registratie: Juni 2001
  • Laatst online: 25-10-2022
code:
1
2
3
4
5
6
(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): ********************************************* *


Dit staat erin en betekent dat er wat mis is met de dri module. Zorg dat je deze stap eerst goed hebt. Deze module moet je zelf maken en daar gaat heel punt 4 van de handleiding over. Als je lsmod doet moet je deze module in het lijstje zien staan, anders moet je hem nog even laden(4.4) voordat je X start of de handleiding opnieuw volgen vanaf punt 4.

Of je agpgart aan of uitzet in de kernel is maakt niet zoveel uit, maar je kunt het altijd proberen als het nog steeds niet werkt. Je moet wel in je kernel dri support aan laten staan en niet de ati dri driver in de kernel meecompilen. Als je de ati dri driver uit de kernel als module maakt moet je zorgen dat die niet automatisch geladen wordt. Daarnaast zet ik zelf vaak de frame buffer service(Device drivers-> graphics support ->) uit in de kernel omdat die ook nog wel eens conflicten wil geven.