ubuntuusers.de

Xorg.0.log

Autor:
Musicman
Datum:
23. November 2011 21:44
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
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
[   453.922] 
X.Org X Server 1.10.4
Release Date: 2011-08-19
[   453.922] X Protocol Version 11, Revision 0
[   453.922] Build Operating System: Linux 2.6.24-29-server x86_64 Ubuntu
[   453.922] Current Operating System: Linux reto-desktop 3.0.0-13-generic #22-Ubuntu SMP Wed Nov 2 13:27:26 UTC 2011 x86_64
[   453.922] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.0.0-13-generic root=UUID=f98e3b4e-c24b-4973-a37d-a41de81b6a54 ro quiet splash vt.handoff=7
[   453.922] Build Date: 19 October 2011  05:21:26AM
[   453.922] xorg-server 2:1.10.4-1ubuntu4.2 (For technical support please see http://www.ubuntu.com/support) 
[   453.922] Current version of pixman: 0.22.2
[   453.922] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[   453.922] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   453.922] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Nov 23 21:30:27 2011
[   453.922] (==) Using config file: "/etc/X11/xorg.conf"
[   453.922] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[   453.923] (==) ServerLayout "aticonfig Layout"
[   453.923] (**) |-->Screen "aticonfig-Screen[0]-0" (0)
[   453.923] (**) |   |-->Monitor "<default monitor>"
[   453.923] (**) |   |-->Device "aticonfig-Device[0]-0"
[   453.923] (==) No monitor specified for screen "aticonfig-Screen[0]-0".
	Using a default monitor configuration.
