ubuntuusers.de

garikkartentreiber

Datum:
3. Mai 2012 23:39
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
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
[    15.628] 
X.Org X Server 1.11.3
Release Date: 2011-12-16
[    15.628] X Protocol Version 11, Revision 0
[    15.628] Build Operating System: Linux 2.6.42-23-generic x86_64 Ubuntu
[    15.628] Current Operating System: Linux stefan-System-Product-Name 3.2.0-24-generic #37-Ubuntu SMP Wed Apr 25 08:43:22 UTC 2012 x86_64
[    15.628] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-24-generic root=UUID=0e76015a-1874-4d17-82d7-f6e907ff3431 ro quiet splash vt.handoff=7
[    15.628] Build Date: 20 April 2012  05:12:02AM
[    15.628] xorg-server 2:1.11.4-0ubuntu10.1 (For technical support please see http://www.ubuntu.com/support) 
[    15.628] Current version of pixman: 0.24.4
[    15.628] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    15.628] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    15.628] (==) Log file: "/var/log/Xorg.0.log", Time: Thu May  3 15:45:03 2012
[    15.628] (==) Using config file: "/etc/X11/xorg.conf"
[    15.628] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    15.628] (==) No Layout section.  Using the first Screen section.
[    15.628] (**) |-->Screen "Default Screen" (0)
[    15.628] (**) |   |-->Monitor "<default monitor>"
[    15.628] (==) No monitor specified for screen "Default Screen".
	Using a default monitor configuration.
[    15.628] (==) Automatically adding devices
[    15.628] (==) Automatically enabling devices
[    15.628] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[    15.628] 	Entry deleted from font path.
[    15.628] (WW) The directory "/usr/share/fonts/X11/100dpi/" does not exist.
[    15.628] 	Entry deleted from font path.
[    15.628] (WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.
[    15.628] 	Entry deleted from font path.
[    15.628] (WW) The directory "/usr/share/fonts/X11/100dpi" does not exist.
[    15.628] 	Entry deleted from font path.
[    15.628] (WW) The directory "/usr/share/fonts/X11/75dpi" does not exist.
[    15.628] 	Entry deleted from font path.
[    15.628] (WW) The directory "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" does not exist.
[    15.628] 	Entry deleted from font path.
[    15.628] (==) FontPath set to:
	/usr/share/fonts/X11/misc,
	/usr/share/fonts/X11/Type1,
	built-ins
[    15.628] (==) ModulePath set to "/usr/lib/x86_64-linux-gnu/xorg/extra-modules,/usr/lib/xorg/extra-modules,/usr/lib/xorg/modules"
[    15.628] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    15.628] (II) Loader magic: 0x7fee0a563b00
[    15.628] (II) Module ABI versions:
[    15.628] 	X.Org ANSI C Emulation: 0.4
[    15.628] 	X.Org Video Driver: 11.0
[    15.628] 	X.Org XInput driver : 16.0
[    15.628] 	X.Org Server Extension : 6.0
[    15.629] (--) PCI:*(0:1:0:0) 1002:9442:10b0:0801 rev 0, Mem @ 0xd0000000/268435456, 0xfbde0000/65536, I/O @ 0x0000c000/256, BIOS @ 0x????????/131072
[    15.629] (II) Open ACPI successful (/var/run/acpid.socket)
[    15.629] (II) "extmod" will be loaded by default.
[    15.629] (II) "dbe" will be loaded by default.
[    15.629] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[    15.629] (II) "record" will be loaded by default.
[    15.629] (II) "dri" will be loaded by default.
[    15.629] (II) "dri2" will be loaded by default.
[    15.629] (II) LoadModule: "glx"
[    15.629] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/modules/extensions/libglx.so
[    15.629] (II) Module glx: vendor="Advanced Micro Devices, Inc."
[    15.629] 	compiled for 6.9.0, module version = 1.0.0
[    15.629] (II) Loading extension GLX
[    15.629] (II) LoadModule: "extmod"
[    15.645] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[    15.645] (II) Module extmod: vendor="X.Org Foundation"
[    15.645] 	compiled for 1.11.3, module version = 1.0.0
[    15.645] 	Module class: X.Org Server Extension
[    15.645] 	ABI class: X.Org Server Extension, version 6.0
[    15.645] (II) Loading extension MIT-SCREEN-SAVER
[    15.645] (II) Loading extension XFree86-VidModeExtension
[    15.645] (II) Loading extension XFree86-DGA
[    15.645] (II) Loading extension DPMS
[    15.645] (II) Loading extension XVideo
[    15.645] (II) Loading extension XVideo-MotionCompensation
[    15.645] (II) Loading extension X-Resource
[    15.645] (II) LoadModule: "dbe"
[    15.646] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[    15.646] (II) Module dbe: vendor="X.Org Foundation"
[    15.646] 	compiled for 1.11.3, module version = 1.0.0
[    15.646] 	Module class: X.Org Server Extension
[    15.646] 	ABI class: X.Org Server Extension, version 6.0
[    15.646] (II) Loading extension DOUBLE-BUFFER
[    15.646] (II) LoadModule: "record"
[    15.646] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[    15.646] (II) Module record: vendor="X.Org Foundation"
[    15.646] 	compiled for 1.11.3, module version = 1.13.0
[    15.646] 	Module class: X.Org Server Extension
[    15.646] 	ABI class: X.Org Server Extension, version 6.0
[    15.646] (II) Loading extension RECORD
[    15.646] (II) LoadModule: "dri"
[    15.646] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[    15.646] (II) Module dri: vendor="X.Org Foundation"
[    15.646] 	compiled for 1.11.3, module version = 1.0.0
[    15.646] 	ABI class: X.Org Server Extension, version 6.0
[    15.646] (II) Loading extension XFree86-DRI
[    15.646] (II) LoadModule: "dri2"
[    15.646] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[    15.646] (II) Module dri2: vendor="X.Org Foundation"
[    15.646] 	compiled for 1.11.3, module version = 1.2.0
[    15.646] 	ABI class: X.Org Server Extension, version 6.0
[    15.646] (II) Loading extension DRI2
[    15.646] (==) Matched fglrx as autoconfigured driver 0
[    15.646] (==) Matched ati as autoconfigured driver 1
[    15.646] (==) Matched vesa as autoconfigured driver 2
[    15.646] (==) Matched fbdev as autoconfigured driver 3
[    15.646] (==) Assigned the driver to the xf86ConfigLayout
[    15.646] (II) LoadModule: "fglrx"
[    15.646] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/modules/drivers/fglrx_drv.so
[    15.659] (II) Module fglrx: vendor="FireGL - ATI Technologies Inc."
[    15.659] 	compiled for 1.4.99.906, module version = 8.96.4
[    15.659] 	Module class: X.Org Video Driver
[    15.659] (II) Loading sub module "fglrxdrm"
[    15.659] (II) LoadModule: "fglrxdrm"
[    15.659] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/modules/linux/libfglrxdrm.so
[    15.659] (II) Module fglrxdrm: vendor="FireGL - ATI Technologies Inc."
[    15.659] 	compiled for 1.4.99.906, module version = 8.96.4
[    15.659] (II) LoadModule: "ati"
[    15.694] (II) Loading /usr/lib/xorg/modules/drivers/ati_drv.so
[    15.694] (II) Module ati: vendor="X.Org Foundation"
[    15.694] 	compiled for 1.11.3, module version = 6.14.99
[    15.694] 	Module class: X.Org Video Driver
[    15.694] 	ABI class: X.Org Video Driver, version 11.0
[    15.694] (II) LoadModule: "radeon"
[    15.694] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
[    15.694] (II) Module radeon: vendor="X.Org Foundation"
[    15.694] 	compiled for 1.11.3, module version = 6.14.99
[    15.694] 	Module class: X.Org Video Driver
[    15.694] 	ABI class: X.Org Video Driver, version 11.0
[    15.694] (II) LoadModule: "vesa"
[    15.694] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[    15.694] (II) Module vesa: vendor="X.Org Foundation"
[    15.694] 	compiled for 1.11.3, module version = 2.3.0
[    15.694] 	Module class: X.Org Video Driver
[    15.694] 	ABI class: X.Org Video Driver, version 11.0
[    15.694] (II) LoadModule: "fbdev"
[    15.695] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[    15.695] (II) Module fbdev: vendor="X.Org Foundation"
[    15.695] 	compiled for 1.11.3, module version = 0.4.2
[    15.695] 	ABI class: X.Org Video Driver, version 11.0
[    15.695] (II) ATI Proprietary Linux Driver Version Identifier:8.96.4
[    15.695] (II) ATI Proprietary Linux Driver Release Identifier: 8.96.7                               
[    15.695] (II) ATI Proprietary Linux Driver Build Date: Mar 12 2012 13:06:50
[    15.695] (II) RADEON: Driver for ATI Radeon chipsets:
	ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
	ATI Radeon Mobility X300 (M24) 3152 (PCIE),
	ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
	ATI Radeon X600 (RV380) 3E50 (PCIE),
	ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
	ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
	ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
	ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
	ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
	ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
	ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
	ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
	ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
	ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
	ATI Radeon IGP330M/340M/350M (U2) 4337,
	ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
	ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
	ATI Radeon X800PRO (R420) JI (AGP),
	ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
	ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
	ATI Radeon Mobility 9800 (M18) JN (AGP),
	ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
	ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
	ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
	ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
	ATI Radeon Mobility M7 LW (AGP),
	ATI Mobility FireGL 7800 M7 LX (AGP),
	ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
	ATI FireGL Mobility 9000 (M9) Ld (AGP),
	ATI Radeon Mobility 9000 (M9) Lf (AGP),
	ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI FireMV 2400 PCI,
	ATI Radeon 9700 Pro ND (AGP), ATI Radeon 9700/9500Pro NE (AGP),
	ATI Radeon 9600TX NF (AGP), ATI FireGL X1 NG (AGP),
	ATI Radeon 9800PRO NH (AGP), ATI Radeon 9800 NI (AGP),
	ATI FireGL X2 NK (AGP), ATI Radeon 9800XT NJ (AGP),
	ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
	ATI Radeon Mobility 9600 (M10) NQ (AGP),
	ATI Radeon Mobility 9600 (M11) NR (AGP),
	ATI Radeon Mobility 9600 (M10) NS (AGP),
	ATI FireGL Mobility T2 (M10) NT (AGP),
	ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
	ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
	ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
	ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
	ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
	ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
	ATI Radeon Mobility X300 (M22) 5460 (PCIE),
	ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
	ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
	ATI Radeon X800PRO (R423) UI (PCIE),
	ATI Radeon X800LE (R423) UJ (PCIE),
	ATI Radeon X800SE (R423) UK (PCIE),
	ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
	ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
	ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
	ATI FireGL unknown (R423) UR (PCIE),
	ATI FireGL unknown (R423) UT (PCIE),
	ATI Mobility FireGL V5000 (M26) (PCIE),
	ATI Mobility FireGL V5000 (M26) (PCIE),
	ATI Mobility Radeon X700 XL (M26) (PCIE),
	ATI Mobility Radeon X700 (M26) (PCIE),
	ATI Mobility Radeon X700 (M26) (PCIE),
	ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
	ATI Radeon Mobility 9100 IGP (U3) 5835,
	ATI Radeon XPRESS 200 5954 (PCIE),
	ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
	ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
	ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
	ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
	ATI Radeon XPRESS 200M 5975 (PCIE),
	ATI Radeon XPRESS 200 5A41 (PCIE),
	ATI Radeon XPRESS 200M 5A42 (PCIE),
	ATI Radeon XPRESS 200 5A61 (PCIE),
	ATI Radeon XPRESS 200M 5A62 (PCIE),
	ATI Radeon X300 (RV370) 5B60 (PCIE),
	ATI Radeon X600 (RV370) 5B62 (PCIE),
	ATI Radeon X550 (RV370) 5B63 (PCIE),
	ATI FireGL V3100 (RV370) 5B64 (PCIE),
	ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
	ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
	ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
	ATI Mobility Radeon X800 XT (M28) (PCIE),
	ATI Mobility FireGL V5100 (M28) (PCIE),
	ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
	ATI Radeon X850 XT PE (R480) (PCIE),
	ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
	ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
	ATI Radeon X850 XT (R480) (PCIE),
	ATI Radeon X800XT (R423) 5D57 (PCIE),
	ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
	ATI Radeon X700 PRO (RV410) (PCIE),
	ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
	ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
	ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
	ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
	ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
	ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
	ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
	ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
	ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
	ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
	ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
	ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
	ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
	ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
	ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
	ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
	ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
	ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
	ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
	ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
	ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
	ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
	ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
	ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
	ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
	ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
	ATI Mobility Radeon X1700, ATI Radeon X2300HD,
	ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
	ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
	ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
	ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
	ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
	ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
	ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
	ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
	ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
	ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
	ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
	ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
	ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
	ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
	ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
	ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
	ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
	ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
	ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
	ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
	AMD FireStream 9250, ATI FirePro V8700 (FireGL),
	ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
	ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
	ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
	ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
	ATI Mobility Radeon HD 4670, ATI FirePro M5750,
	ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
	ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
	ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
	ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
	ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
	ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
	ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
	ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
	ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
	ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
	ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
	ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
	ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
	ATI Mobility Radeon HD 3850 X2, ATI RV670,
	ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
	ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
	ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
	ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
	ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
	ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
	ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
	ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
	ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
	ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
	ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
	ATI FireGL V3600, ATI Radeon HD 2600 LE,
	ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
	ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
	ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
	ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
	ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
	ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
	ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
	ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
	ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
	ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
	ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
	ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
	ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
	SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200,
	ATI Radeon 4100, ATI Mobility Radeon HD 4200,
	ATI Mobility Radeon 4100, ATI Radeon HD 4290, ATI Radeon HD 4250,
	AMD Radeon HD 6310 Graphics, AMD Radeon HD 6310 Graphics,
	AMD Radeon HD 6250 Graphics, AMD Radeon HD 6250 Graphics,
	AMD Radeon HD 6300 Series Graphics,
	AMD Radeon HD 6200 Series Graphics, PALM, PALM, CYPRESS,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
	AMD Firestream 9350, ATI Radeon HD 5800 Series,
	ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
	ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
	ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
	ATI Mobility Radeon HD 5800 Series,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
	ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
	ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
	ATI Mobility Radeon HD 5000 Series,
	ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
	ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
	ATI Mobility Radeon HD 5000 Series,
	ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
	ATI Mobility Radeon Graphics, CEDAR,
	ATI FirePro (FireGL) Graphics Adapter,
	ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
	ATI Radeon HD 5450, CEDAR, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
	CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
	AMD Radeon HD 6900 Series, AMD Radeon HD 6900 Series, CAYMAN, CAYMAN,
	CAYMAN, AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series,
	BARTS, BARTS, Mobility Radeon HD 6000 Series,
	Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
	AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
	AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
	TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
	TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
	CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
	CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS
[    15.696] (II) VESA: driver for VESA chipsets: vesa
[    15.696] (II) FBDEV: driver for framebuffer: fbdev
[    15.696] (++) using VT number 7

[    15.696] (WW) Falling back to old probe method for fglrx
[    15.702] (II) Loading PCS database from /etc/ati/amdpcsdb
[    15.702] (--) Assigning device section with no busID to primary device
[    15.702] (--) Chipset Supported AMD Graphics Processor (0x9442) found
[    15.703] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:17:0) found
[    15.703] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:18:0) found
[    15.703] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:18:1) found
[    15.703] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:18:2) found
[    15.703] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:19:0) found
[    15.703] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:19:1) found
[    15.703] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:19:2) found
[    15.703] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:20:0) found
[    15.703] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:20:1) found
[    15.703] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:20:2) found
[    15.703] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:20:3) found
[    15.703] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:20:4) found
[    15.703] (WW) fglrx: No matching Device section for instance (BusID PCI:0@0:20:5) found
[    15.703] (WW) fglrx: No matching Device section for instance (BusID PCI:0@1:0:1) found
[    15.703] (II) AMD Video driver is running on a device belonging to a group targeted for this release
[    15.703] (II) AMD Video driver is signed
[    15.703] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/modules/drivers/fglrx_drv.so
[    15.703] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/modules/linux/libfglrxdrm.so
[    15.703] (II) fglrx(0): pEnt->device->identifier=0x7fee0a31636f
[    15.703] (WW) Falling back to old probe method for vesa
[    15.703] (WW) Falling back to old probe method for fbdev
[    15.703] (II) Loading sub module "fbdevhw"
[    15.703] (II) LoadModule: "fbdevhw"
[    15.703] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
[    15.703] (II) Module fbdevhw: vendor="X.Org Foundation"
[    15.703] 	compiled for 1.11.3, module version = 0.0.2
[    15.703] 	ABI class: X.Org Video Driver, version 11.0
[    15.703] (II) fglrx(0): === [xdl_xs111_atiddxPreInit] === begin
[    15.703] (II) Loading sub module "vgahw"
[    15.703] (II) LoadModule: "vgahw"
[    15.703] (II) Loading /usr/lib/xorg/modules/libvgahw.so
[    15.703] (II) Module vgahw: vendor="X.Org Foundation"
[    15.703] 	compiled for 1.11.3, module version = 0.1.0
[    15.703] 	ABI class: X.Org Video Driver, version 11.0
[    15.703] (II) fglrx(0): Creating default Display subsection in Screen section
	"Default Screen" for depth/fbbpp 24/32