[   453.923] (==) Automatically adding devices
[   453.923] (==) Automatically enabling devices
[   453.923] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[   453.923] 	Entry deleted from font path.
[   453.923] (WW) The directory "/usr/share/fonts/X11/100dpi/" does not exist.
[   453.923] 	Entry deleted from font path.
[   453.923] (WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.
[   453.923] 	Entry deleted from font path.
[   453.923] (WW) The directory "/usr/share/fonts/X11/100dpi" does not exist.
[   453.923] 	Entry deleted from font path.
[   453.923] (WW) The directory "/usr/share/fonts/X11/75dpi" does not exist.
[   453.923] 	Entry deleted from font path.
[   453.923] (==) FontPath set to:
	/usr/share/fonts/X11/misc,
	/usr/share/fonts/X11/Type1,
	/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
	built-ins
[   453.923] (==) ModulePath set to "/usr/lib/x86_64-linux-gnu/xorg/extra-modules,/usr/lib/xorg/extra-modules,/usr/lib/xorg/modules"
[   453.923] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[   453.923] (II) Loader magic: 0x7e0220
[   453.923] (II) Module ABI versions:
[   453.923] 	X.Org ANSI C Emulation: 0.4
[   453.923] 	X.Org Video Driver: 10.0
[   453.923] 	X.Org XInput driver : 12.3
[   453.923] 	X.Org Server Extension : 5.0
[   453.923] (--) PCI:*(0:1:0:0) 1002:6738:174b:174b rev 0, Mem @ 0xd0000000/268435456, 0xfe9c0000/131072, I/O @ 0x0000c000/256, BIOS @ 0x????????/131072
[   453.924] (II) Open ACPI successful (/var/run/acpid.socket)
[   453.924] (II) "extmod" will be loaded by default.
[   453.924] (II) "dbe" will be loaded by default.
[   453.924] (II) "glx" will be loaded by default.
[   453.924] (II) "record" will be loaded by default.
[   453.924] (II) "dri" will be loaded by default.
[   453.924] (II) "dri2" will be loaded by default.
[   453.924] (II) LoadModule: "extmod"
[   453.924] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[   453.924] (II) Module extmod: vendor="X.Org Foundation"
[   453.924] 	compiled for 1.10.4, module version = 1.0.0
[   453.924] 	Module class: X.Org Server Extension
[   453.924] 	ABI class: X.Org Server Extension, version 5.0
[   453.924] (II) Loading extension MIT-SCREEN-SAVER
[   453.924] (II) Loading extension XFree86-VidModeExtension
[   453.924] (II) Loading extension XFree86-DGA
[   453.924] (II) Loading extension DPMS
[   453.924] (II) Loading extension XVideo
[   453.924] (II) Loading extension XVideo-MotionCompensation
[   453.924] (II) Loading extension X-Resource
[   453.924] (II) LoadModule: "dbe"
[   453.924] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[   453.924] (II) Module dbe: vendor="X.Org Foundation"
[   453.924] 	compiled for 1.10.4, module version = 1.0.0
[   453.924] 	Module class: X.Org Server Extension
[   453.924] 	ABI class: X.Org Server Extension, version 5.0
[   453.924] (II) Loading extension DOUBLE-BUFFER
[   453.924] (II) LoadModule: "glx"
[   453.925] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/modules/extensions/libglx.so
[   453.925] (II) Module glx: vendor="Advanced Micro Devices, Inc."
[   453.925] 	compiled for 6.9.0, module version = 1.0.0
[   453.925] (II) Loading extension GLX
[   453.925] (II) LoadModule: "record"
[   453.925] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[   453.925] (II) Module record: vendor="X.Org Foundation"
[   453.925] 	compiled for 1.10.4, module version = 1.13.0
[   453.925] 	Module class: X.Org Server Extension
[   453.925] 	ABI class: X.Org Server Extension, version 5.0
[   453.925] (II) Loading extension RECORD
[   453.925] (II) LoadModule: "dri"
[   453.925] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[   453.926] (II) Module dri: vendor="X.Org Foundation"
[   453.926] 	compiled for 1.10.4, module version = 1.0.0
[   453.926] 	ABI class: X.Org Server Extension, version 5.0
[   453.926] (II) Loading extension XFree86-DRI
[   453.926] (II) LoadModule: "dri2"
[   453.926] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[   453.926] (II) Module dri2: vendor="X.Org Foundation"
[   453.926] 	compiled for 1.10.4, module version = 1.2.0
[   453.926] 	ABI class: X.Org Server Extension, version 5.0
[   453.926] (II) Loading extension DRI2
[   453.926] (II) LoadModule: "fglrx"
[   453.926] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/modules/drivers/fglrx_drv.so
[   453.941] (II) Module fglrx: vendor="FireGL - ATI Technologies Inc."
[   453.941] 	compiled for 1.4.99.906, module version = 8.91.4
[   453.941] 	Module class: X.Org Video Driver
[   453.941] (II) Loading sub module "fglrxdrm"
[   453.941] (II) LoadModule: "fglrxdrm"
[   453.941] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/modules/linux/libfglrxdrm.so
[   453.941] (II) Module fglrxdrm: vendor="FireGL - ATI Technologies Inc."
[   453.941] 	compiled for 1.4.99.906, module version = 8.91.4
[   453.941] (II) ATI Proprietary Linux Driver Version Identifier:8.91.4
[   453.941] (II) ATI Proprietary Linux Driver Release Identifier: 8.911                                
[   453.941] (II) ATI Proprietary Linux Driver Build Date: Oct 25 2011 21:24:13
[   453.941] (++) using VT number 7

[   453.941] (WW) Falling back to old probe method for fglrx
[   453.947] (II) Loading PCS database from /etc/ati/amdpcsdb
[   453.947] (--) Chipset Supported AMD Graphics Processor (0x6738) found
[   453.947] (WW) fglrx: No matching Device section for instance (BusID PCI:0@1:0:1) found
[   453.948] (II) AMD Video driver is running on a device belonging to a group targeted for this release
[   453.948] (II) AMD Video driver is signed
[   453.948] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/modules/drivers/fglrx_drv.so
[   453.948] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/modules/linux/libfglrxdrm.so
[   453.948] (II) fglrx(0): pEnt->device->identifier=0x13d1f30
[   453.948] (II) fglrx(0): === [xdl_xs110_atiddxPreInit] === begin
[   453.948] (II) Loading sub module "vgahw"
[   453.948] (II) LoadModule: "vgahw"
[   453.948] (II) Loading /usr/lib/xorg/modules/libvgahw.so
[   453.948] (II) Module vgahw: vendor="X.Org Foundation"
[   453.948] 	compiled for 1.10.4, module version = 0.1.0
[   453.948] 	ABI class: X.Org Video Driver, version 10.0
[   453.948] (**) fglrx(0): Depth 24, (--) framebuffer bpp 32
[   453.948] (II) fglrx(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[   453.948] (==) fglrx(0): Default visual is TrueColor
[   453.948] (==) fglrx(0): RGB weight 888
[   453.948] (II) fglrx(0): Using 8 bits per RGB 
[   453.948] (==) fglrx(0): Buffer Tiling is ON
[   453.948] (II) Loading sub module "fglrxdrm"
[   453.948] (II) LoadModule: "fglrxdrm"
[   453.948] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/modules/linux/libfglrxdrm.so
[   453.948] (II) Module fglrxdrm: vendor="FireGL - ATI Technologies Inc."
[   453.948] 	compiled for 1.4.99.906, module version = 8.91.4
[   453.950] ukiDynamicMajor: found major device number 249
[   453.950] ukiDynamicMajor: found major device number 249
[   453.950] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[   453.950] ukiOpenDevice: node name is /dev/ati/card0
[   453.950] ukiOpenDevice: open result is 17, (OK)
[   453.950] ukiOpenByBusid: ukiOpenMinor returns 17
[   453.950] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[   453.950] (==) fglrx(0): NoAccel = NO
[   453.950] (==) fglrx(0): ATI 2D Acceleration Architecture enabled
[   453.950] (--) fglrx(0): Chipset: "AMD Radeon HD 6800 Series " (Chipset = 0x6738)
[   453.950] (--) fglrx(0): (PciSubVendor = 0x174b, PciSubDevice = 0x174b)
[   453.950] (==) fglrx(0): board vendor info: third party graphics adapter - NOT original ATI
[   453.950] (--) fglrx(0): Linear framebuffer (phys) at 0xd0000000
[   453.950] (--) fglrx(0): MMIO registers at 0xfe9c0000
[   453.950] (--) fglrx(0): I/O port at 0x0000c000
[   453.950] (==) fglrx(0): ROM-BIOS at 0x000c0000
[   453.951] (II) fglrx(0): AC Adapter is used
[   453.953] (II) fglrx(0): Primary V_BIOS segment is: 0xc000
[   453.953] (II) Loading sub module "vbe"
[   453.953] (II) LoadModule: "vbe"
[   453.954] (II) Loading /usr/lib/xorg/modules/libvbe.so
[   453.954] (II) Module vbe: vendor="X.Org Foundation"
[   453.954] 	compiled for 1.10.4, module version = 1.1.0
[   453.954] 	ABI class: X.Org Video Driver, version 10.0
[   453.954] (II) fglrx(0): VESA BIOS detected
[   453.954] (II) fglrx(0): VESA VBE Version 3.0
[   453.954] (II) fglrx(0): VESA VBE Total Mem: 16384 kB
[   453.954] (II) fglrx(0): VESA VBE OEM: AMD ATOMBIOS
[   453.954] (II) fglrx(0): VESA VBE OEM Software Rev: 13.12
[   453.954] (II) fglrx(0): VESA VBE OEM Vendor: (C) 1988-2010, AMD Technologies Inc. 
[   453.954] (II) fglrx(0): VESA VBE OEM Product: BARTS
[   453.954] (II) fglrx(0): VESA VBE OEM Product Rev: 01.00
[   453.995] (II) fglrx(0): ATI Video BIOS revision 9 or later detected
[   453.995] (--) fglrx(0): Video RAM: 1048576 kByte, Type: GDDR5
[   453.995] (II) fglrx(0): PCIE card detected
[   453.995] (--) fglrx(0): Using per-process page tables (PPPT) as GART.
[   453.995] (WW) fglrx(0): board is an unknown third party board, chipset is supported
[   453.997] (II) fglrx(0): Using adapter: 1:0.0.
[   454.144] (II) fglrx(0): [FB] MC range(MCFBBase = 0xf00000000, MCFBSize = 0x40000000)
[   454.159] (II) fglrx(0): Interrupt handler installed at IRQ 45.
[   454.159] (II) fglrx(0): RandR 1.2 support is enabled!
[   454.159] (II) fglrx(0): RandR 1.2 rotation support is enabled!
[   454.159] (==) fglrx(0): Center Mode is disabled 
[   454.159] (II) Loading sub module "fb"
[   454.159] (II) LoadModule: "fb"
[   454.159] (II) Loading /usr/lib/xorg/modules/libfb.so
[   454.160] (II) Module fb: vendor="X.Org Foundation"
[   454.160] 	compiled for 1.10.4, module version = 1.0.0
[   454.160] 	ABI class: X.Org ANSI C Emulation, version 0.4
[   454.160] (II) Loading sub module "ddc"
[   454.160] (II) LoadModule: "ddc"
[   454.160] (II) Module "ddc" already built-in
[   454.405] (II) fglrx(0): Finished Initialize PPLIB!
[   454.405] (II) fglrx(0): Output DFP1 using monitor section 0-DFP1
[   454.405] (**) fglrx(0): Option "PreferredMode" "1280x1024"
[   454.405] (**) fglrx(0): Option "Position" "0 0"
[   454.405] (**) fglrx(0): Option "Disable" "false"
[   454.405] (**) fglrx(0): Option "Rotate" "normal"
[   454.405] (**) fglrx(0): Option "TargetRefresh" "60"
[   454.405] (II) fglrx(0): Output DFP2 has no monitor section
[   454.405] (II) fglrx(0): Output DFP3 using monitor section 0-DFP3
[   454.405] (**) fglrx(0): Option "PreferredMode" "1280x1024"
[   454.405] (**) fglrx(0): Option "Position" "2560 0"
[   454.405] (**) fglrx(0): Option "Disable" "false"
[   454.405] (**) fglrx(0): Option "Rotate" "normal"
[   454.405] (**) fglrx(0): Option "TargetRefresh" "60"
[   454.405] (II) fglrx(0): Output DFP4 using monitor section 0-DFP4
[   454.405] (**) fglrx(0): Option "PreferredMode" "1280x1024"
[   454.405] (**) fglrx(0): Option "Position" "1280 0"
[   454.405] (**) fglrx(0): Option "Disable" "false"
[   454.405] (**) fglrx(0): Option "Rotate" "normal"
[   454.405] (**) fglrx(0): Option "TargetRefresh" "60"
[   454.405] (II) fglrx(0): Output CRT1 has no monitor section
[   454.405] (II) Loading sub module "ddc"
[   454.405] (II) LoadModule: "ddc"
[   454.405] (II) Module "ddc" already built-in
[   454.405] (II) fglrx(0): Connected Display0: DFP1
[   454.405] (II) fglrx(0): Display0 EDID data ---------------------------
[   454.405] (II) fglrx(0): Manufacturer: PHL  Model: 878  Serial#: 16843009
[   454.405] (II) fglrx(0): Year: 2009  Week: 34
[   454.405] (II) fglrx(0): EDID Version: 1.3
[   454.405] (II) fglrx(0): Digital Display Input
[   454.405] (II) fglrx(0): Max Image Size [cm]: horiz.: 38  vert.: 30
[   454.405] (II) fglrx(0): Gamma: 2.20
[   454.405] (II) fglrx(0): DPMS capabilities: Off
[   454.405] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[   454.405] (II) fglrx(0): First detailed timing is preferred mode
[   454.405] (II) fglrx(0): redX: 0.639 redY: 0.342   greenX: 0.297 greenY: 0.614
[   454.405] (II) fglrx(0): blueX: 0.146 blueY: 0.067   whiteX: 0.312 whiteY: 0.328
[   454.405] (II) fglrx(0): Supported established timings:
[   454.405] (II) fglrx(0): 720x400@70Hz
[   454.405] (II) fglrx(0): 640x480@60Hz
[   454.405] (II) fglrx(0): 640x480@67Hz
[   454.405] (II) fglrx(0): 640x480@72Hz
[   454.405] (II) fglrx(0): 640x480@75Hz
[   454.405] (II) fglrx(0): 800x600@56Hz
[   454.405] (II) fglrx(0): 800x600@60Hz
[   454.405] (II) fglrx(0): 800x600@72Hz
[   454.405] (II) fglrx(0): 800x600@75Hz
[   454.405] (II) fglrx(0): 832x624@75Hz
[   454.405] (II) fglrx(0): 1024x768@60Hz
[   454.405] (II) fglrx(0): 1024x768@70Hz
[   454.405] (II) fglrx(0): 1024x768@75Hz
[   454.405] (II) fglrx(0): 1280x1024@75Hz
[   454.405] (II) fglrx(0): 1152x864@75Hz
[   454.405] (II) fglrx(0): Manufacturer's mask: 0
[   454.405] (II) fglrx(0): Supported standard timings:
[   454.405] (II) fglrx(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[   454.406] (II) fglrx(0): #1: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[   454.406] (II) fglrx(0): #2: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[   454.406] (II) fglrx(0): Supported detailed timing:
[   454.406] (II) fglrx(0): clock: 108.0 MHz   Image Size:  376 x 301 mm
[   454.406] (II) fglrx(0): h_active: 1280  h_sync: 1328  h_sync_end 1440 h_blank_end 1688 h_border: 0
[   454.406] (II) fglrx(0): v_active: 1024  v_sync: 1025  v_sync_end 1028 v_blanking: 1066 v_border: 0
[   454.406] (II) fglrx(0): Serial No: AU60934000949
[   454.406] (II) fglrx(0): Monitor name: Philips 19S
[   454.406] (II) fglrx(0): Ranges: V min: 56 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 145 MHz
[   454.406] (II) fglrx(0): EDID (in hex):
[   454.406] (II) fglrx(0): 	00ffffffffffff00410c780801010101
[   454.406] (II) fglrx(0): 	2213010380261e782aa150a3574c9d25
[   454.406] (II) fglrx(0): 	115054bfef80714f8140818001010101
[   454.406] (II) fglrx(0): 	010101010101302a009851002a403070
[   454.406] (II) fglrx(0): 	1300782d1100001e000000ff00415536
[   454.406] (II) fglrx(0): 	30393334303030393439000000fc0050
[   454.406] (II) fglrx(0): 	68696c697073203139530a20000000fd
[   454.406] (II) fglrx(0): 	00384c1e530e000a2020202020200083
[   454.406] (II) fglrx(0): End of Display0 EDID data --------------------
[   454.406] (II) fglrx(0): Connected Display1: DFP3
[   454.406] (II) fglrx(0): Display1 EDID data ---------------------------
[   454.406] (II) fglrx(0): Manufacturer: PHL  Model: 878  Serial#: 16843009
[   454.406] (II) fglrx(0): Year: 2010  Week: 37
[   454.406] (II) fglrx(0): EDID Version: 1.3
[   454.406] (II) fglrx(0): Digital Display Input
[   454.406] (II) fglrx(0): Max Image Size [cm]: horiz.: 38  vert.: 30
[   454.406] (II) fglrx(0): Gamma: 2.20
[   454.406] (II) fglrx(0): DPMS capabilities: Off
[   454.406] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[   454.406] (II) fglrx(0): First detailed timing is preferred mode
[   454.406] (II) fglrx(0): redX: 0.639 redY: 0.342   greenX: 0.297 greenY: 0.614
[   454.406] (II) fglrx(0): blueX: 0.146 blueY: 0.067   whiteX: 0.312 whiteY: 0.328
[   454.406] (II) fglrx(0): Supported established timings:
[   454.406] (II) fglrx(0): 720x400@70Hz
[   454.406] (II) fglrx(0): 640x480@60Hz
[   454.406] (II) fglrx(0): 640x480@67Hz
[   454.406] (II) fglrx(0): 640x480@72Hz
[   454.406] (II) fglrx(0): 640x480@75Hz
[   454.406] (II) fglrx(0): 800x600@56Hz
[   454.406] (II) fglrx(0): 800x600@60Hz
[   454.406] (II) fglrx(0): 800x600@72Hz
[   454.406] (II) fglrx(0): 800x600@75Hz
[   454.406] (II) fglrx(0): 832x624@75Hz
[   454.406] (II) fglrx(0): 1024x768@60Hz
[   454.406] (II) fglrx(0): 1024x768@70Hz
[   454.406] (II) fglrx(0): 1024x768@75Hz
[   454.406] (II) fglrx(0): 1280x1024@75Hz
[   454.406] (II) fglrx(0): 1152x864@75Hz
[   454.406] (II) fglrx(0): Manufacturer's mask: 0
[   454.406] (II) fglrx(0): Supported standard timings:
[   454.406] (II) fglrx(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[   454.406] (II) fglrx(0): #1: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[   454.406] (II) fglrx(0): #2: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[   454.406] (II) fglrx(0): Supported detailed timing:
[   454.406] (II) fglrx(0): clock: 108.0 MHz   Image Size:  376 x 301 mm
[   454.406] (II) fglrx(0): h_active: 1280  h_sync: 1328  h_sync_end 1440 h_blank_end 1688 h_border: 0
[   454.406] (II) fglrx(0): v_active: 1024  v_sync: 1025  v_sync_end 1028 v_blanking: 1066 v_border: 0
[   454.406] (II) fglrx(0): Serial No: AU31037003172
[   454.406] (II) fglrx(0): Monitor name: Philips 19S
[   454.406] (II) fglrx(0): Ranges: V min: 56 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 145 MHz
[   454.406] (II) fglrx(0): EDID (in hex):
[   454.406] (II) fglrx(0): 	00ffffffffffff00410c780801010101
[   454.406] (II) fglrx(0): 	2514010380261e782aa150a3574c9d25
[   454.406] (II) fglrx(0): 	115054bfef80714f8140818001010101
[   454.406] (II) fglrx(0): 	010101010101302a009851002a403070
[   454.406] (II) fglrx(0): 	1300782d1100001e000000ff00415533
[   454.406] (II) fglrx(0): 	31303337303033313732000000fc0050
[   454.406] (II) fglrx(0): 	68696c697073203139530a20000000fd
[   454.406] (II) fglrx(0): 	00384c1e530e000a2020202020200090
[   454.406] (II) fglrx(0): End of Display1 EDID data --------------------
[   454.406] (II) fglrx(0): Connected Display2: DFP4
[   454.406] (II) fglrx(0): Display2 EDID data ---------------------------
[   454.406] (II) fglrx(0): Manufacturer: PHL  Model: 878  Serial#: 16843009
[   454.406] (II) fglrx(0): Year: 2010  Week: 37
[   454.406] (II) fglrx(0): EDID Version: 1.3
[   454.406] (II) fglrx(0): Digital Display Input
[   454.406] (II) fglrx(0): Max Image Size [cm]: horiz.: 38  vert.: 30
[   454.406] (II) fglrx(0): Gamma: 2.20
[   454.406] (II) fglrx(0): DPMS capabilities: Off
[   454.406] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[   454.406] (II) fglrx(0): First detailed timing is preferred mode
[   454.406] (II) fglrx(0): redX: 0.639 redY: 0.342   greenX: 0.297 greenY: 0.614
[   454.406] (II) fglrx(0): blueX: 0.146 blueY: 0.067   whiteX: 0.312 whiteY: 0.328
[   454.406] (II) fglrx(0): Supported established timings:
[   454.406] (II) fglrx(0): 720x400@70Hz
[   454.406] (II) fglrx(0): 640x480@60Hz
[   454.406] (II) fglrx(0): 640x480@67Hz
[   454.406] (II) fglrx(0): 640x480@72Hz
[   454.406] (II) fglrx(0): 640x480@75Hz
[   454.406] (II) fglrx(0): 800x600@56Hz
[   454.406] (II) fglrx(0): 800x600@60Hz
[   454.406] (II) fglrx(0): 800x600@72Hz
[   454.406] (II) fglrx(0): 800x600@75Hz
[   454.406] (II) fglrx(0): 832x624@75Hz
[   454.406] (II) fglrx(0): 1024x768@60Hz
[   454.406] (II) fglrx(0): 1024x768@70Hz
[   454.406] (II) fglrx(0): 1024x768@75Hz
[   454.406] (II) fglrx(0): 1280x1024@75Hz
[   454.406] (II) fglrx(0): 1152x864@75Hz
[   454.406] (II) fglrx(0): Manufacturer's mask: 0
[   454.406] (II) fglrx(0): Supported standard timings:
[   454.406] (II) fglrx(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[   454.406] (II) fglrx(0): #1: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[   454.406] (II) fglrx(0): #2: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[   454.406] (II) fglrx(0): Supported detailed timing:
[   454.406] (II) fglrx(0): clock: 108.0 MHz   Image Size:  376 x 301 mm
[   454.406] (II) fglrx(0): h_active: 1280  h_sync: 1328  h_sync_end 1440 h_blank_end 1688 h_border: 0
[   454.406] (II) fglrx(0): v_active: 1024  v_sync: 1025  v_sync_end 1028 v_blanking: 1066 v_border: 0
[   454.406] (II) fglrx(0): Serial No: AU31037003145
[   454.406] (II) fglrx(0): Monitor name: Philips 19S
[   454.406] (II) fglrx(0): Ranges: V min: 56 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 145 MHz
[   454.406] (II) fglrx(0): EDID (in hex):
[   454.406] (II) fglrx(0): 	00ffffffffffff00410c780801010101
[   454.406] (II) fglrx(0): 	2514010380261e782aa150a3574c9d25
[   454.406] (II) fglrx(0): 	115054bfef80714f8140818001010101
[   454.406] (II) fglrx(0): 	010101010101302a009851002a403070
[   454.406] (II) fglrx(0): 	1300782d1100001e000000ff00415533
[   454.406] (II) fglrx(0): 	31303337303033313435000000fc0050
[   454.406] (II) fglrx(0): 	68696c697073203139530a20000000fd
[   454.406] (II) fglrx(0): 	00384c1e530e000a2020202020200090
[   454.406] (II) fglrx(0): End of Display2 EDID data --------------------
[   454.407] (II) fglrx(0): EDID for output DFP1
[   454.407] (II) fglrx(0): Manufacturer: PHL  Model: 878  Serial#: 16843009
[   454.407] (II) fglrx(0): Year: 2009  Week: 34
[   454.407] (II) fglrx(0): EDID Version: 1.3
[   454.407] (II) fglrx(0): Digital Display Input
[   454.407] (II) fglrx(0): Max Image Size [cm]: horiz.: 38  vert.: 30
[   454.407] (II) fglrx(0): Gamma: 2.20
[   454.407] (II) fglrx(0): DPMS capabilities: Off
[   454.407] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[   454.407] (II) fglrx(0): First detailed timing is preferred mode
[   454.407] (II) fglrx(0): redX: 0.639 redY: 0.342   greenX: 0.297 greenY: 0.614
[   454.407] (II) fglrx(0): blueX: 0.146 blueY: 0.067   whiteX: 0.312 whiteY: 0.328
[   454.407] (II) fglrx(0): Supported established timings:
[   454.407] (II) fglrx(0): 720x400@70Hz
[   454.407] (II) fglrx(0): 640x480@60Hz
[   454.407] (II) fglrx(0): 640x480@67Hz
[   454.407] (II) fglrx(0): 640x480@72Hz
[   454.407] (II) fglrx(0): 640x480@75Hz
[   454.407] (II) fglrx(0): 800x600@56Hz
[   454.407] (II) fglrx(0): 800x600@60Hz
[   454.407] (II) fglrx(0): 800x600@72Hz
[   454.407] (II) fglrx(0): 800x600@75Hz
[   454.407] (II) fglrx(0): 832x624@75Hz
[   454.407] (II) fglrx(0): 1024x768@60Hz
[   454.407] (II) fglrx(0): 1024x768@70Hz
[   454.407] (II) fglrx(0): 1024x768@75Hz
[   454.407] (II) fglrx(0): 1280x1024@75Hz
[   454.407] (II) fglrx(0): 1152x864@75Hz
[   454.407] (II) fglrx(0): Manufacturer's mask: 0
[   454.407] (II) fglrx(0): Supported standard timings:
[   454.407] (II) fglrx(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[   454.407] (II) fglrx(0): #1: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[   454.407] (II) fglrx(0): #2: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[   454.407] (II) fglrx(0): Supported detailed timing:
[   454.407] (II) fglrx(0): clock: 108.0 MHz   Image Size:  376 x 301 mm
[   454.407] (II) fglrx(0): h_active: 1280  h_sync: 1328  h_sync_end 1440 h_blank_end 1688 h_border: 0
[   454.407] (II) fglrx(0): v_active: 1024  v_sync: 1025  v_sync_end 1028 v_blanking: 1066 v_border: 0
[   454.407] (II) fglrx(0): Serial No: AU60934000949
[   454.407] (II) fglrx(0): Monitor name: Philips 19S
[   454.407] (II) fglrx(0): Ranges: V min: 56 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 145 MHz
[   454.407] (II) fglrx(0): EDID (in hex):
[   454.407] (II) fglrx(0): 	00ffffffffffff00410c780801010101
[   454.407] (II) fglrx(0): 	2213010380261e782aa150a3574c9d25
[   454.407] (II) fglrx(0): 	115054bfef80714f8140818001010101
[   454.407] (II) fglrx(0): 	010101010101302a009851002a403070
[   454.407] (II) fglrx(0): 	1300782d1100001e000000ff00415536
[   454.407] (II) fglrx(0): 	30393334303030393439000000fc0050
[   454.407] (II) fglrx(0): 	68696c697073203139530a20000000fd
[   454.407] (II) fglrx(0): 	00384c1e530e000a2020202020200083
[   454.407] (II) fglrx(0): EDID vendor "PHL", prod id 2168
[   454.407] (II) fglrx(0): Using EDID range info for horizontal sync
[   454.407] (II) fglrx(0): Using EDID range info for vertical refresh
[   454.407] (II) fglrx(0): Printing DDC gathered Modelines:
[   454.407] (II) fglrx(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[   454.408] (II) fglrx(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[   454.408] (II) fglrx(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[   454.408] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz)
[   454.408] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz)
[   454.408] (II) fglrx(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz)
[   454.408] (II) fglrx(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[   454.408] (II) fglrx(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz)
[   454.408] (II) fglrx(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[   454.408] (II) fglrx(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz)
[   454.408] (II) fglrx(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz)
[   454.408] (II) fglrx(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[   454.408] (II) fglrx(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz)
[   454.408] (II) fglrx(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz)
[   454.408] (II) fglrx(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz)
[   454.408] (II) fglrx(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz)
[   454.408] (II) fglrx(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz)
[   454.408] (II) fglrx(0): Printing probed modes for output DFP1
[   454.408] (II) fglrx(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[   454.408] (II) fglrx(0): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[   454.408] (II) fglrx(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz)
[   454.408] (II) fglrx(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz)
[   454.408] (II) fglrx(0): Modeline "1152x864"x60.0  108.00  1152 1328 1440 1688  864 1025 1028 1066 +hsync +vsync (64.0 kHz)
[   454.408] (II) fglrx(0): Modeline "1280x768"x60.0  108.00  1280 1376 1488 1800  768 961 964 1000 +hsync +vsync (60.0 kHz)
[   454.408] (II) fglrx(0): Modeline "1280x720"x60.0  108.00  1280 1376 1488 1800  720 961 964 1000 +hsync +vsync (60.0 kHz)
[   454.408] (II) fglrx(0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz)
[   454.408] (II) fglrx(0): Modeline "1024x768"x70.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz)
[   454.408] (II) fglrx(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[   454.408] (II) fglrx(0): Modeline "800x600"x72.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz)
[   454.408] (II) fglrx(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz)
[   454.408] (II) fglrx(0): Modeline "800x600"x60.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[   454.408] (II) fglrx(0): Modeline "800x600"x56.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[   454.408] (II) fglrx(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz)
[   454.408] (II) fglrx(0): Modeline "640x480"x72.0   31.50  640 656 696 832  480 481 484 520 -hsync -vsync (37.9 kHz)
[   454.408] (II) fglrx(0): Modeline "640x480"x67.0   27.28  640 664 728 816  480 481 484 499 -hsync +vsync (33.4 kHz)
[   454.408] (II) fglrx(0): Modeline "640x480"x60.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[   454.408] (II) fglrx(0): EDID for output DFP2
[   454.408] (II) fglrx(0): EDID for output DFP3
[   454.408] (II) fglrx(0): Manufacturer: PHL  Model: 878  Serial#: 16843009
[   454.408] (II) fglrx(0): Year: 2010  Week: 37
[   454.408] (II) fglrx(0): EDID Version: 1.3
[   454.408] (II) fglrx(0): Digital Display Input
[   454.408] (II) fglrx(0): Max Image Size [cm]: horiz.: 38  vert.: 30
[   454.408] (II) fglrx(0): Gamma: 2.20
[   454.408] (II) fglrx(0): DPMS capabilities: Off
[   454.408] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[   454.408] (II) fglrx(0): First detailed timing is preferred mode
[   454.408] (II) fglrx(0): redX: 0.639 redY: 0.342   greenX: 0.297 greenY: 0.614
[   454.408] (II) fglrx(0): blueX: 0.146 blueY: 0.067   whiteX: 0.312 whiteY: 0.328
[   454.408] (II) fglrx(0): Supported established timings:
[   454.408] (II) fglrx(0): 720x400@70Hz
[   454.408] (II) fglrx(0): 640x480@60Hz
[   454.408] (II) fglrx(0): 640x480@67Hz
[   454.408] (II) fglrx(0): 640x480@72Hz
[   454.408] (II) fglrx(0): 640x480@75Hz
[   454.408] (II) fglrx(0): 800x600@56Hz
[   454.408] (II) fglrx(0): 800x600@60Hz
[   454.408] (II) fglrx(0): 800x600@72Hz
[   454.408] (II) fglrx(0): 800x600@75Hz
[   454.408] (II) fglrx(0): 832x624@75Hz
[   454.408] (II) fglrx(0): 1024x768@60Hz
[   454.408] (II) fglrx(0): 1024x768@70Hz
[   454.408] (II) fglrx(0): 1024x768@75Hz
[   454.408] (II) fglrx(0): 1280x1024@75Hz
[   454.408] (II) fglrx(0): 1152x864@75Hz
[   454.408] (II) fglrx(0): Manufacturer's mask: 0
[   454.408] (II) fglrx(0): Supported standard timings:
[   454.408] (II) fglrx(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[   454.408] (II) fglrx(0): #1: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[   454.408] (II) fglrx(0): #2: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[   454.408] (II) fglrx(0): Supported detailed timing:
[   454.408] (II) fglrx(0): clock: 108.0 MHz   Image Size:  376 x 301 mm
[   454.408] (II) fglrx(0): h_active: 1280  h_sync: 1328  h_sync_end 1440 h_blank_end 1688 h_border: 0
[   454.408] (II) fglrx(0): v_active: 1024  v_sync: 1025  v_sync_end 1028 v_blanking: 1066 v_border: 0
[   454.408] (II) fglrx(0): Serial No: AU31037003172
[   454.408] (II) fglrx(0): Monitor name: Philips 19S
[   454.408] (II) fglrx(0): Ranges: V min: 56 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 145 MHz
[   454.408] (II) fglrx(0): EDID (in hex):
[   454.408] (II) fglrx(0): 	00ffffffffffff00410c780801010101
[   454.408] (II) fglrx(0): 	2514010380261e782aa150a3574c9d25
[   454.408] (II) fglrx(0): 	115054bfef80714f8140818001010101
[   454.408] (II) fglrx(0): 	010101010101302a009851002a403070
[   454.408] (II) fglrx(0): 	1300782d1100001e000000ff00415533
[   454.408] (II) fglrx(0): 	31303337303033313732000000fc0050
[   454.408] (II) fglrx(0): 	68696c697073203139530a20000000fd
[   454.408] (II) fglrx(0): 	00384c1e530e000a2020202020200090
[   454.408] (II) fglrx(0): Printing probed modes for output DFP3
[   454.408] (II) fglrx(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[   454.408] (II) fglrx(0): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[   454.408] (II) fglrx(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz)
[   454.408] (II) fglrx(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz)
[   454.408] (II) fglrx(0): Modeline "1152x864"x60.0  108.00  1152 1328 1440 1688  864 1025 1028 1066 +hsync +vsync (64.0 kHz)
[   454.408] (II) fglrx(0): Modeline "1280x768"x60.0  108.00  1280 1376 1488 1800  768 961 964 1000 +hsync +vsync (60.0 kHz)
[   454.408] (II) fglrx(0): Modeline "1280x720"x60.0  108.00  1280 1376 1488 1800  720 961 964 1000 +hsync +vsync (60.0 kHz)
[   454.408] (II) fglrx(0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz)
[   454.408] (II) fglrx(0): Modeline "1024x768"x70.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz)
[   454.408] (II) fglrx(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[   454.408] (II) fglrx(0): Modeline "800x600"x72.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz)
[   454.408] (II) fglrx(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz)
[   454.408] (II) fglrx(0): Modeline "800x600"x60.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[   454.408] (II) fglrx(0): Modeline "800x600"x56.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[   454.408] (II) fglrx(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz)
[   454.408] (II) fglrx(0): Modeline "640x480"x72.0   31.50  640 656 696 832  480 481 484 520 -hsync -vsync (37.9 kHz)
[   454.408] (II) fglrx(0): Modeline "640x480"x67.0   27.28  640 664 728 816  480 481 484 499 -hsync +vsync (33.4 kHz)
[   454.408] (II) fglrx(0): Modeline "640x480"x60.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[   454.408] (II) fglrx(0): EDID for output DFP4
[   454.408] (II) fglrx(0): Manufacturer: PHL  Model: 878  Serial#: 16843009
[   454.408] (II) fglrx(0): Year: 2010  Week: 37
[   454.408] (II) fglrx(0): EDID Version: 1.3
[   454.408] (II) fglrx(0): Digital Display Input
[   454.408] (II) fglrx(0): Max Image Size [cm]: horiz.: 38  vert.: 30
[   454.408] (II) fglrx(0): Gamma: 2.20
[   454.408] (II) fglrx(0): DPMS capabilities: Off
[   454.408] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[   454.408] (II) fglrx(0): First detailed timing is preferred mode
[   454.408] (II) fglrx(0): redX: 0.639 redY: 0.342   greenX: 0.297 greenY: 0.614
[   454.408] (II) fglrx(0): blueX: 0.146 blueY: 0.067   whiteX: 0.312 whiteY: 0.328
[   454.408] (II) fglrx(0): Supported established timings:
[   454.408] (II) fglrx(0): 720x400@70Hz
[   454.409] (II) fglrx(0): 640x480@60Hz
[   454.409] (II) fglrx(0): 640x480@67Hz
[   454.409] (II) fglrx(0): 640x480@72Hz
[   454.409] (II) fglrx(0): 640x480@75Hz
[   454.409] (II) fglrx(0): 800x600@56Hz
[   454.409] (II) fglrx(0): 800x600@60Hz
[   454.409] (II) fglrx(0): 800x600@72Hz
[   454.409] (II) fglrx(0): 800x600@75Hz
[   454.409] (II) fglrx(0): 832x624@75Hz
[   454.409] (II) fglrx(0): 1024x768@60Hz
[   454.409] (II) fglrx(0): 1024x768@70Hz
[   454.409] (II) fglrx(0): 1024x768@75Hz
[   454.409] (II) fglrx(0): 1280x1024@75Hz
[   454.409] (II) fglrx(0): 1152x864@75Hz
[   454.409] (II) fglrx(0): Manufacturer's mask: 0
[   454.409] (II) fglrx(0): Supported standard timings:
[   454.409] (II) fglrx(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[   454.409] (II) fglrx(0): #1: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[   454.409] (II) fglrx(0): #2: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[   454.409] (II) fglrx(0): Supported detailed timing:
[   454.409] (II) fglrx(0): clock: 108.0 MHz   Image Size:  376 x 301 mm
[   454.409] (II) fglrx(0): h_active: 1280  h_sync: 1328  h_sync_end 1440 h_blank_end 1688 h_border: 0
[   454.409] (II) fglrx(0): v_active: 1024  v_sync: 1025  v_sync_end 1028 v_blanking: 1066 v_border: 0
[   454.409] (II) fglrx(0): Serial No: AU31037003145
[   454.409] (II) fglrx(0): Monitor name: Philips 19S
[   454.409] (II) fglrx(0): Ranges: V min: 56 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 145 MHz
[   454.409] (II) fglrx(0): EDID (in hex):
[   454.409] (II) fglrx(0): 	00ffffffffffff00410c780801010101
[   454.409] (II) fglrx(0): 	2514010380261e782aa150a3574c9d25
[   454.409] (II) fglrx(0): 	115054bfef80714f8140818001010101
[   454.409] (II) fglrx(0): 	010101010101302a009851002a403070
[   454.409] (II) fglrx(0): 	1300782d1100001e000000ff00415533
[   454.409] (II) fglrx(0): 	31303337303033313435000000fc0050
[   454.409] (II) fglrx(0): 	68696c697073203139530a20000000fd
[   454.409] (II) fglrx(0): 	00384c1e530e000a2020202020200090
[   454.409] (II) fglrx(0): Printing probed modes for output DFP4
[   454.409] (II) fglrx(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[   454.409] (II) fglrx(0): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[   454.409] (II) fglrx(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz)
[   454.409] (II) fglrx(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz)
[   454.409] (II) fglrx(0): Modeline "1152x864"x60.0  108.00  1152 1328 1440 1688  864 1025 1028 1066 +hsync +vsync (64.0 kHz)
[   454.409] (II) fglrx(0): Modeline "1280x768"x60.0  108.00  1280 1376 1488 1800  768 961 964 1000 +hsync +vsync (60.0 kHz)
[   454.409] (II) fglrx(0): Modeline "1280x720"x60.0  108.00  1280 1376 1488 1800  720 961 964 1000 +hsync +vsync (60.0 kHz)
[   454.409] (II) fglrx(0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz)
[   454.409] (II) fglrx(0): Modeline "1024x768"x70.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz)
[   454.409] (II) fglrx(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[   454.409] (II) fglrx(0): Modeline "800x600"x72.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz)
[   454.409] (II) fglrx(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz)
[   454.409] (II) fglrx(0): Modeline "800x600"x60.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[   454.409] (II) fglrx(0): Modeline "800x600"x56.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[   454.409] (II) fglrx(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz)
[   454.409] (II) fglrx(0): Modeline "640x480"x72.0   31.50  640 656 696 832  480 481 484 520 -hsync -vsync (37.9 kHz)
[   454.409] (II) fglrx(0): Modeline "640x480"x67.0   27.28  640 664 728 816  480 481 484 499 -hsync +vsync (33.4 kHz)
[   454.409] (II) fglrx(0): Modeline "640x480"x60.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[   454.409] (II) fglrx(0): EDID for output CRT1
[   454.409] (II) fglrx(0): Output DFP1 connected
[   454.409] (II) fglrx(0): Output DFP2 disconnected
[   454.409] (II) fglrx(0): Output DFP3 connected
[   454.409] (II) fglrx(0): Output DFP4 connected
[   454.409] (II) fglrx(0): Output CRT1 disconnected
[   454.409] (II) fglrx(0): Using user preference for initial modes
[   454.409] (II) fglrx(0): Output DFP1 using initial mode 1280x1024
[   454.409] (II) fglrx(0): Output DFP3 using initial mode 1280x1024
[   454.409] (II) fglrx(0): Output DFP4 using initial mode 1280x1024
[   454.409] (II) fglrx(0): Display dimensions: (380, 300) mm
[   454.409] (II) fglrx(0): DPI set to (86, 86)
[   454.409] (II) fglrx(0): Eyefinity capable adapter detected.
[   454.409] (II) fglrx(0): Adapter AMD Radeon HD 6800 Series  has 6 configurable heads and 3 displays connected.
[   454.409] (==) fglrx(0):  PseudoColor visuals disabled
[   454.409] (II) Loading sub module "ramdac"
[   454.409] (II) LoadModule: "ramdac"
[   454.409] (II) Module "ramdac" already built-in
[   454.409] (==) fglrx(0): NoDRI = NO
[   454.409] (==) fglrx(0): Capabilities: 0x00000000
[   454.409] (==) fglrx(0): CapabilitiesEx: 0x00000000
[   454.409] (==) fglrx(0): OpenGL ClientDriverName: "fglrx_dri.so"
[   454.409] (==) fglrx(0): UseFastTLS=0
[   454.409] (==) fglrx(0): BlockSignalsOnLock=1
[   454.409] (--) Depth 24 pixmap format is 32 bpp
[   454.411] (II) Loading extension ATIFGLRXDRI
[   454.411] (II) fglrx(0): doing swlDriScreenInit
[   454.411] (II) fglrx(0): swlDriScreenInit for fglrx driver
[   454.411] ukiDynamicMajor: found major device number 249
[   454.411] ukiDynamicMajor: found major device number 249
[   454.411] ukiDynamicMajor: found major device number 249
[   454.411] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[   454.411] ukiOpenDevice: node name is /dev/ati/card0
[   454.411] ukiOpenDevice: open result is 20, (OK)
[   454.411] ukiOpenByBusid: ukiOpenMinor returns 20
[   454.411] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[   454.411] (II) fglrx(0): [uki] DRM interface version 1.0
[   454.411] (II) fglrx(0): [uki] created "fglrx" driver at busid "PCI:1:0:0"
[   454.411] (II) fglrx(0): [uki] added 8192 byte SAREA at 0x11a2000
[   454.411] (II) fglrx(0): [uki] mapped SAREA 0x11a2000 to 0x7ff5fa55e000
[   454.411] (II) fglrx(0): [uki] framebuffer handle = 0x11a3000
[   454.411] (II) fglrx(0): [uki] added 1 reserved context for kernel
[   454.411] (II) fglrx(0): swlDriScreenInit done
[   454.411] (II) fglrx(0): Kernel Module Version Information:
[   454.411] (II) fglrx(0):     Name: fglrx
[   454.411] (II) fglrx(0):     Version: 8.91.4
[   454.411] (II) fglrx(0):     Date: Oct 25 2011
[   454.411] (II) fglrx(0):     Desc: ATI FireGL DRM kernel module
[   454.411] (II) fglrx(0): Kernel Module version matches driver.
[   454.411] (II) fglrx(0): Kernel Module Build Time Information:
[   454.411] (II) fglrx(0):     Build-Kernel UTS_RELEASE:        3.0.0-13-generic
[   454.411] (II) fglrx(0):     Build-Kernel MODVERSIONS:        yes
[   454.411] (II) fglrx(0):     Build-Kernel __SMP__:            yes
[   454.411] (II) fglrx(0):     Build-Kernel PAGE_SIZE:          0x1000
[   454.411] (II) fglrx(0): [uki] register handle = 0x011a4000
[   454.426] (II) fglrx(0): DRI initialization successfull
[   454.426] (II) fglrx(0): FBADPhys: 0xf00000000 FBMappedSize: 0x012c0000
[   454.426] (==) fglrx(0): Backing store disabled
[   454.426] (II) Loading extension FGLRXEXTENSION
[   454.426] (==) fglrx(0): DPMS enabled
[   454.426] (II) fglrx(0): Initialized in-driver Xinerama extension
[   454.426] (**) fglrx(0): Textured Video is enabled.
[   454.426] (II) LoadModule: "glesx"
[   454.427] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/modules/glesx.so
[   454.427] (II) Module glesx: vendor="X.Org Foundation"
[   454.427] 	compiled for 1.4.99.906, module version = 1.0.0
[   454.427] (II) Loading extension GLESX
[   454.427] (II) fglrx(0): GLESX enableFlags = 592
[   454.427] (II) fglrx(0): GLESX is enabled
[   454.427] (II) LoadModule: "amdxmm"
[   454.427] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/modules/amdxmm.so
[   454.427] (II) Module amdxmm: vendor="X.Org Foundation"
[   454.427] 	compiled for 1.4.99.906, module version = 2.0.0
[   454.458] (II) Loading extension AMDXVOPL
[   454.458] (II) Loading extension AMDXVBA
[   454.458] [-     XMM_GLX] [I ]glesxXvInit Configureable RGBOutputColorRange
[   454.459] (II) fglrx(0): UVD feature is enabled(II) fglrx(0): 
[   454.461] (II) fglrx(0): Enable composite support successfully
[   454.461] (II) fglrx(0): X context handle = 0x1
[   454.461] (II) fglrx(0): [DRI] installation complete
[   454.461] (==) fglrx(0): Silken mouse enabled
[   454.462] (==) fglrx(0): Using HW cursor of display infrastructure!
[   454.462] (II) fglrx(0): Disabling in-server RandR and enabling in-driver RandR 1.2.
[   454.473] (II) fglrx(0): User Preference Output DFP1 using refresh rate 60.0 Hz.
[   454.562] (II) fglrx(0): User Preference Output DFP3 using refresh rate 60.0 Hz.
[   454.605] (II) fglrx(0): User Preference Output DFP4 using refresh rate 60.0 Hz.
[   454.631] (--) RandR disabled
[   454.631] (II) Initializing built-in extension Generic Event Extension
[   454.631] (II) Initializing built-in extension SHAPE
[   454.631] (II) Initializing built-in extension MIT-SHM
[   454.631] (II) Initializing built-in extension XInputExtension
[   454.631] (II) Initializing built-in extension XTEST
[   454.631] (II) Initializing built-in extension BIG-REQUESTS
[   454.631] (II) Initializing built-in extension SYNC
[   454.631] (II) Initializing built-in extension XKEYBOARD
[   454.631] (II) Initializing built-in extension XC-MISC
[   454.631] (II) Initializing built-in extension SECURITY
[   454.631] (II) Initializing built-in extension XINERAMA
[   454.631] (II) Initializing built-in extension XFIXES
[   454.631] (II) Initializing built-in extension RENDER
[   454.631] (II) Initializing built-in extension RANDR
[   454.631] (II) Initializing built-in extension COMPOSITE
[   454.631] (II) Initializing built-in extension DAMAGE
[   454.631] (II) Initializing built-in extension GESTURE
[   454.632] ukiDynamicMajor: found major device number 249
[   454.632] ukiDynamicMajor: found major device number 249
[   454.632] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[   454.632] ukiOpenDevice: node name is /dev/ati/card0
[   454.632] ukiOpenDevice: open result is 21, (OK)
[   454.632] ukiOpenByBusid: ukiOpenMinor returns 21
[   454.632] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[   454.712] (II) AIGLX: Loaded and initialized OpenGL driver(II) GLX: Initialized DRI GL provider for screen 0
[   454.725] (II) fglrx(0): Enable the clock gating!
[   454.725] (II) fglrx(0): Setting screen physical size to 1016 x 270
[   454.731] (II) XKB: reuse xkmfile /var/lib/xkb/server-B20D7FC79C7F597315E3E501AEF10E0D866E8E92.xkm
[   454.738] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[   454.738] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[   454.738] (II) LoadModule: "evdev"
[   454.738] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   454.739] (II) Module evdev: vendor="X.Org Foundation"
[   454.739] 	compiled for 1.10.2, module version = 2.6.0
[   454.739] 	Module class: X.Org XInput Driver
[   454.739] 	ABI class: X.Org XInput driver, version 12.3
[   454.739] (II) Using input driver 'evdev' for 'Power Button'
[   454.739] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   454.739] (**) Power Button: always reports core events
[   454.739] (**) Power Button: Device: "/dev/input/event1"
[   454.739] (--) Power Button: Found keys
[   454.739] (II) Power Button: Configuring as keyboard
[   454.739] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[   454.739] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[   454.739] (**) Option "xkb_rules" "evdev"
[   454.739] (**) Option "xkb_model" "pc105"
[   454.739] (**) Option "xkb_layout" "ch"
[   454.739] (**) Option "xkb_variant" "de_sundeadkeys"
[   454.740] (II) XKB: reuse xkmfile /var/lib/xkb/server-FE55EBC1A2F885FAF2F1A66FA916587DB7D4CE4D.xkm
[   454.742] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[   454.742] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[   454.742] (II) Using input driver 'evdev' for 'Power Button'
[   454.742] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   454.743] (**) Power Button: always reports core events
[   454.743] (**) Power Button: Device: "/dev/input/event0"
[   454.743] (--) Power Button: Found keys
[   454.743] (II) Power Button: Configuring as keyboard
[   454.743] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0/event0"
[   454.743] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[   454.743] (**) Option "xkb_rules" "evdev"
[   454.743] (**) Option "xkb_model" "pc105"
[   454.743] (**) Option "xkb_layout" "ch"
[   454.743] (**) Option "xkb_variant" "de_sundeadkeys"
[   454.743] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=3 (/dev/input/event6)
[   454.743] (II) No input driver/identifier specified (ignoring)
[   454.748] (II) config/udev: Adding input device Logitech Logitech Illuminated Keyboard (/dev/input/event2)
[   454.748] (**) Logitech Logitech Illuminated Keyboard: Applying InputClass "evdev keyboard catchall"
[   454.748] (II) Using input driver 'evdev' for 'Logitech Logitech Illuminated Keyboard'
[   454.748] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   454.748] (**) Logitech Logitech Illuminated Keyboard: always reports core events
[   454.748] (**) Logitech Logitech Illuminated Keyboard: Device: "/dev/input/event2"
[   454.748] (--) Logitech Logitech Illuminated Keyboard: Found keys
[   454.748] (II) Logitech Logitech Illuminated Keyboard: Configuring as keyboard
[   454.748] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb6/6-1/6-1:1.0/input/input2/event2"
[   454.748] (II) XINPUT: Adding extended input device "Logitech Logitech Illuminated Keyboard" (type: KEYBOARD)
[   454.748] (**) Option "xkb_rules" "evdev"
[   454.748] (**) Option "xkb_model" "pc105"
[   454.748] (**) Option "xkb_layout" "ch"
[   454.748] (**) Option "xkb_variant" "de_sundeadkeys"
[   454.749] (II) config/udev: Adding input device Logitech Logitech Illuminated Keyboard (/dev/input/event3)
[   454.749] (**) Logitech Logitech Illuminated Keyboard: Applying InputClass "evdev keyboard catchall"
[   454.749] (II) Using input driver 'evdev' for 'Logitech Logitech Illuminated Keyboard'
[   454.749] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   454.749] (**) Logitech Logitech Illuminated Keyboard: always reports core events
[   454.749] (**) Logitech Logitech Illuminated Keyboard: Device: "/dev/input/event3"
[   454.749] (--) Logitech Logitech Illuminated Keyboard: Found 1 mouse buttons
[   454.749] (--) Logitech Logitech Illuminated Keyboard: Found scroll wheel(s)
[   454.749] (--) Logitech Logitech Illuminated Keyboard: Found relative axes
[   454.749] (--) Logitech Logitech Illuminated Keyboard: Found absolute axes
[   454.749] (II) evdev-grail: failed to open grail, no gesture support
[   454.749] (--) Logitech Logitech Illuminated Keyboard: Found keys
[   454.749] (II) Logitech Logitech Illuminated Keyboard: Configuring as mouse
[   454.749] (II) Logitech Logitech Illuminated Keyboard: Configuring as keyboard
[   454.749] (II) Logitech Logitech Illuminated Keyboard: Adding scrollwheel support
[   454.749] (**) Logitech Logitech Illuminated Keyboard: YAxisMapping: buttons 4 and 5
[   454.749] (**) Logitech Logitech Illuminated Keyboard: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[   454.749] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb6/6-1/6-1:1.1/input/input3/event3"
[   454.749] (II) XINPUT: Adding extended input device "Logitech Logitech Illuminated Keyboard" (type: KEYBOARD)
[   454.749] (**) Option "xkb_rules" "evdev"
[   454.749] (**) Option "xkb_model" "pc105"
[   454.749] (**) Option "xkb_layout" "ch"
[   454.749] (**) Option "xkb_variant" "de_sundeadkeys"
[   454.749] (EE) Logitech Logitech Illuminated Keyboard: failed to initialize for relative axes.
[   454.749] (II) Logitech Logitech Illuminated Keyboard: initialized for absolute axes.
[   454.749] (**) Logitech Logitech Illuminated Keyboard: (accel) keeping acceleration scheme 1
[   454.749] (**) Logitech Logitech Illuminated Keyboard: (accel) acceleration profile 0
[   454.749] (**) Logitech Logitech Illuminated Keyboard: (accel) acceleration factor: 2.000
[   454.749] (**) Logitech Logitech Illuminated Keyboard: (accel) acceleration threshold: 4
[   454.750] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/event4)
[   454.750] (**) Logitech USB-PS/2 Optical Mouse: Applying InputClass "evdev pointer catchall"
[   454.750] (II) Using input driver 'evdev' for 'Logitech USB-PS/2 Optical Mouse'
[   454.750] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   454.750] (**) Logitech USB-PS/2 Optical Mouse: always reports core events
[   454.750] (**) Logitech USB-PS/2 Optical Mouse: Device: "/dev/input/event4"
[   454.750] (--) Logitech USB-PS/2 Optical Mouse: Found 12 mouse buttons
[   454.750] (--) Logitech USB-PS/2 Optical Mouse: Found scroll wheel(s)
[   454.750] (--) Logitech USB-PS/2 Optical Mouse: Found relative axes
[   454.750] (--) Logitech USB-PS/2 Optical Mouse: Found x and y relative axes
[   454.750] (II) Logitech USB-PS/2 Optical Mouse: Configuring as mouse
[   454.750] (II) Logitech USB-PS/2 Optical Mouse: Adding scrollwheel support
[   454.750] (**) Logitech USB-PS/2 Optical Mouse: YAxisMapping: buttons 4 and 5
[   454.750] (**) Logitech USB-PS/2 Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[   454.750] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb6/6-2/6-2:1.0/input/input4/event4"
[   454.750] (II) XINPUT: Adding extended input device "Logitech USB-PS/2 Optical Mouse" (type: MOUSE)
[   454.750] (II) Logitech USB-PS/2 Optical Mouse: initialized for relative axes.
[   454.750] (**) Logitech USB-PS/2 Optical Mouse: (accel) keeping acceleration scheme 1
[   454.750] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration profile 0
[   454.750] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration factor: 2.000
[   454.750] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration threshold: 4
[   454.750] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/mouse0)
[   454.750] (II) No input driver/identifier specified (ignoring)
[   454.751] (II) config/udev: Adding input device 3Dconnexion SpaceNavigator (/dev/input/event5)
[   454.751] (II) No input driver/identifier specified (ignoring)
[   454.751] (II) config/udev: Adding input device 3Dconnexion SpaceNavigator (/dev/input/js0)
[   454.751] (II) No input driver/identifier specified (ignoring)
[   454.762] (II) fglrx(0): Restoring Recent Mode via PCS is not supported in RANDR 1.2 capable environments
[   454.871] (II) fglrx(0): EDID vendor "PHL", prod id 2168
[   454.871] (II) fglrx(0): Using hsync ranges from config file
[   454.871] (II) fglrx(0): Using vrefresh ranges from config file
[   454.871] (II) fglrx(0): Printing DDC gathered Modelines:
[   454.871] (II) fglrx(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[   454.871] (II) fglrx(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[   454.871] (II) fglrx(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[   454.871] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz)
[   454.871] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz)
[   454.871] (II) fglrx(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz)
[   454.871] (II) fglrx(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[   454.871] (II) fglrx(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz)
[   454.871] (II) fglrx(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[   454.871] (II) fglrx(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz)
[   454.871] (II) fglrx(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz)
[   454.871] (II) fglrx(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[   454.871] (II) fglrx(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz)
[   454.871] (II) fglrx(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz)
[   454.871] (II) fglrx(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz)
[   454.871] (II) fglrx(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz)
[   454.871] (II) fglrx(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz)
[   454.933] (II) fglrx(0): EDID vendor "PHL", prod id 2168
[   454.933] (II) fglrx(0): Using hsync ranges from config file
[   454.933] (II) fglrx(0): Using vrefresh ranges from config file
[   454.933] (II) fglrx(0): Printing DDC gathered Modelines:
[   454.933] (II) fglrx(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[   454.933] (II) fglrx(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[   454.933] (II) fglrx(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[   454.933] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz)
[   454.933] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz)
[   454.933] (II) fglrx(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz)
[   454.933] (II) fglrx(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[   454.933] (II) fglrx(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz)
[   454.933] (II) fglrx(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[   454.933] (II) fglrx(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz)
[   454.933] (II) fglrx(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz)
[   454.933] (II) fglrx(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[   454.933] (II) fglrx(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz)
[   454.933] (II) fglrx(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz)
[   454.933] (II) fglrx(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz)
[   454.933] (II) fglrx(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz)
[   454.933] (II) fglrx(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz)
[   454.965] (II) fglrx(0): EDID vendor "PHL", prod id 2168
[   454.965] (II) fglrx(0): Using hsync ranges from config file
[   454.965] (II) fglrx(0): Using vrefresh ranges from config file
[   454.965] (II) fglrx(0): Printing DDC gathered Modelines:
[   454.965] (II) fglrx(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[   454.965] (II) fglrx(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[   454.965] (II) fglrx(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[   454.965] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz)
[   454.965] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz)
[   454.965] (II) fglrx(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz)
[   454.965] (II) fglrx(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[   454.965] (II) fglrx(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz)
[   454.965] (II) fglrx(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[   454.965] (II) fglrx(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz)
[   454.965] (II) fglrx(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz)
[   454.965] (II) fglrx(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[   454.965] (II) fglrx(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz)
[   454.965] (II) fglrx(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz)
[   454.965] (II) fglrx(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz)
[   454.965] (II) fglrx(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz)
[   454.965] (II) fglrx(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz)
[   461.661] (II) fglrx(0): EDID vendor "PHL", prod id 2168
[   461.661] (II) fglrx(0): Using hsync ranges from config file
[   461.661] (II) fglrx(0): Using vrefresh ranges from config file
[   461.661] (II) fglrx(0): Printing DDC gathered Modelines:
[   461.661] (II) fglrx(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[   461.661] (II) fglrx(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[   461.661] (II) fglrx(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[   461.661] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz)
[   461.661] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz)
[   461.661] (II) fglrx(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz)
[   461.661] (II) fglrx(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[   461.661] (II) fglrx(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz)
[   461.661] (II) fglrx(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[   461.661] (II) fglrx(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz)
[   461.661] (II) fglrx(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz)
[   461.661] (II) fglrx(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[   461.661] (II) fglrx(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz)
[   461.661] (II) fglrx(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz)
[   461.661] (II) fglrx(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz)
[   461.661] (II) fglrx(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz)
[   461.661] (II) fglrx(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz)
[   462.095] (II) fglrx(0): EDID vendor "PHL", prod id 2168
[   462.095] (II) fglrx(0): Using hsync ranges from config file
[   462.095] (II) fglrx(0): Using vrefresh ranges from config file
[   462.095] (II) fglrx(0): Printing DDC gathered Modelines:
[   462.095] (II) fglrx(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[   462.095] (II) fglrx(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[   462.095] (II) fglrx(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[   462.095] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz)
[   462.095] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz)
[   462.095] (II) fglrx(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz)
[   462.095] (II) fglrx(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[   462.095] (II) fglrx(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz)
[   462.095] (II) fglrx(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[   462.095] (II) fglrx(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz)
[   462.095] (II) fglrx(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz)
[   462.095] (II) fglrx(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[   462.095] (II) fglrx(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz)
[   462.096] (II) fglrx(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz)
[   462.096] (II) fglrx(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz)
[   462.096] (II) fglrx(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz)
[   462.096] (II) fglrx(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz)
[   462.136] (II) fglrx(0): EDID vendor "PHL", prod id 2168
[   462.136] (II) fglrx(0): Using hsync ranges from config file
[   462.136] (II) fglrx(0): Using vrefresh ranges from config file
[   462.136] (II) fglrx(0): Printing DDC gathered Modelines:
[   462.136] (II) fglrx(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[   462.136] (II) fglrx(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[   462.136] (II) fglrx(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[   462.136] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz)
[   462.137] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz)
[   462.137] (II) fglrx(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz)
[   462.137] (II) fglrx(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[   462.137] (II) fglrx(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz)
[   462.137] (II) fglrx(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[   462.137] (II) fglrx(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz)
[   462.137] (II) fglrx(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz)
[   462.137] (II) fglrx(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[   462.137] (II) fglrx(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz)
[   462.137] (II) fglrx(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz)
[   462.137] (II) fglrx(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz)
[   462.137] (II) fglrx(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz)
[   462.137] (II) fglrx(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz)
[   462.239] (II) fglrx(0): EDID vendor "PHL", prod id 2168
[   462.239] (II) fglrx(0): Using hsync ranges from config file
[   462.239] (II) fglrx(0): Using vrefresh ranges from config file
[   462.239] (II) fglrx(0): Printing DDC gathered Modelines:
[   462.239] (II) fglrx(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[   462.239] (II) fglrx(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[   462.239] (II) fglrx(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[   462.239] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz)
[   462.239] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz)
[   462.239] (II) fglrx(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz)
[   462.239] (II) fglrx(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[   462.239] (II) fglrx(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz)
[   462.239] (II) fglrx(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[   462.239] (II) fglrx(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz)
[   462.239] (II) fglrx(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz)
[   462.239] (II) fglrx(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[   462.239] (II) fglrx(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz)
[   462.239] (II) fglrx(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz)
[   462.239] (II) fglrx(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz)
[   462.239] (II) fglrx(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz)
[   462.239] (II) fglrx(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz)
[   463.739] (II) XKB: reuse xkmfile /var/lib/xkb/server-E3A67561A33DB8E77F7CFA4F0171A68D4E582DFA.xkm