[    15.703] (**) fglrx(0): Depth 24, (--) framebuffer bpp 32
[    15.703] (II) fglrx(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[    15.703] (==) fglrx(0): Default visual is TrueColor
[    15.703] (==) fglrx(0): RGB weight 888
[    15.703] (II) fglrx(0): Using 8 bits per RGB 
[    15.704] (==) fglrx(0): Buffer Tiling is ON
[    15.704] (II) Loading sub module "fglrxdrm"
[    15.704] (II) LoadModule: "fglrxdrm"
[    15.704] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/modules/linux/libfglrxdrm.so
[    15.704] (II) Module fglrxdrm: vendor="FireGL - ATI Technologies Inc."
[    15.704] 	compiled for 1.4.99.906, module version = 8.96.4
[    15.736] ukiDynamicMajor: found major device number 249
[    15.736] ukiDynamicMajor: found major device number 249
[    15.736] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[    15.736] ukiOpenDevice: node name is /dev/ati/card0
[    15.736] ukiOpenDevice: open result is 12, (OK)
[    15.736] ukiOpenByBusid: ukiOpenMinor returns 12
[    15.736] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[    15.736] (**) fglrx(0): NoAccel = NO
[    15.736] (**) fglrx(0): ATI 2D Acceleration Architecture enabled
[    15.736] (--) fglrx(0): Chipset: "ATI Radeon HD 4800 Series" (Chipset = 0x9442)
[    15.736] (--) fglrx(0): (PciSubVendor = 0x10b0, PciSubDevice = 0x0801)
[    15.736] (==) fglrx(0): board vendor info: third party graphics adapter - NOT original ATI
[    15.736] (--) fglrx(0): Linear framebuffer (phys) at 0xd0000000
[    15.736] (--) fglrx(0): MMIO registers at 0xfbde0000
[    15.736] (--) fglrx(0): I/O port at 0x0000c000
[    15.736] (==) fglrx(0): ROM-BIOS at 0x000c0000
[    15.812] (II) fglrx(0): AC Adapter is used
[    15.818] (II) fglrx(0): Primary V_BIOS segment is: 0xc000
[    15.819] (II) Loading sub module "vbe"
[    15.819] (II) LoadModule: "vbe"
[    15.819] (II) Loading /usr/lib/xorg/modules/libvbe.so
[    15.819] (II) Module vbe: vendor="X.Org Foundation"
[    15.819] 	compiled for 1.11.3, module version = 1.1.0
[    15.819] 	ABI class: X.Org Video Driver, version 11.0
[    15.819] (II) fglrx(0): VESA BIOS detected
[    15.819] (II) fglrx(0): VESA VBE Version 3.0
[    15.819] (II) fglrx(0): VESA VBE Total Mem: 16384 kB
[    15.819] (II) fglrx(0): VESA VBE OEM: ATI ATOMBIOS
[    15.819] (II) fglrx(0): VESA VBE OEM Software Rev: 11.8
[    15.819] (II) fglrx(0): VESA VBE OEM Vendor: (C) 1988-2005, ATI Technologies Inc. 
[    15.819] (II) fglrx(0): VESA VBE OEM Product: 34
[    15.819] (II) fglrx(0): VESA VBE OEM Product Rev: 01.00
[    15.846] (II) fglrx(0): ATI Video BIOS revision 9 or later detected
[    15.847] (--) fglrx(0): Video RAM: 524288 kByte, Type: GDDR3
[    15.847] (II) fglrx(0): PCIE card detected
[    15.847] (--) fglrx(0): Using per-process page tables (PPPT) as GART.
[    15.847] (WW) fglrx(0): board is an unknown third party board, chipset is supported
[    15.851] (II) fglrx(0): Using adapter: 1:0.0.
[    15.880] (II) fglrx(0): [FB] MC range(MCFBBase = 0xf00000000, MCFBSize = 0x20000000)
[    15.887] (II) fglrx(0): Interrupt handler installed at IRQ 46.
[    15.887] (II) fglrx(0): RandR 1.2 support is enabled!
[    15.887] (II) fglrx(0): RandR 1.2 rotation support is enabled!
[    15.887] (==) fglrx(0): Center Mode is disabled 
[    15.887] (II) Loading sub module "fb"
[    15.887] (II) LoadModule: "fb"
[    15.887] (II) Loading /usr/lib/xorg/modules/libfb.so
[    15.887] (II) Module fb: vendor="X.Org Foundation"
[    15.887] 	compiled for 1.11.3, module version = 1.0.0
[    15.887] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    15.887] (II) Loading sub module "ddc"
[    15.887] (II) LoadModule: "ddc"
[    15.887] (II) Module "ddc" already built-in
[    16.499] (II) fglrx(0): Finished Initialize PPLIB!
[    16.502] (II) fglrx(0): Output DFP1 has no monitor section
[    16.502] (II) fglrx(0): Output DFP2 has no monitor section
[    16.502] (II) fglrx(0): Output CRT1 has no monitor section
[    16.502] (II) fglrx(0): Output CRT2 has no monitor section
[    16.502] (II) fglrx(0): Output TV has no monitor section
[    16.502] (II) fglrx(0): Output CV has no monitor section
[    16.502] (II) Loading sub module "ddc"
[    16.502] (II) LoadModule: "ddc"
[    16.502] (II) Module "ddc" already built-in
[    16.502] (II) fglrx(0): Connected Display0: DFP2
[    16.502] (II) fglrx(0): Display0 EDID data ---------------------------
[    16.502] (II) fglrx(0): Manufacturer: IVM  Model: 6107  Serial#: 16843009
[    16.502] (II) fglrx(0): Year: 2011  Week: 15
[    16.502] (II) fglrx(0): EDID Version: 1.3
[    16.502] (II) fglrx(0): Digital Display Input
[    16.502] (II) fglrx(0): Max Image Size [cm]: horiz.: 52  vert.: 29
[    16.502] (II) fglrx(0): Gamma: 2.20
[    16.502] (II) fglrx(0): DPMS capabilities: Off
[    16.502] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[    16.502] (II) fglrx(0): First detailed timing is preferred mode
[    16.502] (II) fglrx(0): redX: 0.641 redY: 0.338   greenX: 0.315 greenY: 0.629
[    16.502] (II) fglrx(0): blueX: 0.159 blueY: 0.059   whiteX: 0.313 whiteY: 0.329
[    16.502] (II) fglrx(0): Supported established timings:
[    16.502] (II) fglrx(0): 720x400@70Hz
[    16.502] (II) fglrx(0): 640x480@60Hz
[    16.502] (II) fglrx(0): 640x480@67Hz
[    16.502] (II) fglrx(0): 640x480@72Hz
[    16.502] (II) fglrx(0): 640x480@75Hz
[    16.502] (II) fglrx(0): 800x600@56Hz
[    16.502] (II) fglrx(0): 800x600@60Hz
[    16.502] (II) fglrx(0): 800x600@72Hz
[    16.502] (II) fglrx(0): 800x600@75Hz
[    16.502] (II) fglrx(0): 832x624@75Hz
[    16.502] (II) fglrx(0): 1024x768@60Hz
[    16.502] (II) fglrx(0): 1024x768@70Hz
[    16.502] (II) fglrx(0): 1024x768@75Hz
[    16.502] (II) fglrx(0): 1280x1024@75Hz
[    16.502] (II) fglrx(0): Manufacturer's mask: 0
[    16.502] (II) fglrx(0): Supported standard timings:
[    16.502] (II) fglrx(0): #0: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[    16.502] (II) fglrx(0): #1: hsize: 1600  vsize 1200  refresh: 60  vid: 16553
[    16.502] (II) fglrx(0): #2: hsize: 1440  vsize 900  refresh: 60  vid: 149
[    16.502] (II) fglrx(0): #3: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[    16.502] (II) fglrx(0): #4: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[    16.502] (II) fglrx(0): #5: hsize: 1440  vsize 900  refresh: 75  vid: 3989
[    16.502] (II) fglrx(0): #6: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[    16.502] (II) fglrx(0): #7: hsize: 1920  vsize 1080  refresh: 60  vid: 49361
[    16.502] (II) fglrx(0): Supported detailed timing:
[    16.502] (II) fglrx(0): clock: 148.5 MHz   Image Size:  521 x 293 mm
[    16.502] (II) fglrx(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    16.502] (II) fglrx(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[    16.502] (II) fglrx(0): Serial No: 1109411501060
[    16.502] (II) fglrx(0): Ranges: V min: 55 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 175 MHz
[    16.502] (II) fglrx(0): Monitor name: PL2473HD
[    16.502] (II) fglrx(0): EDID (in hex):
[    16.502] (II) fglrx(0): 	00ffffffffffff0026cd076101010101
[    16.502] (II) fglrx(0): 	0f15010380341d782a2cc5a45650a128
[    16.502] (II) fglrx(0): 	0f5054bfef00b300a940950081408180
[    16.502] (II) fglrx(0): 	950f714fd1c0023a801871382d40582c
[    16.502] (II) fglrx(0): 	450009252100001e000000ff00313130
[    16.502] (II) fglrx(0): 	39343131353031303630000000fd0037
[    16.502] (II) fglrx(0): 	4c1e5311000a202020202020000000fc
[    16.502] (II) fglrx(0): 	00504c3234373348440a2020202000c9
[    16.502] (II) fglrx(0): End of Display0 EDID data --------------------
[    16.671] (II) fglrx(0): EDID for output DFP1
[    16.671] (II) fglrx(0): EDID for output DFP2
[    16.671] (II) fglrx(0): Manufacturer: IVM  Model: 6107  Serial#: 16843009
[    16.671] (II) fglrx(0): Year: 2011  Week: 15
[    16.671] (II) fglrx(0): EDID Version: 1.3
[    16.671] (II) fglrx(0): Digital Display Input
[    16.671] (II) fglrx(0): Max Image Size [cm]: horiz.: 52  vert.: 29
[    16.671] (II) fglrx(0): Gamma: 2.20
[    16.671] (II) fglrx(0): DPMS capabilities: Off
[    16.671] (II) fglrx(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[    16.671] (II) fglrx(0): First detailed timing is preferred mode
[    16.671] (II) fglrx(0): redX: 0.641 redY: 0.338   greenX: 0.315 greenY: 0.629
[    16.671] (II) fglrx(0): blueX: 0.159 blueY: 0.059   whiteX: 0.313 whiteY: 0.329
[    16.671] (II) fglrx(0): Supported established timings:
[    16.671] (II) fglrx(0): 720x400@70Hz
[    16.671] (II) fglrx(0): 640x480@60Hz
[    16.671] (II) fglrx(0): 640x480@67Hz
[    16.671] (II) fglrx(0): 640x480@72Hz
[    16.671] (II) fglrx(0): 640x480@75Hz
[    16.671] (II) fglrx(0): 800x600@56Hz
[    16.671] (II) fglrx(0): 800x600@60Hz
[    16.671] (II) fglrx(0): 800x600@72Hz
[    16.671] (II) fglrx(0): 800x600@75Hz
[    16.671] (II) fglrx(0): 832x624@75Hz
[    16.671] (II) fglrx(0): 1024x768@60Hz
[    16.671] (II) fglrx(0): 1024x768@70Hz
[    16.671] (II) fglrx(0): 1024x768@75Hz
[    16.671] (II) fglrx(0): 1280x1024@75Hz
[    16.671] (II) fglrx(0): Manufacturer's mask: 0
[    16.671] (II) fglrx(0): Supported standard timings:
[    16.671] (II) fglrx(0): #0: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[    16.671] (II) fglrx(0): #1: hsize: 1600  vsize 1200  refresh: 60  vid: 16553
[    16.671] (II) fglrx(0): #2: hsize: 1440  vsize 900  refresh: 60  vid: 149
[    16.671] (II) fglrx(0): #3: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[    16.671] (II) fglrx(0): #4: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[    16.671] (II) fglrx(0): #5: hsize: 1440  vsize 900  refresh: 75  vid: 3989
[    16.671] (II) fglrx(0): #6: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[    16.671] (II) fglrx(0): #7: hsize: 1920  vsize 1080  refresh: 60  vid: 49361
[    16.671] (II) fglrx(0): Supported detailed timing:
[    16.671] (II) fglrx(0): clock: 148.5 MHz   Image Size:  521 x 293 mm
[    16.671] (II) fglrx(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    16.671] (II) fglrx(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[    16.671] (II) fglrx(0): Serial No: 1109411501060
[    16.672] (II) fglrx(0): Ranges: V min: 55 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 175 MHz
[    16.672] (II) fglrx(0): Monitor name: PL2473HD
[    16.672] (II) fglrx(0): EDID (in hex):
[    16.672] (II) fglrx(0): 	00ffffffffffff0026cd076101010101
[    16.672] (II) fglrx(0): 	0f15010380341d782a2cc5a45650a128
[    16.672] (II) fglrx(0): 	0f5054bfef00b300a940950081408180
[    16.672] (II) fglrx(0): 	950f714fd1c0023a801871382d40582c
[    16.672] (II) fglrx(0): 	450009252100001e000000ff00313130
[    16.672] (II) fglrx(0): 	39343131353031303630000000fd0037
[    16.672] (II) fglrx(0): 	4c1e5311000a202020202020000000fc
[    16.672] (II) fglrx(0): 	00504c3234373348440a2020202000c9
[    16.672] (II) fglrx(0): Printing probed modes for output DFP2
[    16.672] (II) fglrx(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 -hsync -vsync (67.5 kHz)
[    16.672] (II) fglrx(0): Modeline "1776x1000"x60.0  147.05  1776 1880 2072 2368  1000 1001 1004 1035 +hsync -vsync (62.1 kHz)
[    16.672] (II) fglrx(0): Modeline "1280x720"x60.0   74.25  1280 1390 1430 1650  720 725 730 750 -hsync -vsync (45.0 kHz)
[    16.672] (II) fglrx(0): Modeline "1600x1200"x60.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 -hsync -vsync (75.0 kHz)
[    16.672] (II) fglrx(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 +hsync -vsync (65.3 kHz)
[    16.672] (II) fglrx(0): Modeline "1400x1050"x60.0  121.75  1400 1488 1632 1864  1050 1053 1057 1089 +hsync -vsync (65.3 kHz)
[    16.672] (II) fglrx(0): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 -hsync -vsync (80.0 kHz)
[    16.672] (II) fglrx(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 -hsync -vsync (64.0 kHz)
[    16.672] (II) fglrx(0): Modeline "1440x900"x60.0  106.50  1440 1520 1672 1904  900 903 909 934 +hsync -vsync (55.9 kHz)
[    16.672] (II) fglrx(0): Modeline "1280x960"x75.0  129.86  1280 1368 1504 1728  960 961 964 1002 +hsync -vsync (75.2 kHz)
[    16.672] (II) fglrx(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 -hsync -vsync (60.0 kHz)
[    16.672] (II) fglrx(0): Modeline "1280x800"x75.0  107.21  1280 1360 1496 1712  800 801 804 835 +hsync -vsync (62.6 kHz)
[    16.672] (II) fglrx(0): Modeline "1280x800"x60.0   83.46  1280 1344 1480 1680  800 801 804 828 +hsync -vsync (49.7 kHz)
[    16.672] (II) fglrx(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 -hsync -vsync (67.5 kHz)
[    16.672] (II) fglrx(0): Modeline "1152x864"x60.0   81.62  1152 1216 1336 1520  864 865 868 895 +hsync -vsync (53.7 kHz)
[    16.672] (II) fglrx(0): Modeline "1280x768"x75.0  102.25  1280 1360 1488 1696  768 771 778 805 +hsync -vsync (60.3 kHz)
[    16.672] (II) fglrx(0): Modeline "1280x768"x60.0   79.50  1280 1344 1472 1664  768 771 778 798 +hsync -vsync (47.8 kHz)
[    16.672] (II) fglrx(0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 -hsync -vsync (60.0 kHz)
[    16.672] (II) fglrx(0): Modeline "1024x768"x70.0   75.00  1024 1048 1184 1328  768 771 777 806 +hsync +vsync (56.5 kHz)
[    16.672] (II) fglrx(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 +hsync +vsync (48.4 kHz)
[    16.672] (II) fglrx(0): Modeline "800x600"x72.0   50.00  800 856 976 1040  600 637 643 666 -hsync -vsync (48.1 kHz)
[    16.672] (II) fglrx(0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 -hsync -vsync (46.9 kHz)
[    16.672] (II) fglrx(0): Modeline "800x600"x70.0   45.50  800 840 920 1040  600 601 604 625 +hsync -vsync (43.8 kHz)
[    16.672] (II) fglrx(0): Modeline "800x600"x60.0   40.00  800 840 968 1056  600 601 605 628 -hsync -vsync (37.9 kHz)
[    16.672] (II) fglrx(0): Modeline "800x600"x56.0   36.00  800 824 896 1024  600 601 603 625 -hsync -vsync (35.2 kHz)
[    16.672] (II) fglrx(0): Modeline "720x480"x60.0   26.71  720 736 808 896  480 481 484 497 +hsync -vsync (29.8 kHz)
[    16.672] (II) fglrx(0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 +hsync +vsync (37.5 kHz)
[    16.672] (II) fglrx(0): Modeline "640x480"x72.0   31.50  640 656 696 832  480 481 484 520 +hsync +vsync (37.9 kHz)
[    16.672] (II) fglrx(0): Modeline "640x480"x60.0   25.18  640 648 744 800  480 482 484 525 +hsync +vsync (31.5 kHz)
[    16.672] (II) fglrx(0): EDID for output CRT1
[    16.672] (II) fglrx(0): EDID for output CRT2
[    16.672] (II) fglrx(0): EDID for output TV
[    16.672] (II) fglrx(0): EDID for output CV
[    16.672] (II) fglrx(0): Output DFP1 disconnected
[    16.672] (II) fglrx(0): Output DFP2 connected
[    16.672] (II) fglrx(0): Output CRT1 disconnected
[    16.672] (II) fglrx(0): Output CRT2 disconnected
[    16.672] (II) fglrx(0): Output TV disconnected
[    16.672] (II) fglrx(0): Output CV disconnected
[    16.672] (II) fglrx(0): Using exact sizes for initial modes
[    16.672] (II) fglrx(0): Output DFP2 using initial mode 1920x1080
[    16.672] (II) fglrx(0): DPI set to (96, 96)
[    16.672] (II) fglrx(0): Adapter ATI Radeon HD 4800 Series has 2 configurable heads and 1 displays connected.
[    16.672] (==) fglrx(0):  PseudoColor visuals disabled
[    16.672] (II) Loading sub module "ramdac"
[    16.672] (II) LoadModule: "ramdac"
[    16.672] (II) Module "ramdac" already built-in
[    16.672] (==) fglrx(0): NoDRI = NO
[    16.672] (==) fglrx(0): Capabilities: 0x00000000
[    16.672] (==) fglrx(0): CapabilitiesEx: 0x00000000
[    16.672] (==) fglrx(0): OpenGL ClientDriverName: "fglrx_dri.so"
[    16.672] (==) fglrx(0): UseFastTLS=0
[    16.672] (==) fglrx(0): BlockSignalsOnLock=1
[    16.672] (II) UnloadModule: "radeon"
[    16.672] (II) Unloading radeon
[    16.672] (II) UnloadModule: "vesa"
[    16.672] (II) Unloading vesa
[    16.672] (II) UnloadModule: "fbdev"
[    16.672] (II) Unloading fbdev
[    16.672] (II) UnloadModule: "fbdevhw"
[    16.672] (II) Unloading fbdevhw
[    16.672] (--) Depth 24 pixmap format is 32 bpp
[    16.676] (II) Loading extension ATIFGLRXDRI
[    16.676] (II) fglrx(0): doing swlDriScreenInit
[    16.676] (II) fglrx(0): swlDriScreenInit for fglrx driver
[    16.676] ukiDynamicMajor: found major device number 249
[    16.676] ukiDynamicMajor: found major device number 249
[    16.677] ukiDynamicMajor: found major device number 249
[    16.677] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[    16.677] ukiOpenDevice: node name is /dev/ati/card0
[    16.677] ukiOpenDevice: open result is 17, (OK)
[    16.677] ukiOpenByBusid: ukiOpenMinor returns 17
[    16.677] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[    16.677] (II) fglrx(0): [uki] DRM interface version 1.0
[    16.677] (II) fglrx(0): [uki] created "fglrx" driver at busid "PCI:1:0:0"
[    16.677] (II) fglrx(0): [uki] added 8192 byte SAREA at 0x2000
[    16.677] (II) fglrx(0): [uki] mapped SAREA 0x2000 to 0x7fee0a164000
[    16.677] (II) fglrx(0): [uki] framebuffer handle = 0x3000
[    16.677] (II) fglrx(0): [uki] added 1 reserved context for kernel
[    16.677] (II) fglrx(0): swlDriScreenInit done
[    16.677] (II) fglrx(0): Kernel Module Version Information:
[    16.677] (II) fglrx(0):     Name: fglrx
[    16.677] (II) fglrx(0):     Version: 8.96.4
[    16.677] (II) fglrx(0):     Date: Mar 12 2012
[    16.677] (II) fglrx(0):     Desc: ATI FireGL DRM kernel module
[    16.677] (II) fglrx(0): Kernel Module version matches driver.
[    16.677] (II) fglrx(0): Kernel Module Build Time Information:
[    16.677] (II) fglrx(0):     Build-Kernel UTS_RELEASE:        3.2.0-24-generic
[    16.677] (II) fglrx(0):     Build-Kernel MODVERSIONS:        no
[    16.677] (II) fglrx(0):     Build-Kernel __SMP__:            yes
[    16.677] (II) fglrx(0):     Build-Kernel PAGE_SIZE:          0x1000
[    16.677] (II) fglrx(0): [uki] register handle = 0x00004000
[    16.690] (II) fglrx(0): DRI initialization successfull
[    16.690] (II) fglrx(0): FBADPhys: 0xf00000000 FBMappedSize: 0x01068000
[    16.690] (==) fglrx(0): Backing store disabled
[    16.690] (II) Loading extension FGLRXEXTENSION
[    16.690] (==) fglrx(0): DPMS enabled
[    16.690] (II) fglrx(0): Initialized in-driver Xinerama extension
[    16.690] (**) fglrx(0): Textured Video is enabled.
[    16.690] (II) LoadModule: "glesx"
[    16.690] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/modules/glesx.so
[    16.691] (II) Module glesx: vendor="X.Org Foundation"
[    16.691] 	compiled for 1.4.99.906, module version = 1.0.0
[    16.691] (II) Loading extension GLESX
[    16.691] (II) fglrx(0): GLESX enableFlags = 528
[    16.691] (II) fglrx(0): GLESX is enabled
[    16.691] (II) LoadModule: "amdxmm"
[    16.691] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/modules/amdxmm.so
[    16.691] (II) Module amdxmm: vendor="X.Org Foundation"
[    16.691] 	compiled for 1.4.99.906, module version = 2.0.0
[    16.691] (II) Loading extension AMDXVOPL
[    16.691] (II) Loading extension AMDXVBA
[    16.692] (II) fglrx(0): UVD feature is enabled(II) fglrx(0): 
[    16.694] (II) fglrx(0): Enable composite support successfully
[    16.694] (II) fglrx(0): X context handle = 0x1
[    16.694] (II) fglrx(0): [DRI] installation complete
[    16.694] (==) fglrx(0): Silken mouse enabled
[    16.694] (==) fglrx(0): Using HW cursor of display infrastructure!
[    16.694] (II) fglrx(0): Disabling in-server RandR and enabling in-driver RandR 1.2.
[    16.694] (II) fglrx(0): Cannot get TV Format. Set all TV geometry value to zero!
[    16.694] (II) fglrx(0): Cannot set TV horizontal size.
[    16.694] (II) fglrx(0): Cannot get TV Format for trying to adjust horizontal position after horizontal size changed. 
[    16.694] (II) fglrx(0): Cannot set TV horizontal position.
[    16.694] (II) fglrx(0): Cannot set TV vertical position.
[    16.781] (--) RandR disabled
[    16.781] (II) Initializing built-in extension Generic Event Extension
[    16.781] (II) Initializing built-in extension SHAPE
[    16.781] (II) Initializing built-in extension MIT-SHM
[    16.781] (II) Initializing built-in extension XInputExtension
[    16.781] (II) Initializing built-in extension XTEST
[    16.781] (II) Initializing built-in extension BIG-REQUESTS
[    16.781] (II) Initializing built-in extension SYNC
[    16.781] (II) Initializing built-in extension XKEYBOARD
[    16.781] (II) Initializing built-in extension XC-MISC
[    16.781] (II) Initializing built-in extension SECURITY
[    16.781] (II) Initializing built-in extension XINERAMA
[    16.781] (II) Initializing built-in extension XFIXES
[    16.781] (II) Initializing built-in extension RENDER
[    16.781] (II) Initializing built-in extension RANDR
[    16.781] (II) Initializing built-in extension COMPOSITE
[    16.781] (II) Initializing built-in extension DAMAGE
[    16.793] ukiDynamicMajor: found major device number 249
[    16.793] ukiDynamicMajor: found major device number 249
[    16.793] ukiOpenByBusid: Searching for BusID PCI:1:0:0
[    16.793] ukiOpenDevice: node name is /dev/ati/card0
[    16.793] ukiOpenDevice: open result is 19, (OK)
[    16.793] ukiOpenByBusid: ukiOpenMinor returns 19
[    16.793] ukiOpenByBusid: ukiGetBusid reports PCI:1:0:0
[    16.855] (II) AIGLX: Loaded and initialized OpenGL driver(II) GLX: Initialized DRI GL provider for screen 0
[    16.856] (II) fglrx(0): Enable the clock gating!
[    16.856] (II) fglrx(0): Setting screen physical size to 508 x 285
[    16.861] (II) XKB: reuse xkmfile /var/lib/xkb/server-B20D7FC79C7F597315E3E501AEF10E0D866E8E92.xkm
[    16.863] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[    16.863] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    16.863] (II) LoadModule: "evdev"
[    16.863] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    16.864] (II) Module evdev: vendor="X.Org Foundation"
[    16.864] 	compiled for 1.11.3, module version = 2.7.0
[    16.864] 	Module class: X.Org XInput Driver
[    16.864] 	ABI class: X.Org XInput driver, version 16.0
[    16.864] (II) Using input driver 'evdev' for 'Power Button'
[    16.864] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    16.864] (**) Power Button: always reports core events
[    16.864] (**) evdev: Power Button: Device: "/dev/input/event1"
[    16.864] (--) evdev: Power Button: Vendor 0 Product 0x1
[    16.864] (--) evdev: Power Button: Found keys
[    16.864] (II) evdev: Power Button: Configuring as keyboard
[    16.864] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[    16.864] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    16.864] (**) Option "xkb_rules" "evdev"
[    16.864] (**) Option "xkb_model" "pc105"
[    16.864] (**) Option "xkb_layout" "de"
[    16.865] (II) XKB: reuse xkmfile /var/lib/xkb/server-808BBA3D4C227BDB44C370226C34E44C5D69A4A9.xkm
[    16.866] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[    16.866] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    16.866] (II) Using input driver 'evdev' for 'Power Button'
[    16.866] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    16.866] (**) Power Button: always reports core events
[    16.866] (**) evdev: Power Button: Device: "/dev/input/event0"
[    16.866] (--) evdev: Power Button: Vendor 0 Product 0x1
[    16.866] (--) evdev: Power Button: Found keys
[    16.866] (II) evdev: Power Button: Configuring as keyboard
[    16.866] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0/event0"
[    16.866] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[    16.866] (**) Option "xkb_rules" "evdev"
[    16.866] (**) Option "xkb_model" "pc105"
[    16.866] (**) Option "xkb_layout" "de"
[    16.866] (II) config/udev: Adding input device HDA ATI HDMI HDMI/DP,pcm=3 (/dev/input/event14)
[    16.866] (II) No input driver specified, ignoring this device.
[    16.866] (II) This device may have been added with another device file.
[    16.866] (II) config/udev: Adding input device Cherry Wireless Keyboard and Mouse (/dev/input/event2)
[    16.866] (**) Cherry Wireless Keyboard and Mouse: Applying InputClass "evdev keyboard catchall"
[    16.866] (II) Using input driver 'evdev' for 'Cherry Wireless Keyboard and Mouse'
[    16.866] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    16.866] (**) Cherry Wireless Keyboard and Mouse: always reports core events
[    16.866] (**) evdev: Cherry Wireless Keyboard and Mouse: Device: "/dev/input/event2"
[    16.866] (--) evdev: Cherry Wireless Keyboard and Mouse: Vendor 0x46a Product 0x52
[    16.866] (--) evdev: Cherry Wireless Keyboard and Mouse: Found keys
[    16.866] (II) evdev: Cherry Wireless Keyboard and Mouse: Configuring as keyboard
[    16.866] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.0/usb3/3-1/3-1:1.0/input/input2/event2"
[    16.866] (II) XINPUT: Adding extended input device "Cherry Wireless Keyboard and Mouse" (type: KEYBOARD, id 8)
[    16.866] (**) Option "xkb_rules" "evdev"
[    16.866] (**) Option "xkb_model" "pc105"
[    16.866] (**) Option "xkb_layout" "de"
[    16.867] (II) config/udev: Adding input device Cherry Wireless Keyboard and Mouse (/dev/input/event3)
[    16.867] (**) Cherry Wireless Keyboard and Mouse: Applying InputClass "evdev pointer catchall"
[    16.867] (**) Cherry Wireless Keyboard and Mouse: Applying InputClass "evdev keyboard catchall"
[    16.867] (II) Using input driver 'evdev' for 'Cherry Wireless Keyboard and Mouse'
[    16.867] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    16.867] (**) Cherry Wireless Keyboard and Mouse: always reports core events
[    16.867] (**) evdev: Cherry Wireless Keyboard and Mouse: Device: "/dev/input/event3"
[    16.867] (--) evdev: Cherry Wireless Keyboard and Mouse: Vendor 0x46a Product 0x52
[    16.867] (--) evdev: Cherry Wireless Keyboard and Mouse: Found 9 mouse buttons
[    16.867] (--) evdev: Cherry Wireless Keyboard and Mouse: Found scroll wheel(s)
[    16.867] (--) evdev: Cherry Wireless Keyboard and Mouse: Found relative axes
[    16.867] (--) evdev: Cherry Wireless Keyboard and Mouse: Found x and y relative axes
[    16.867] (--) evdev: Cherry Wireless Keyboard and Mouse: Found keys
[    16.867] (II) evdev: Cherry Wireless Keyboard and Mouse: Configuring as mouse
[    16.867] (II) evdev: Cherry Wireless Keyboard and Mouse: Configuring as keyboard
[    16.867] (II) evdev: Cherry Wireless Keyboard and Mouse: Adding scrollwheel support
[    16.867] (**) evdev: Cherry Wireless Keyboard and Mouse: YAxisMapping: buttons 4 and 5
[    16.867] (**) evdev: Cherry Wireless Keyboard and Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    16.867] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.0/usb3/3-1/3-1:1.1/input/input3/event3"
[    16.867] (II) XINPUT: Adding extended input device "Cherry Wireless Keyboard and Mouse" (type: KEYBOARD, id 9)
[    16.867] (**) Option "xkb_rules" "evdev"
[    16.867] (**) Option "xkb_model" "pc105"
[    16.867] (**) Option "xkb_layout" "de"
[    16.867] (II) evdev: Cherry Wireless Keyboard and Mouse: initialized for relative axes.
[    16.867] (**) Cherry Wireless Keyboard and Mouse: (accel) keeping acceleration scheme 1
[    16.867] (**) Cherry Wireless Keyboard and Mouse: (accel) acceleration profile 0
[    16.867] (**) Cherry Wireless Keyboard and Mouse: (accel) acceleration factor: 2.000
[    16.867] (**) Cherry Wireless Keyboard and Mouse: (accel) acceleration threshold: 4
[    16.867] (II) config/udev: Adding input device Cherry Wireless Keyboard and Mouse (/dev/input/mouse0)
[    16.867] (II) No input driver specified, ignoring this device.
[    16.867] (II) This device may have been added with another device file.
[    16.868] (II) config/udev: Adding input device A4Tech USB Full Speed (/dev/input/event4)
[    16.868] (**) A4Tech USB Full Speed: Applying InputClass "evdev pointer catchall"
[    16.868] (II) Using input driver 'evdev' for 'A4Tech USB Full Speed'
[    16.868] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    16.868] (**) A4Tech USB Full Speed: always reports core events
[    16.868] (**) evdev: A4Tech USB Full Speed: Device: "/dev/input/event4"
[    16.868] (--) evdev: A4Tech USB Full Speed: Vendor 0x9da Product 0x8090
[    16.868] (--) evdev: A4Tech USB Full Speed: Found 20 mouse buttons
[    16.868] (--) evdev: A4Tech USB Full Speed: Found scroll wheel(s)
[    16.868] (--) evdev: A4Tech USB Full Speed: Found relative axes
[    16.868] (--) evdev: A4Tech USB Full Speed: Found x and y relative axes
[    16.868] (II) evdev: A4Tech USB Full Speed: Configuring as mouse
[    16.868] (II) evdev: A4Tech USB Full Speed: Adding scrollwheel support
[    16.868] (**) evdev: A4Tech USB Full Speed: YAxisMapping: buttons 4 and 5
[    16.868] (**) evdev: A4Tech USB Full Speed: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    16.868] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:13.0/usb5/5-3/5-3:1.0/input/input4/event4"
[    16.868] (II) XINPUT: Adding extended input device "A4Tech USB Full Speed" (type: MOUSE, id 10)
[    16.868] (II) evdev: A4Tech USB Full Speed: initialized for relative axes.
[    16.868] (**) A4Tech USB Full Speed: (accel) keeping acceleration scheme 1
[    16.868] (**) A4Tech USB Full Speed: (accel) acceleration profile 0
[    16.868] (**) A4Tech USB Full Speed: (accel) acceleration factor: 2.000
[    16.868] (**) A4Tech USB Full Speed: (accel) acceleration threshold: 4
[    16.868] (II) config/udev: Adding input device A4Tech USB Full Speed (/dev/input/mouse1)
[    16.868] (II) No input driver specified, ignoring this device.
[    16.868] (II) This device may have been added with another device file.
[    16.868] (II) config/udev: Adding input device A4Tech USB Full Speed (/dev/input/event5)
[    16.868] (**) A4Tech USB Full Speed: Applying InputClass "evdev keyboard catchall"
[    16.868] (II) Using input driver 'evdev' for 'A4Tech USB Full Speed'
[    16.868] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    16.868] (**) A4Tech USB Full Speed: always reports core events
[    16.868] (**) evdev: A4Tech USB Full Speed: Device: "/dev/input/event5"
[    16.868] (--) evdev: A4Tech USB Full Speed: Vendor 0x9da Product 0x8090
[    16.868] (--) evdev: A4Tech USB Full Speed: Found 1 mouse buttons
[    16.868] (--) evdev: A4Tech USB Full Speed: Found scroll wheel(s)
[    16.868] (--) evdev: A4Tech USB Full Speed: Found relative axes
[    16.868] (--) evdev: A4Tech USB Full Speed: Found absolute axes
[    16.868] (--) evdev: A4Tech USB Full Speed: Found absolute multitouch axes
[    16.868] (--) evdev: A4Tech USB Full Speed: Found x and y absolute axes
[    16.868] (--) evdev: A4Tech USB Full Speed: Found keys
[    16.868] (II) evdev: A4Tech USB Full Speed: Configuring as mouse
[    16.868] (II) evdev: A4Tech USB Full Speed: Configuring as keyboard
[    16.868] (II) evdev: A4Tech USB Full Speed: Adding scrollwheel support
[    16.868] (**) evdev: A4Tech USB Full Speed: YAxisMapping: buttons 4 and 5
[    16.868] (**) evdev: A4Tech USB Full Speed: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    16.868] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:13.0/usb5/5-3/5-3:1.1/input/input5/event5"
[    16.868] (II) XINPUT: Adding extended input device "A4Tech USB Full Speed" (type: KEYBOARD, id 11)
[    16.868] (**) Option "xkb_rules" "evdev"
[    16.868] (**) Option "xkb_model" "pc105"
[    16.868] (**) Option "xkb_layout" "de"
[    16.869] (II) evdev: A4Tech USB Full Speed: initialized for relative axes.
[    16.869] (WW) evdev: A4Tech USB Full Speed: ignoring absolute axes.
[    16.869] (**) A4Tech USB Full Speed: (accel) keeping acceleration scheme 1
[    16.869] (**) A4Tech USB Full Speed: (accel) acceleration profile 0
[    16.869] (**) A4Tech USB Full Speed: (accel) acceleration factor: 2.000
[    16.869] (**) A4Tech USB Full Speed: (accel) acceleration threshold: 4
[    16.869] (II) config/udev: Adding input device A4Tech USB Full Speed (/dev/input/js0)
[    16.869] (II) No input driver specified, ignoring this device.
[    16.869] (II) This device may have been added with another device file.
[    16.869] (II) config/udev: Adding input device HDA ATI SB Line-Out Side (/dev/input/event10)
[    16.869] (II) No input driver specified, ignoring this device.
[    16.869] (II) This device may have been added with another device file.
[    16.869] (II) config/udev: Adding input device HDA ATI SB Line-Out CLFE (/dev/input/event11)
[    16.869] (II) No input driver specified, ignoring this device.
[    16.869] (II) This device may have been added with another device file.
[    16.869] (II) config/udev: Adding input device HDA ATI SB Line-Out Surround (/dev/input/event12)
[    16.869] (II) No input driver specified, ignoring this device.
[    16.869] (II) This device may have been added with another device file.
[    16.870] (II) config/udev: Adding input device HDA ATI SB Line-Out Front (/dev/input/event13)
[    16.870] (II) No input driver specified, ignoring this device.
[    16.870] (II) This device may have been added with another device file.
[    16.870] (II) config/udev: Adding input device HDA ATI SB Line (/dev/input/event6)
[    16.870] (II) No input driver specified, ignoring this device.
[    16.870] (II) This device may have been added with another device file.
[    16.870] (II) config/udev: Adding input device HDA ATI SB Front Mic (/dev/input/event7)
[    16.870] (II) No input driver specified, ignoring this device.
[    16.870] (II) This device may have been added with another device file.
[    16.870] (II) config/udev: Adding input device HDA ATI SB Rear Mic (/dev/input/event8)
[    16.870] (II) No input driver specified, ignoring this device.
[    16.870] (II) This device may have been added with another device file.
[    16.870] (II) config/udev: Adding input device HDA ATI SB Front Headphone (/dev/input/event9)
[    16.870] (II) No input driver specified, ignoring this device.
[    16.870] (II) This device may have been added with another device file.
[    16.936] (II) fglrx(0): Restoring Recent Mode via PCS is not supported in RANDR 1.2 capable environments
[    17.687] (II) fglrx(0): EDID vendor "IVM", prod id 24839
[    17.687] (II) fglrx(0): Using EDID range info for horizontal sync
[    17.687] (II) fglrx(0): Using EDID range info for vertical refresh
[    17.687] (II) fglrx(0): Printing DDC gathered Modelines:
[    17.687] (II) fglrx(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
[    17.687] (II) fglrx(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[    17.687] (II) fglrx(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[    17.687] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz)
[    17.687] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz)
[    17.687] (II) fglrx(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz)
[    17.687] (II) fglrx(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[    17.687] (II) fglrx(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz)
[    17.687] (II) fglrx(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[    17.687] (II) fglrx(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz)
[    17.687] (II) fglrx(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz)
[    17.687] (II) fglrx(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[    17.687] (II) fglrx(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz)
[    17.687] (II) fglrx(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz)
[    17.687] (II) fglrx(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz)
[    17.687] (II) fglrx(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz)
[    17.687] (II) fglrx(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
[    17.687] (II) fglrx(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz)
[    17.687] (II) fglrx(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz)
[    17.687] (II) fglrx(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[    17.687] (II) fglrx(0): Modeline "1440x900"x0.0  136.75  1440 1536 1688 1936  900 903 909 942 -hsync +vsync (70.6 kHz)
[    17.687] (II) fglrx(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz)
[    17.687] (II) fglrx(0): Modeline "1920x1080"x60.0  172.80  1920 2040 2248 2576  1080 1081 1084 1118 -hsync +vsync (67.1 kHz)
[    17.950] (WW) fglrx(0): Cannot get updated TV attributes.
[    18.556] (II) fglrx(0): EDID vendor "IVM", prod id 24839
[    18.556] (II) fglrx(0): Using hsync ranges from config file
[    18.556] (II) fglrx(0): Using vrefresh ranges from config file
[    18.556] (II) fglrx(0): Printing DDC gathered Modelines:
[    18.556] (II) fglrx(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
[    18.556] (II) fglrx(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[    18.556] (II) fglrx(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[    18.556] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz)
[    18.556] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz)
[    18.556] (II) fglrx(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz)
[    18.556] (II) fglrx(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[    18.556] (II) fglrx(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz)
[    18.556] (II) fglrx(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[    18.556] (II) fglrx(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz)
[    18.556] (II) fglrx(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz)
[    18.556] (II) fglrx(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[    18.556] (II) fglrx(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz)
[    18.556] (II) fglrx(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz)
[    18.556] (II) fglrx(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz)
[    18.556] (II) fglrx(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz)
[    18.556] (II) fglrx(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
[    18.556] (II) fglrx(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz)
[    18.556] (II) fglrx(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz)
[    18.556] (II) fglrx(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[    18.556] (II) fglrx(0): Modeline "1440x900"x0.0  136.75  1440 1536 1688 1936  900 903 909 942 -hsync +vsync (70.6 kHz)
[    18.556] (II) fglrx(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz)
[    18.556] (II) fglrx(0): Modeline "1920x1080"x60.0  172.80  1920 2040 2248 2576  1080 1081 1084 1118 -hsync +vsync (67.1 kHz)
[    20.472] (II) fglrx(0): EDID vendor "IVM", prod id 24839
[    20.472] (II) fglrx(0): Using hsync ranges from config file
[    20.472] (II) fglrx(0): Using vrefresh ranges from config file
[    20.472] (II) fglrx(0): Printing DDC gathered Modelines:
[    20.472] (II) fglrx(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
[    20.472] (II) fglrx(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[    20.472] (II) fglrx(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[    20.472] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz)
[    20.472] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz)
[    20.472] (II) fglrx(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz)
[    20.472] (II) fglrx(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[    20.472] (II) fglrx(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz)
[    20.472] (II) fglrx(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[    20.472] (II) fglrx(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz)
[    20.472] (II) fglrx(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz)
[    20.472] (II) fglrx(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[    20.472] (II) fglrx(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz)
[    20.472] (II) fglrx(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz)
[    20.472] (II) fglrx(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz)
[    20.472] (II) fglrx(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz)
[    20.472] (II) fglrx(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
[    20.472] (II) fglrx(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz)
[    20.472] (II) fglrx(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz)
[    20.472] (II) fglrx(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[    20.472] (II) fglrx(0): Modeline "1440x900"x0.0  136.75  1440 1536 1688 1936  900 903 909 942 -hsync +vsync (70.6 kHz)
[    20.472] (II) fglrx(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz)
[    20.472] (II) fglrx(0): Modeline "1920x1080"x60.0  172.80  1920 2040 2248 2576  1080 1081 1084 1118 -hsync +vsync (67.1 kHz)
[    20.759] (II) fglrx(0): EDID vendor "IVM", prod id 24839
[    20.759] (II) fglrx(0): Using hsync ranges from config file
[    20.759] (II) fglrx(0): Using vrefresh ranges from config file
[    20.759] (II) fglrx(0): Printing DDC gathered Modelines:
[    20.759] (II) fglrx(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
[    20.759] (II) fglrx(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[    20.759] (II) fglrx(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[    20.759] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz)
[    20.759] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz)
[    20.759] (II) fglrx(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz)
[    20.759] (II) fglrx(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[    20.759] (II) fglrx(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz)
[    20.759] (II) fglrx(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[    20.759] (II) fglrx(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz)
[    20.759] (II) fglrx(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz)
[    20.759] (II) fglrx(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[    20.759] (II) fglrx(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz)
[    20.759] (II) fglrx(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz)
[    20.759] (II) fglrx(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz)
[    20.759] (II) fglrx(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz)
[    20.759] (II) fglrx(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
[    20.759] (II) fglrx(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz)
[    20.759] (II) fglrx(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz)
[    20.759] (II) fglrx(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[    20.759] (II) fglrx(0): Modeline "1440x900"x0.0  136.75  1440 1536 1688 1936  900 903 909 942 -hsync +vsync (70.6 kHz)
[    20.759] (II) fglrx(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz)
[    20.759] (II) fglrx(0): Modeline "1920x1080"x60.0  172.80  1920 2040 2248 2576  1080 1081 1084 1118 -hsync +vsync (67.1 kHz)
[    21.298] (WW) fglrx(0): Cannot get updated TV attributes.
[    21.317] (WW) fglrx(0): Cannot get updated TV attributes.
[    21.439] (II) XKB: generating xkmfile /var/lib/xkb/server-03AF3717FF3AB439A4BAABA686CCB40771CDF520.xkm
[    38.383] (II) fglrx(0): EDID vendor "IVM", prod id 24839
[    38.383] (II) fglrx(0): Using hsync ranges from config file
[    38.383] (II) fglrx(0): Using vrefresh ranges from config file
[    38.383] (II) fglrx(0): Printing DDC gathered Modelines:
[    38.383] (II) fglrx(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
[    38.383] (II) fglrx(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[    38.383] (II) fglrx(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[    38.383] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz)
[    38.383] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz)
[    38.383] (II) fglrx(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz)
[    38.383] (II) fglrx(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[    38.383] (II) fglrx(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz)
[    38.383] (II) fglrx(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[    38.383] (II) fglrx(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz)
[    38.383] (II) fglrx(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz)
[    38.383] (II) fglrx(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[    38.383] (II) fglrx(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz)
[    38.383] (II) fglrx(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz)
[    38.383] (II) fglrx(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz)
[    38.383] (II) fglrx(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz)
[    38.383] (II) fglrx(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
[    38.383] (II) fglrx(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz)
[    38.383] (II) fglrx(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz)
[    38.383] (II) fglrx(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[    38.383] (II) fglrx(0): Modeline "1440x900"x0.0  136.75  1440 1536 1688 1936  900 903 909 942 -hsync +vsync (70.6 kHz)
[    38.383] (II) fglrx(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz)
[    38.383] (II) fglrx(0): Modeline "1920x1080"x60.0  172.80  1920 2040 2248 2576  1080 1081 1084 1118 -hsync +vsync (67.1 kHz)
[    38.646] (WW) fglrx(0): Cannot get updated TV attributes.
[  1207.976] (II) AIGLX: Suspending AIGLX clients for VT switch
[  1207.977] (II) fglrx(0): Backup framebuffer data.
[  1208.131] (II) fglrx(0): Backup complete.
[  1219.646] (II) AIGLX: Resuming AIGLX clients after VT switch
[  1219.648] (II) fglrx(0): Restore framebuffer data.
[  1219.926] (II) fglrx(0): Restore complete.
[  1220.016] (II) fglrx(0): AC Adapter is used
[  2725.436] (II) AIGLX: Suspending AIGLX clients for VT switch
[  2725.436] (II) fglrx(0): Backup framebuffer data.
[  2725.613] (II) fglrx(0): Backup complete.
[  2737.145] (II) AIGLX: Resuming AIGLX clients after VT switch
[  2737.148] (II) fglrx(0): Restore framebuffer data.
[  2737.457] (II) fglrx(0): Restore complete.
[  2737.532] (II) fglrx(0): AC Adapter is used
[  3975.656] (II) fglrx(0): EDID vendor "IVM", prod id 24839
[  3975.656] (II) fglrx(0): Using hsync ranges from config file
[  3975.656] (II) fglrx(0): Using vrefresh ranges from config file
[  3975.656] (II) fglrx(0): Printing DDC gathered Modelines:
[  3975.656] (II) fglrx(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
[  3975.656] (II) fglrx(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[  3975.656] (II) fglrx(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[  3975.656] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz)
[  3975.656] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz)
[  3975.656] (II) fglrx(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz)
[  3975.656] (II) fglrx(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[  3975.656] (II) fglrx(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz)
[  3975.656] (II) fglrx(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[  3975.656] (II) fglrx(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz)
[  3975.656] (II) fglrx(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz)
[  3975.656] (II) fglrx(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[  3975.656] (II) fglrx(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz)
[  3975.657] (II) fglrx(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz)
[  3975.657] (II) fglrx(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz)
[  3975.657] (II) fglrx(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz)
[  3975.657] (II) fglrx(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
[  3975.657] (II) fglrx(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz)
[  3975.657] (II) fglrx(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz)
[  3975.657] (II) fglrx(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[  3975.657] (II) fglrx(0): Modeline "1440x900"x0.0  136.75  1440 1536 1688 1936  900 903 909 942 -hsync +vsync (70.6 kHz)
[  3975.657] (II) fglrx(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz)
[  3975.657] (II) fglrx(0): Modeline "1920x1080"x60.0  172.80  1920 2040 2248 2576  1080 1081 1084 1118 -hsync +vsync (67.1 kHz)
[  3975.921] (WW) fglrx(0): Cannot get updated TV attributes.
[  7360.243] (II) fglrx(0): EDID vendor "IVM", prod id 24839
[  7360.243] (II) fglrx(0): Using hsync ranges from config file
[  7360.243] (II) fglrx(0): Using vrefresh ranges from config file
[  7360.243] (II) fglrx(0): Printing DDC gathered Modelines:
[  7360.243] (II) fglrx(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
[  7360.243] (II) fglrx(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[  7360.243] (II) fglrx(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[  7360.243] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz)
[  7360.243] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz)
[  7360.243] (II) fglrx(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz)
[  7360.243] (II) fglrx(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[  7360.243] (II) fglrx(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz)
[  7360.243] (II) fglrx(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[  7360.243] (II) fglrx(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz)
[  7360.243] (II) fglrx(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz)
[  7360.243] (II) fglrx(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[  7360.243] (II) fglrx(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz)
[  7360.243] (II) fglrx(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz)
[  7360.243] (II) fglrx(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz)
[  7360.243] (II) fglrx(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz)
[  7360.243] (II) fglrx(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
[  7360.243] (II) fglrx(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz)
[  7360.243] (II) fglrx(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz)
[  7360.243] (II) fglrx(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[  7360.243] (II) fglrx(0): Modeline "1440x900"x0.0  136.75  1440 1536 1688 1936  900 903 909 942 -hsync +vsync (70.6 kHz)
[  7360.243] (II) fglrx(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz)
[  7360.243] (II) fglrx(0): Modeline "1920x1080"x60.0  172.80  1920 2040 2248 2576  1080 1081 1084 1118 -hsync +vsync (67.1 kHz)
[  7360.507] (WW) fglrx(0): Cannot get updated TV attributes.
[ 12563.162] (II) fglrx(0): EDID vendor "IVM", prod id 24839
[ 12563.162] (II) fglrx(0): Using hsync ranges from config file
[ 12563.162] (II) fglrx(0): Using vrefresh ranges from config file
[ 12563.162] (II) fglrx(0): Printing DDC gathered Modelines:
[ 12563.162] (II) fglrx(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz)
[ 12563.162] (II) fglrx(0): Modeline "800x600"x0.0   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz)
[ 12563.162] (II) fglrx(0): Modeline "800x600"x0.0   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz)
[ 12563.162] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz)
[ 12563.162] (II) fglrx(0): Modeline "640x480"x0.0   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz)
[ 12563.162] (II) fglrx(0): Modeline "640x480"x0.0   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz)
[ 12563.163] (II) fglrx(0): Modeline "640x480"x0.0   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz)
[ 12563.163] (II) fglrx(0): Modeline "720x400"x0.0   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz)
[ 12563.163] (II) fglrx(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz)
[ 12563.163] (II) fglrx(0): Modeline "1024x768"x0.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz)
[ 12563.163] (II) fglrx(0): Modeline "1024x768"x0.0   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz)
[ 12563.163] (II) fglrx(0): Modeline "1024x768"x0.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz)
[ 12563.163] (II) fglrx(0): Modeline "832x624"x0.0   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz)
[ 12563.163] (II) fglrx(0): Modeline "800x600"x0.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz)
[ 12563.163] (II) fglrx(0): Modeline "800x600"x0.0   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz)
[ 12563.163] (II) fglrx(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz)
[ 12563.163] (II) fglrx(0): Modeline "1600x1200"x0.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz)
[ 12563.163] (II) fglrx(0): Modeline "1440x900"x0.0   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz)
[ 12563.163] (II) fglrx(0): Modeline "1280x960"x0.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz)
[ 12563.163] (II) fglrx(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz)
[ 12563.163] (II) fglrx(0): Modeline "1440x900"x0.0  136.75  1440 1536 1688 1936  900 903 909 942 -hsync +vsync (70.6 kHz)
[ 12563.163] (II) fglrx(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz)
[ 12563.163] (II) fglrx(0): Modeline "1920x1080"x60.0  172.80  1920 2040 2248 2576  1080 1081 1084 1118 -hsync +vsync (67.1 kHz)
[ 12563.427] (WW) fglrx(0): Cannot get updated TV attributes.