ubuntuusers.de

bug report

Autor:
ragey
Datum:
19. Juni 2009 16:59
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
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964

Start of NVIDIA bug report log file.  Please send this report,
along with a description of your bug, to linux-bugs@nvidia.com.

nvidia-bug-report.sh Version: 3031177

Date: Fr 19. Jun 16:58:36 CEST 2009
uname: Linux elf-laptop 2.6.28-13-generic #44-Ubuntu SMP Tue Jun 2 07:55:09 UTC 2009 x86_64 GNU/Linux

____________________________________________

/proc/driver/nvidia/version
NVRM version: NVIDIA UNIX x86_64 Kernel Module  180.44  Tue Mar 24 05:46:32 PST 2009
GCC version:  gcc version 4.3.3 (Ubuntu 4.3.3-5ubuntu4) 

____________________________________________

/proc/driver/nvidia/cards/0
Model: 		 N10M-GE1
IRQ:   		 16
Video BIOS: 	 62.98.5a.00.18
Card Type: 	 PCI-E
DMA Size: 	 40 bits
DMA Mask: 	 0xffffffffff
Bus Location: 	 01.00.0

____________________________________________

/proc/driver/nvidia/warnings/README
The NVIDIA graphics driver tries to detect potential problems
with the host system and warns about them using the system's
logging mechanisms. Important warning message are also logged
to dedicated text files in this directory.

____________________________________________

/proc/driver/nvidia/registry
EnableVia4x: 0
EnableALiAGP: 0
NvAGP: 3
ReqAGPRate: 15
EnableAGPSBA: 0
EnableAGPFW: 0
Mobile: 4294967295
ResmanDebugLevel: 4294967295
RmLogonRC: 1
ModifyDeviceFiles: 1
DeviceFileUID: 0
DeviceFileGID: 0
DeviceFileMode: 438
RemapLimit: 0
UpdateMemoryTypes: 4294967295
UseVBios: 1
RMEdgeIntrCheck: 1
UsePageAttributeTable: 4294967295
EnableMSI: 0
MapRegistersEarly: 0
RegistryDwords: ""

____________________________________________

/proc/cmdline
root=UUID=a36e3b6d-2b8d-403e-9054-d816ad07c4c6 ro quiet splash 

____________________________________________

/proc/cpuinfo
processor	: 0
vendor_id	: GenuineIntel
cpu family	: 6
model		: 23
model name	: Pentium(R) Dual-Core CPU       T4200  @ 2.00GHz
stepping	: 10
cpu MHz		: 1200.000
cache size	: 1024 KB
physical id	: 0
siblings	: 2
core id		: 0
cpu cores	: 2
apicid		: 0
initial apicid	: 0
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good pni dtes64 monitor ds_cpl est tm2 ssse3 cx16 xtpr pdcm xsave lahf_lm
bogomips	: 3990.02
clflush size	: 64
cache_alignment	: 64
address sizes	: 36 bits physical, 48 bits virtual
power management:

processor	: 1
vendor_id	: GenuineIntel
cpu family	: 6
model		: 23
model name	: Pentium(R) Dual-Core CPU       T4200  @ 2.00GHz
stepping	: 10
cpu MHz		: 1200.000
cache size	: 1024 KB
physical id	: 0
siblings	: 2
core id		: 1
cpu cores	: 2
apicid		: 1
initial apicid	: 1
fpu		: yes
fpu_exception	: yes
cpuid level	: 13
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good pni dtes64 monitor ds_cpl est tm2 ssse3 cx16 xtpr pdcm xsave lahf_lm
bogomips	: 3989.96
clflush size	: 64
cache_alignment	: 64
address sizes	: 36 bits physical, 48 bits virtual
power management:


____________________________________________

/proc/interrupts
           CPU0       CPU1       
  0:      52494      52669   IO-APIC-edge      timer
  1:        302        286   IO-APIC-edge      i8042
  8:          1          0   IO-APIC-edge      rtc0
  9:       1157       1108   IO-APIC-fasteoi   acpi
 12:       9882       9798   IO-APIC-edge      i8042
 16:        475        476   IO-APIC-fasteoi   nvidia
 17:      13650      14159   IO-APIC-fasteoi   uhci_hcd:usb6
 18:        198        197   IO-APIC-fasteoi   uhci_hcd:usb7, uhci_hcd:usb8, ath
 20:          0          0   IO-APIC-fasteoi   ehci_hcd:usb1, uhci_hcd:usb3, uhci_hcd:usb4
 21:       1480       1266   IO-APIC-fasteoi   HDA Intel
 23:         14         11   IO-APIC-fasteoi   ehci_hcd:usb2, uhci_hcd:usb5
2297:       1837       1854   PCI-MSI-edge      eth0
2298:      11751      11292   PCI-MSI-edge      ahci
NMI:          0          0   Non-maskable interrupts
LOC:      42054      41822   Local timer interrupts
RES:      31029      29581   Rescheduling interrupts
CAL:       6228       5800   Function call interrupts
TLB:       1699       2113   TLB shootdowns
SPU:          0          0   Spurious interrupts
ERR:          0
MIS:          0

____________________________________________

/proc/meminfo
MemTotal:        3984440 kB
MemFree:         3329280 kB
Buffers:           18112 kB
Cached:           275672 kB
SwapCached:            0 kB
Active:           415716 kB
Inactive:         147308 kB
Active(anon):     275816 kB
Inactive(anon):        8 kB
Active(file):     139900 kB
Inactive(file):   147300 kB
Unevictable:           8 kB
Mlocked:               8 kB
SwapTotal:       7815580 kB
SwapFree:        7815580 kB
Dirty:                88 kB
Writeback:             0 kB
AnonPages:        269260 kB
Mapped:            76556 kB
Slab:              30812 kB
SReclaimable:      17052 kB
SUnreclaim:        13760 kB
PageTables:        16384 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:     9807800 kB
Committed_AS:     601848 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      300232 kB
VmallocChunk:   34359431675 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:       45056 kB
DirectMap2M:     4147200 kB

____________________________________________

/proc/modules
isofs 43688 1 - Live 0xffffffffa0b0a000
udf 92584 0 - Live 0xffffffffa0af1000
crc_itu_t 10496 1 udf, Live 0xffffffffa0aec000
binfmt_misc 18572 1 - Live 0xffffffffa0ae5000
ppdev 16904 0 - Live 0xffffffffa0ade000
bridge 63904 0 - Live 0xffffffffa0acc000
stp 11140 1 bridge, Live 0xffffffffa0ac7000
bnep 22912 2 - Live 0xffffffffa0abf000
input_polldev 12688 0 - Live 0xffffffffa0ab9000
joydev 20864 0 - Live 0xffffffffa0ab1000
lp 19588 0 - Live 0xffffffffa0aaa000
parport 49584 2 ppdev,lp, Live 0xffffffffa0a9b000
arc4 10240 2 - Live 0xffffffffa0a96000
ecb 11392 2 - Live 0xffffffffa0a91000
snd_hda_intel 557492 3 - Live 0xffffffffa0a06000
snd_pcm_oss 52352 0 - Live 0xffffffffa09f7000
snd_mixer_oss 24960 1 snd_pcm_oss, Live 0xffffffffa09ee000
snd_pcm 99336 2 snd_hda_intel,snd_pcm_oss, Live 0xffffffffa09d3000
snd_seq_dummy 11524 0 - Live 0xffffffffa09ce000
snd_seq_oss 41984 0 - Live 0xffffffffa09c1000
snd_seq_midi 15744 0 - Live 0xffffffffa09bb000
snd_rawmidi 33920 1 snd_seq_midi, Live 0xffffffffa09b0000
ath9k 288568 0 - Live 0xffffffffa0964000
snd_seq_midi_event 16512 2 snd_seq_oss,snd_seq_midi, Live 0xffffffffa095a000
snd_seq 66272 6 snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_seq_midi_event, Live 0xffffffffa0947000
snd_timer 34064 2 snd_pcm,snd_seq, Live 0xffffffffa093c000
snd_seq_device 16276 5 snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_rawmidi,snd_seq, Live 0xffffffffa0936000
mac80211 251528 1 ath9k, Live 0xffffffffa08f6000
uvcvideo 69512 0 - Live 0xffffffffa08e3000
compat_ioctl32 18304 1 uvcvideo, Live 0xffffffffa08dc000
snd 78792 15 snd_hda_intel,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_seq_oss,snd_rawmidi,snd_seq,snd_timer,snd_seq_device, Live 0xffffffffa08c6000
psmouse 64028 0 - Live 0xffffffffa08b4000
iTCO_wdt 21712 0 - Live 0xffffffffa08ac000
video 29204 5 - Live 0xffffffffa08a2000
acer_wmi 26736 0 - Live 0xffffffffa0896000
cfg80211 43552 1 mac80211, Live 0xffffffffa0889000
soundcore 16800 1 snd, Live 0xffffffffa087f000
serio_raw 14468 0 - Live 0xffffffffa0876000
iTCO_vendor_support 12420 1 iTCO_wdt, Live 0xffffffffa086d000
pcspkr 11136 0 - Live 0xffffffffa0865000
output 11648 1 video, Live 0xffffffffa085d000
videodev 45184 2 uvcvideo,compat_ioctl32, Live 0xffffffffa084c000
v4l1_compat 23940 2 uvcvideo,videodev, Live 0xffffffffa0844000
intel_agp 39408 0 - Live 0xffffffffa0835000
usbhid 47040 0 - Live 0xffffffffa0824000
led_class 13064 2 ath9k,acer_wmi, Live 0xffffffffa081b000
snd_page_alloc 18704 2 snd_hda_intel,snd_pcm, Live 0xffffffffa0814000
nvidia 8123768 43 - Live 0xffffffffa004f000 (P)
tg3 143364 0 - Live 0xffffffffa0026000
fbcon 49792 0 - Live 0xffffffffa0017000
tileblit 11264 1 fbcon, Live 0xffffffffa0012000
font 17024 1 fbcon, Live 0xffffffffa000b000
bitblit 14464 1 fbcon, Live 0xffffffffa0005000
softcursor 10368 1 bitblit, Live 0xffffffffa0000000

____________________________________________

/proc/version
Linux version 2.6.28-13-generic (buildd@yellow) (gcc version 4.3.3 (Ubuntu 4.3.3-5ubuntu4) ) #44-Ubuntu SMP Tue Jun 2 07:55:09 UTC 2009

____________________________________________

/proc/pci does not exist

____________________________________________

/proc/iomem
00000000-0000ffff : reserved
00010000-0009d3ff : System RAM
0009d400-0009ffff : reserved
000d0000-000d3fff : reserved
000e4000-000fffff : reserved
00100000-bf8a0fff : System RAM
  00200000-006a1c3e : Kernel code
  006a1c3f-009192ff : Kernel data
  00a67000-00b7bbaf : Kernel bss
bf8a1000-bf8a6fff : reserved
bf8a7000-bf9b8fff : System RAM
bf9b9000-bfa0efff : reserved
bfa0f000-bfb07fff : System RAM
bfb08000-bfd0efff : reserved
bfd0f000-bfd18fff : System RAM
bfd19000-bfd1efff : reserved
bfd1f000-bfd5efff : System RAM
bfd5f000-bfd9efff : ACPI Non-volatile Storage
bfd9f000-bfde1fff : System RAM
bfde2000-bfdfefff : ACPI Tables
bfdff000-bfdfffff : System RAM
c0000000-c00000ff : 0000:00:1f.3
d0000000-dfffffff : PCI Bus 0000:01
  d0000000-dfffffff : 0000:01:00.0
e0000000-efffffff : PCI MMCONFIG 0
  e0000000-efffffff : pnp 00:09
f0000000-f2ffffff : PCI Bus 0000:01
  f0000000-f1ffffff : 0000:01:00.0
  f2000000-f2ffffff : 0000:01:00.0
    f2000000-f2ffffff : nvidia
f3000000-f30fffff : PCI Bus 0000:02
  f3000000-f300ffff : 0000:02:00.0
    f3000000-f300ffff : tg3
f3100000-f31fffff : PCI Bus 0000:04
  f3100000-f310ffff : 0000:04:00.0
    f3100000-f310ffff : ath9k
f3400000-f3403fff : 0000:00:1b.0
  f3400000-f3403fff : ICH HD audio
f3404000-f34047ff : 0000:00:1f.2
  f3404000-f34047ff : ahci
f3404800-f3404bff : 0000:00:1a.7
  f3404800-f3404bff : ehci_hcd
f3404c00-f3404fff : 0000:00:1d.7
  f3404c00-f3404fff : ehci_hcd
f4000000-f5ffffff : PCI Bus 0000:05
f6000000-f7ffffff : PCI Bus 0000:05
fec00000-fec00fff : IOAPIC 0
fed00000-fed003ff : HPET 0
  fed00000-fed003ff : pnp 00:05
fed10000-fed13fff : pnp 00:09
fed18000-fed18fff : pnp 00:09
fed19000-fed19fff : pnp 00:09
fed1c000-fed1ffff : pnp 00:09
fed20000-fed3ffff : pnp 00:09
fee00000-fee00fff : Local APIC
ff800000-ff800fff : pnp 00:07
100000000-13fffffff : System RAM

____________________________________________

/proc/mtrr
reg00: base=0x000000000 (    0MB), size= 2048MB, count=1: write-back
reg01: base=0x080000000 ( 2048MB), size= 1024MB, count=1: write-back
reg02: base=0x100000000 ( 4096MB), size= 1024MB, count=1: write-back

____________________________________________

/proc/acpi/video/VGA/CRT/info
device_id:    0x0100
type:         UNKNOWN
known by bios: no

____________________________________________

/proc/acpi/video/VGA/DVI/info
device_id:    0x0210
type:         UNKNOWN
known by bios: no

____________________________________________

/proc/acpi/video/VGA/LCD/info
device_id:    0x0110
type:         UNKNOWN
known by bios: no

____________________________________________

/proc/acpi/video/VGA/TV0/info
device_id:    0x0200
type:         UNKNOWN
known by bios: no

____________________________________________

/etc/issue
Ubuntu 9.04 \n \l


____________________________________________

/etc/debian_version
5.0

____________________________________________

/var/log/nvidia-installer.log does not exist

____________________________________________

/var/log/XFree86.0.log does not exist

____________________________________________

/var/log/Xorg.0.log

X.Org X Server 1.6.0
Release Date: 2009-2-25
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.24-15-server x86_64 Ubuntu
Current Operating System: Linux elf-laptop 2.6.28-13-generic #44-Ubuntu SMP Tue Jun 2 07:55:09 UTC 2009 x86_64
Build Date: 09 April 2009  02:11:54AM
xorg-server 2:1.6.0-0ubuntu14 (buildd@crested.buildd) 
	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Fri Jun 19 16:43:57 2009
(==) Using config file: "/etc/X11/xorg.conf"
(==) No Layout section.  Using the first Screen section.
(**) |-->Screen "Default Screen" (0)
(**) |   |-->Monitor "Configured Monitor"
(**) |   |-->Device "Configured Video Device"
(==) Automatically adding devices
(==) Automatically enabling devices
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
	Entry deleted from font path.
(==) FontPath set to:
	/usr/share/fonts/X11/misc,
	/usr/share/fonts/X11/100dpi/:unscaled,
	/usr/share/fonts/X11/75dpi/:unscaled,
	/usr/share/fonts/X11/Type1,
	/usr/share/fonts/X11/100dpi,
	/usr/share/fonts/X11/75dpi,
	/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
	built-ins
(==) ModulePath set to "/usr/lib/xorg/modules"
(II) Cannot locate a core pointer device.
(II) Cannot locate a core keyboard device.
(II) The server relies on HAL to provide the list of input devices.
	If no devices become available, reconfigure HAL or disable AllowEmptyInput.
(II) Loader magic: 0xb40
(II) Module ABI versions:
	X.Org ANSI C Emulation: 0.4
	X.Org Video Driver: 5.0
	X.Org XInput driver : 4.0
	X.Org Server Extension : 2.0
(II) Loader running on linux
(++) using VT number 7

(--) PCI:*(0@1:0:0) nVidia Corporation unknown chipset (0x06ec) rev 161, Mem @ 0xf2000000/16777216, 0xd0000000/268435456, 0xf0000000/33554432, I/O @ 0x00002000/128
(II) Open ACPI successful (/var/run/acpid.socket)
(II) System resource ranges:
	[0] -1	0	0xffffffff - 0xffffffff (0x1) MX[B]
	[1] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[2] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[3] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[4] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[5] -1	0	0x00000000 - 0x00000000 (0x1) IX[B]
(II) "extmod" will be loaded by default.
(II) "dbe" will be loaded by default.
(II) "glx" will be loaded. This was enabled by default and also specified in the config file.
(II) "record" will be loaded by default.
(II) "dri" will be loaded by default.
(II) "dri2" will be loaded by default.
(II) LoadModule: "glx"
(II) Loading /usr/lib/xorg/modules/extensions//libglx.so
(II) Module glx: vendor="NVIDIA Corporation"
	compiled for 4.0.2, module version = 1.0.0
	Module class: X.Org Server Extension
(II) NVIDIA GLX Module  180.44  Tue Mar 24 06:11:47 PST 2009
(II) Loading extension GLX
(II) LoadModule: "extmod"
(II) Loading /usr/lib/xorg/modules/extensions//libextmod.so
(II) Module extmod: vendor="X.Org Foundation"
	compiled for 1.6.0, module version = 1.0.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 2.0
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension XVideo
(II) Loading extension XVideo-MotionCompensation
(II) Loading extension X-Resource
(II) LoadModule: "dbe"
(II) Loading /usr/lib/xorg/modules/extensions//libdbe.so
(II) Module dbe: vendor="X.Org Foundation"
	compiled for 1.6.0, module version = 1.0.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 2.0
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: "record"
(II) Loading /usr/lib/xorg/modules/extensions//librecord.so
(II) Module record: vendor="X.Org Foundation"
	compiled for 1.6.0, module version = 1.13.0
	Module class: X.Org Server Extension
	ABI class: X.Org Server Extension, version 2.0
(II) Loading extension RECORD
(II) LoadModule: "dri"
(II) Loading /usr/lib/xorg/modules/extensions//libdri.so
(II) Module dri: vendor="X.Org Foundation"
	compiled for 1.6.0, module version = 1.0.0
	ABI class: X.Org Server Extension, version 2.0
(II) Loading extension XFree86-DRI
(II) LoadModule: "dri2"
(II) Loading /usr/lib/xorg/modules/extensions//libdri2.so
(II) Module dri2: vendor="X.Org Foundation"
	compiled for 1.6.0, module version = 1.0.0
	ABI class: X.Org Server Extension, version 2.0
(II) Loading extension DRI2
(II) LoadModule: "nvidia"
(II) Loading /usr/lib/xorg/modules/drivers//nvidia_drv.so
(II) Module nvidia: vendor="NVIDIA Corporation"
	compiled for 4.0.2, module version = 1.0.0
	Module class: X.Org Video Driver
(II) NVIDIA dlloader X Driver  180.44  Tue Mar 24 05:51:43 PST 2009
(II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
(II) Primary Device is: PCI 01@00:00:0
(II) Loading sub module "fb"
(II) LoadModule: "fb"
(II) Loading /usr/lib/xorg/modules//libfb.so
(II) Module fb: vendor="X.Org Foundation"
	compiled for 1.6.0, module version = 1.0.0
	ABI class: X.Org ANSI C Emulation, version 0.4
(II) Loading sub module "wfb"
(II) LoadModule: "wfb"
(II) Loading /usr/lib/xorg/modules//libwfb.so
(II) Module wfb: vendor="X.Org Foundation"
	compiled for 1.6.0, module version = 1.0.0
	ABI class: X.Org ANSI C Emulation, version 0.4
(II) Loading sub module "ramdac"
(II) LoadModule: "ramdac"
(II) Module "ramdac" already built-in
(II) resource ranges after probing:
	[0] -1	0	0xffffffff - 0xffffffff (0x1) MX[B]
	[1] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[2] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[3] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[4] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[5] -1	0	0x00000000 - 0x00000000 (0x1) IX[B]
(II) NVIDIA(0): Creating default Display subsection in Screen section
	"Default Screen" for depth/fbbpp 24/32
(**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
(==) NVIDIA(0): RGB weight 888
(==) NVIDIA(0): Default visual is TrueColor
(==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
(**) NVIDIA(0): Option "NoLogo" "True"
(**) NVIDIA(0): Enabling RENDER acceleration
(II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
(II) NVIDIA(0):     enabled.
(II) NVIDIA(0): NVIDIA GPU N10M-GE1 (G98) at PCI:1:0:0 (GPU-0)
(--) NVIDIA(0): Memory: 524288 kBytes
(--) NVIDIA(0): VideoBIOS: 62.98.5a.00.18
(II) NVIDIA(0): Detected PCI Express Link width: 16X
(--) NVIDIA(0): Interlaced video modes are supported on this GPU
(--) NVIDIA(0): Connected display device(s) on N10M-GE1 at PCI:1:0:0:
(--) NVIDIA(0):     AUO (DFP-0)
(--) NVIDIA(0): AUO (DFP-0): 330.0 MHz maximum pixel clock
(--) NVIDIA(0): AUO (DFP-0): Internal Dual Link LVDS
(II) NVIDIA(0): Assigned Display Device: DFP-0
(==) NVIDIA(0): 
(==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
(==) NVIDIA(0):     will be used as the requested mode.
(==) NVIDIA(0): 
(II) NVIDIA(0): Validated modes:
(II) NVIDIA(0):     "nvidia-auto-select"
(II) NVIDIA(0): Virtual screen size determined to be 640 x 480
(--) NVIDIA(0): DPI set to (47, 64); computed from "UseEdidDpi" X config
(--) NVIDIA(0):     option
(==) NVIDIA(0): Enabling 32-bit ARGB GLX visuals.
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC?  No, I don't.
(II) resource ranges after preInit:
	[0] -1	0	0xffffffff - 0xffffffff (0x1) MX[B]
	[1] -1	0	0x000f0000 - 0x000fffff (0x10000) MX[B]
	[2] -1	0	0x000c0000 - 0x000effff (0x30000) MX[B]
	[3] -1	0	0x00000000 - 0x0009ffff (0xa0000) MX[B]
	[4] -1	0	0x0000ffff - 0x0000ffff (0x1) IX[B]
	[5] -1	0	0x00000000 - 0x00000000 (0x1) IX[B]
(II) NVIDIA(0): Initialized GPU GART.
(II) NVIDIA(0): ACPI display change hotkey events enabled: the X server is new
(II) NVIDIA(0):     enough to receive ACPI display change hotkey events.
(II) NVIDIA(0): Setting mode "nvidia-auto-select"
(II) Loading extension NV-GLX
(II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
(==) NVIDIA(0): Disabling shared memory pixmaps
(II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
(==) NVIDIA(0): Backing store disabled
(==) NVIDIA(0): Silken mouse enabled
(II) NVIDIA(0): DPMS enabled
(II) Loading extension NV-CONTROL
(II) Loading extension XINERAMA
(==) RandR enabled
(II) Initializing built-in extension Generic Event Extension
(II) Initializing built-in extension SHAPE
(II) Initializing built-in extension MIT-SHM
(II) Initializing built-in extension XInputExtension
(II) Initializing built-in extension XTEST
(II) Initializing built-in extension BIG-REQUESTS
(II) Initializing built-in extension SYNC
(II) Initializing built-in extension XKEYBOARD
(II) Initializing built-in extension XC-MISC
(II) Initializing built-in extension SECURITY
(II) Initializing built-in extension XINERAMA
(II) Initializing built-in extension XFIXES
(II) Initializing built-in extension RENDER
(II) Initializing built-in extension RANDR
(II) Initializing built-in extension COMPOSITE
(II) Initializing built-in extension DAMAGE
(II) Initializing extension GLX
(II) config/hal: Adding input device AT Translated Set 2 keyboard
(II) LoadModule: "evdev"
(II) Loading /usr/lib/xorg/modules/input//evdev_drv.so
(II) Module evdev: vendor="X.Org Foundation"
	compiled for 1.6.0, module version = 2.1.1
	Module class: X.Org XInput Driver
	ABI class: X.Org XInput driver, version 4.0
(**) AT Translated Set 2 keyboard: always reports core events
(**) AT Translated Set 2 keyboard: Device: "/dev/input/event4"
(II) AT Translated Set 2 keyboard: Found keys
(II) AT Translated Set 2 keyboard: Configuring as keyboard
(II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
(**) Option "xkb_rules" "evdev"
(**) AT Translated Set 2 keyboard: xkb_rules: "evdev"
(**) Option "xkb_model" "pc105"
(**) AT Translated Set 2 keyboard: xkb_model: "pc105"
(**) Option "xkb_layout" "de"
(**) AT Translated Set 2 keyboard: xkb_layout: "de"
(II) config/hal: Adding input device Video Bus
(**) Video Bus: always reports core events
(**) Video Bus: Device: "/dev/input/event7"
(II) Video Bus: Found keys
(II) Video Bus: Configuring as keyboard
(II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD)
(**) Option "xkb_rules" "evdev"
(**) Video Bus: xkb_rules: "evdev"
(**) Option "xkb_model" "pc105"
(**) Video Bus: xkb_model: "pc105"
(**) Option "xkb_layout" "de"
(**) Video Bus: xkb_layout: "de"
(II) config/hal: Adding input device Macintosh mouse button emulation
(**) Macintosh mouse button emulation: always reports core events
(**) Macintosh mouse button emulation: Device: "/dev/input/event3"
(II) Macintosh mouse button emulation: Found 3 mouse buttons
(II) Macintosh mouse button emulation: Found x and y relative axes
(II) Macintosh mouse button emulation: Configuring as mouse
(**) Macintosh mouse button emulation: YAxisMapping: buttons 4 and 5
(**) Macintosh mouse button emulation: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
(II) XINPUT: Adding extended input device "Macintosh mouse button emulation" (type: MOUSE)
(**) Macintosh mouse button emulation: (accel) keeping acceleration scheme 1
(**) Macintosh mouse button emulation: (accel) filter chain progression: 2.00
(**) Macintosh mouse button emulation: (accel) filter stage 0: 20.00 ms
(**) Macintosh mouse button emulation: (accel) set acceleration profile 0
(II) config/hal: Adding input device B16_b_02 USB-PS/2 Optical Mouse
(**) B16_b_02 USB-PS/2 Optical Mouse: always reports core events
(**) B16_b_02 USB-PS/2 Optical Mouse: Device: "/dev/input/event5"
(II) B16_b_02 USB-PS/2 Optical Mouse: Found 8 mouse buttons
(II) B16_b_02 USB-PS/2 Optical Mouse: Found x and y relative axes
(II) B16_b_02 USB-PS/2 Optical Mouse: Configuring as mouse
(**) B16_b_02 USB-PS/2 Optical Mouse: YAxisMapping: buttons 4 and 5
(**) B16_b_02 USB-PS/2 Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
(II) XINPUT: Adding extended input device "B16_b_02 USB-PS/2 Optical Mouse" (type: MOUSE)
(**) B16_b_02 USB-PS/2 Optical Mouse: (accel) keeping acceleration scheme 1
(**) B16_b_02 USB-PS/2 Optical Mouse: (accel) filter chain progression: 2.00
(**) B16_b_02 USB-PS/2 Optical Mouse: (accel) filter stage 0: 20.00 ms
(**) B16_b_02 USB-PS/2 Optical Mouse: (accel) set acceleration profile 0
(II) config/hal: Adding input device SynPS/2 Synaptics TouchPad
(II) LoadModule: "synaptics"
(II) Loading /usr/lib/xorg/modules/input//synaptics_drv.so
(II) Module synaptics: vendor="X.Org Foundation"
	compiled for 1.6.0, module version = 0.99.3
	Module class: X.Org XInput Driver
	ABI class: X.Org XInput driver, version 4.0
(II) Synaptics touchpad driver version 0.99.3
(**) Option "Device" "/dev/input/event9"
(II) SynPS/2 Synaptics TouchPad: x-axis range 1472 - 5472
(II) SynPS/2 Synaptics TouchPad: y-axis range 1408 - 4448
(II) SynPS/2 Synaptics TouchPad: pressure range 0 - 255
(II) SynPS/2 Synaptics TouchPad: finger width range 0 - 0
(II) SynPS/2 Synaptics TouchPad: buttons: left right middle double triple
(--) SynPS/2 Synaptics TouchPad touchpad found
(**) SynPS/2 Synaptics TouchPad: always reports core events
(II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD)
(**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
(**) SynPS/2 Synaptics TouchPad: (accel) filter chain progression: 2.00
(**) SynPS/2 Synaptics TouchPad: (accel) filter stage 0: 20.00 ms
(**) SynPS/2 Synaptics TouchPad: (accel) set acceleration profile 0
(--) SynPS/2 Synaptics TouchPad touchpad found
(II) NVIDIA(0): Setting mode "DFP-0:640x480@640x480+0+0"

____________________________________________

/etc/X11/xorg.conf
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# Note that some configuration settings that could be done previously
# in this file, now are automatically configured by the server and settings
# here are ignored.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "Monitor"
	Identifier	"Configured Monitor"
EndSection

Section "Screen"
	Identifier	"Default Screen"
	Monitor		"Configured Monitor"
	Device		"Configured Video Device"
	DefaultDepth	24
EndSection

Section "Module"
	Load	"glx"
EndSection

Section "Device"
	Identifier	"Configured Video Device"
	Driver	"nvidia"
	Option	"NoLogo"	"True"
EndSection


____________________________________________

ldd /usr/bin/glxinfo

	linux-vdso.so.1 =>  (0x00007fff7ebfe000)
	libGL.so.1 => /usr/lib/libGL.so.1 (0x00007f6276782000)
	libm.so.6 => /lib/libm.so.6 (0x00007f62764fd000)
	libc.so.6 => /lib/libc.so.6 (0x00007f627618b000)
	libX11.so.6 => /usr/lib/libX11.so.6 (0x00007f6275e84000)
	libGLcore.so.1 => /usr/lib/libGLcore.so.1 (0x00007f6274b9a000)
	libnvidia-tls.so.1 => /usr/lib/tls/libnvidia-tls.so.1 (0x00007f6276a76000)
	libXext.so.6 => /usr/lib/libXext.so.6 (0x00007f6274988000)
	libdl.so.2 => /lib/libdl.so.2 (0x00007f6274784000)
	/lib64/ld-linux-x86-64.so.2 (0x00007f6276974000)
	libxcb.so.1 => /usr/lib/libxcb.so.1 (0x00007f6274568000)
	libXau.so.6 => /usr/lib/libXau.so.6 (0x00007f6274365000)
	libXdmcp.so.6 => /usr/lib/libXdmcp.so.6 (0x00007f6274160000)

____________________________________________

/usr/bin/lspci -d "10de:*" -v -xxx

01:00.0 VGA compatible controller: nVidia Corporation Device 06ec (rev a1)
	Subsystem: Acer Incorporated [ALI] Device 0205
	Flags: bus master, fast devsel, latency 0, IRQ 16
	Memory at f2000000 (32-bit, non-prefetchable) [size=16M]
	Memory at d0000000 (64-bit, prefetchable) [size=256M]
	Memory at f0000000 (64-bit, non-prefetchable) [size=32M]
	I/O ports at 2000 [size=128]
	Capabilities: [60] Power Management version 3
	Capabilities: [68] Message Signalled Interrupts: Mask- 64bit+ Queue=0/0 Enable-
	Capabilities: [78] Express Endpoint, MSI 00
	Capabilities: [100] Virtual Channel <?>
	Capabilities: [128] Power Budgeting <?>
	Capabilities: [600] Vendor Specific Information <?>
	Kernel driver in use: nvidia
	Kernel modules: nvidia, nvidiafb
00: de 10 ec 06 07 00 10 00 a1 00 00 03 00 00 00 00
10: 00 00 00 f2 0c 00 00 d0 00 00 00 00 04 00 00 f0
20: 00 00 00 00 01 20 00 00 00 00 00 00 25 10 05 02
30: 00 00 00 00 60 00 00 00 00 00 00 00 0b 01 00 00
40: 25 10 05 02 00 00 00 00 00 00 00 00 00 00 00 00
50: 01 00 00 00 01 00 00 00 ce d6 23 00 00 00 00 00
60: 01 68 03 00 08 00 00 00 05 78 80 00 00 00 00 00
70: 00 00 00 00 00 00 00 00 10 00 02 00 a0 84 2c 01
80: 10 29 00 00 02 2d 00 00 4a 00 01 11 00 00 00 00
90: 00 00 00 00 00 00 00 00 00 00 00 00 10 00 00 00
a0: 00 00 00 00 00 00 00 00 02 00 00 00 00 00 00 00
b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00


____________________________________________

/usr/bin/lspci -t

-[0000:00]-+-00.0
           +-01.0-[0000:01]----00.0
           +-1a.0
           +-1a.1
           +-1a.7
           +-1b.0
           +-1c.0-[0000:02]----00.0
           +-1c.1-[0000:03]--
           +-1c.2-[0000:04]----00.0
           +-1c.4-[0000:05-07]--
           +-1d.0
           +-1d.1
           +-1d.2
           +-1d.3
           +-1d.7
           +-1e.0-[0000:0d]--
           +-1f.0
           +-1f.2
           \-1f.3

____________________________________________

/usr/sbin/dmidecode

# dmidecode 2.9
SMBIOS 2.5 present.
45 structures occupying 1900 bytes.
Table at 0xBFCC0000.

Handle 0x0000, DMI type 0, 24 bytes
BIOS Information
	Vendor: Phoenix Technologies LTD
	Version: V1.03          
	Release Date: 02/20/2009
	Address: 0xE5480
	Runtime Size: 109440 bytes
	ROM Size: 2048 kB
	Characteristics:
		ISA is supported
		PCI is supported
		PC Card (PCMCIA) is supported
		PNP is supported
		BIOS is upgradeable
		BIOS shadowing is allowed
		ESCD support is available
		Boot from CD is supported
		ACPI is supported
		USB legacy is supported
		AGP is supported
		BIOS boot specification is supported
		Targeted content distribution is supported

Handle 0x0001, DMI type 1, 27 bytes
System Information
	Manufacturer: Acer           
	Product Name: Aspire 5738                    
	Version: 0100           
	Serial Number: LXPAT0X0669170B78C2000        
	UUID: 5137B584-0461-CADE-902E-E17D602828D9
	Wake-up Type: Power Switch
	SKU Number: Not Specified
	Family: Not Specified

Handle 0x0002, DMI type 2, 15 bytes
Base Board Information
	Manufacturer: Acer           
	Product Name: JV50                           
	Version: Rev            
	Serial Number: LXPAT0X0669170B78C2000        
	Asset Tag: Not Specified
	Features: None
	Location In Chassis: Not Specified
	Chassis Handle: 0xFFFF
	Type: Unknown
	Contained Object Handles: 0

Handle 0x0003, DMI type 3, 21 bytes
Chassis Information
	Manufacturer: Acer           
	Type: Notebook
	Lock: Not Present
	Version: N/A            
	Serial Number: None           
	Asset Tag:                                 
	Boot-up State: Safe
	Power Supply State: Safe
	Thermal State: Safe
	Security Status: None
	OEM Information: 0x00001234
	Height: Unspecified
	Number Of Power Cords: Unspecified
	Contained Elements: 0

Handle 0x0004, DMI type 4, 40 bytes
Processor Information
	Socket Designation: U2E1
	Type: Central Processor
	Family: <OUT OF SPEC>
	Manufacturer: Intel
	ID: 7A 06 01 00 FF FB EB BF
	Version: CPU Version
	Voltage: 3.3 V
	External Clock: 200 MHz
	Max Speed: 2000 MHz
	Current Speed: 2000 MHz
	Status: Populated, Enabled
	Upgrade: ZIF Socket
	L1 Cache Handle: 0x0005
	L2 Cache Handle: 0x0006
	L3 Cache Handle: Not Provided
	Serial Number: Not Specified
	Asset Tag: Not Specified
	Part Number: Not Specified
	Core Count: 2
	Core Enabled: 2
	Thread Count: 2
	Characteristics:
		64-bit capable

Handle 0x0005, DMI type 7, 19 bytes
Cache Information
	Socket Designation: L1 Cache
	Configuration: Enabled, Socketed, Level 1
	Operational Mode: Write Back
	Location: Internal
	Installed Size: 64 KB
	Maximum Size: 64 KB
	Supported SRAM Types:
		Burst
		Pipeline Burst
		Asynchronous
	Installed SRAM Type: Asynchronous
	Speed: Unknown
	Error Correction Type: Single-bit ECC
	System Type: Data
	Associativity: 8-way Set-associative

Handle 0x0006, DMI type 7, 19 bytes
Cache Information
	Socket Designation: L2 Cache
	Configuration: Enabled, Socketed, Level 2
	Operational Mode: Write Back
	Location: Internal
	Installed Size: 1024 KB
	Maximum Size: 4096 KB
	Supported SRAM Types:
		Burst
		Pipeline Burst
		Asynchronous
	Installed SRAM Type: Burst
	Speed: Unknown
	Error Correction Type: Single-bit ECC
	System Type: Unified
	Associativity: 4-way Set-associative

Handle 0x0007, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: J19
	Internal Connector Type: 9 Pin Dual Inline (pin 10 cut)
	External Reference Designator: COM 1
	External Connector Type: DB-9 male
	Port Type: Serial Port 16550A Compatible

Handle 0x0008, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: J1A1
	Internal Connector Type: None
	External Reference Designator: Keyboard
	External Connector Type: Circular DIN-8 male
	Port Type: Keyboard Port

Handle 0x0009, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: J1A1
	Internal Connector Type: None
	External Reference Designator: PS/2 Mouse
	External Connector Type: Circular DIN-8 male
	Port Type: Mouse Port

Handle 0x000A, DMI type 9, 13 bytes
System Slot Information
	Designation: PEG Slot J6B2
	Type: 32-bit PCI Express
	Current Usage: In Use
	Length: Long
	ID: 6
	Characteristics:
		5.0 V is provided
		3.3 V is provided

Handle 0x000B, DMI type 9, 13 bytes
System Slot Information
	Designation: PCI Express Slot J6B1
	Type: 32-bit PCI Express
	Current Usage: In Use
	Length: Long
	ID: 7
	Characteristics:
		5.0 V is provided
		3.3 V is provided

Handle 0x000C, DMI type 9, 13 bytes
System Slot Information
	Designation: PCI Express Slot J6D1
	Type: 32-bit PCI Express
	Current Usage: Available
	Length: Long
	ID: 8
	Characteristics:
		5.0 V is provided
		3.3 V is provided

Handle 0x000D, DMI type 9, 13 bytes
System Slot Information
	Designation: PCI Express Slot J8B3
	Type: 32-bit PCI Express
	Current Usage: In Use
	Length: Long
	ID: 9
	Characteristics:
		5.0 V is provided
		3.3 V is provided

Handle 0x000E, DMI type 9, 13 bytes
System Slot Information
	Designation: PCI Express Slot J8D1
	Type: 32-bit PCI Express
	Current Usage: Available
	Length: Long
	ID: 10
	Characteristics:
		5.0 V is provided
		3.3 V is provided

Handle 0x000F, DMI type 9, 13 bytes
System Slot Information
	Designation: PCI Express Slot J7B1
	Type: 32-bit PCI Express
	Current Usage: Available
	Length: Long
	ID: 10
	Characteristics:
		5.0 V is provided
		3.3 V is provided

Handle 0x0010, DMI type 9, 13 bytes
System Slot Information
	Designation: PCI Express Slot 6
	Type: 32-bit PCI Express
	Current Usage: Available
	Length: Long
	ID: 10
	Characteristics:
		5.0 V is provided
		3.3 V is provided

Handle 0x0011, DMI type 10, 6 bytes
On Board Device Information
	Type: Sound
	Status: Disabled
	Description: HD-Audio

Handle 0x0012, DMI type 11, 5 bytes
OEM Strings
	String 1: This is the Intel Cantiga
	String 2: Chipset CRB Platform

Handle 0x0013, DMI type 12, 5 bytes
System Configuration Options
	Option 1: Jumper settings can be described here.

Handle 0x0014, DMI type 15, 29 bytes
System Event Log
	Area Length: 16 bytes
	Header Start Offset: 0x0000
	Header Length: 16 bytes
	Data Start Offset: 0x0010
	Access Method: General-purpose non-volatile data functions
	Access Address: 0x0000
	Status: Valid, Not Full
	Change Token: 0x00000001
	Header Format: Type 1
	Supported Log Type Descriptors: 3
	Descriptor 1: POST error
	Data Format 1: POST results bitmap
	Descriptor 2: Single-bit ECC memory error
	Data Format 2: Multiple-event
	Descriptor 3: Multi-bit ECC memory error
	Data Format 3: Multiple-event

Handle 0x0015, DMI type 16, 15 bytes
Physical Memory Array
	Location: System Board Or Motherboard
	Use: System Memory
	Error Correction Type: None
	Maximum Capacity: 4 GB
	Error Information Handle: Not Provided
	Number Of Devices: 2

Handle 0x0016, DMI type 17, 27 bytes
Memory Device
	Array Handle: 0x0015
	Error Information Handle: No Error
	Total Width: 64 bits
	Data Width: 64 bits
	Size: 2048 MB
	Form Factor: SODIMM
	Set: 1
	Locator: M1
	Bank Locator: Bank 0
	Type: <OUT OF SPEC>
	Type Detail: Synchronous
	Speed: 800 MHz (1.2 ns)
	Manufacturer: 80AD            
	Serial Number: F0B40000        
	Asset Tag: 0000
	Part Number: HMT125S6AFP8C-G7  

Handle 0x0017, DMI type 17, 27 bytes
Memory Device
	Array Handle: 0x0015
	Error Information Handle: No Error
	Total Width: 64 bits
	Data Width: 64 bits
	Size: 2048 MB
	Form Factor: SODIMM
	Set: 1
	Locator: M2
	Bank Locator: Bank 1
	Type: <OUT OF SPEC>
	Type Detail: Synchronous
	Speed: 800 MHz (1.2 ns)
	Manufacturer: 80AD            
	Serial Number: 00B50000        
	Asset Tag: 0000
	Part Number: HMT125S6AFP8C-G7  

Handle 0x0018, DMI type 18, 23 bytes
32-bit Memory Error Information
	Type: OK
	Granularity: Unknown
	Operation: Unknown
	Vendor Syndrome: Unknown
	Memory Array Address: Unknown
	Device Address: Unknown
	Resolution: Unknown

Handle 0x0019, DMI type 18, 23 bytes
32-bit Memory Error Information
	Type: OK
	Granularity: Unknown
	Operation: Unknown
	Vendor Syndrome: Unknown
	Memory Array Address: Unknown
	Device Address: Unknown
	Resolution: Unknown

Handle 0x001A, DMI type 19, 15 bytes
Memory Array Mapped Address
	Starting Address: 0x00000000000
	Ending Address: 0x000FFFFFFFF
	Range Size: 4 GB
	Physical Array Handle: 0x0015
	Partition Width: 0

Handle 0x001B, DMI type 20, 19 bytes
Memory Device Mapped Address
	Starting Address: 0x00000000000
	Ending Address: 0x0007FFFFFFF
	Range Size: 2 GB
	Physical Device Handle: 0x0016
	Memory Array Mapped Address Handle: 0x001A
	Partition Row Position: Unknown
	Interleave Position: Unknown
	Interleaved Data Depth: Unknown

Handle 0x001C, DMI type 20, 19 bytes
Memory Device Mapped Address
	Starting Address: 0x00080000000
	Ending Address: 0x000FFFFFFFF
	Range Size: 2 GB
	Physical Device Handle: 0x0017
	Memory Array Mapped Address Handle: 0x001A
	Partition Row Position: Unknown
	Interleave Position: Unknown
	Interleaved Data Depth: Unknown

Handle 0x001D, DMI type 22, 26 bytes
Portable Battery
	Location: Rear
	Manufacturer: Intel Corporation
	Name: Intel Corporation
	Chemistry: Lithium Ion
	Design Capacity: 1000 mWh
	Design Voltage: 19 mV
	SBDS Version: BATT_1234
	Maximum Error: 100%
	SBDS Serial Number: 0001
	SBDS Manufacture Date: 1980-00-01
	OEM-specific Information: 0x00000000

Handle 0x001E, DMI type 23, 13 bytes
System Reset
	Status: Enabled
	Watchdog Timer: Present
	Boot Option: Do Not Reboot
	Boot Option On Limit: Do Not Reboot
	Reset Count: Unknown
	Reset Limit: Unknown
	Timer Interval: Unknown
	Timeout: Unknown

Handle 0x001F, DMI type 24, 5 bytes
Hardware Security
	Power-On Password Status: Disabled
	Keyboard Password Status: Unknown
	Administrator Password Status: Disabled
	Front Panel Reset Status: Unknown

Handle 0x0020, DMI type 25, 9 bytes
	System Power Controls
	Next Scheduled Power-on: 12-31 23:59:59

Handle 0x0021, DMI type 26, 20 bytes
Voltage Probe
	Description: Voltage Probe
	Location: Processor
	Status: OK
	Maximum Value: Unknown
	Minimum Value: Unknown
	Resolution: Unknown
	Tolerance: Unknown
	Accuracy: Unknown
	OEM-specific Information: 0x00000000

Handle 0x0022, DMI type 27, 12 bytes
Cooling Device
	Temperature Probe Handle: 0x0023
	Type: Fan
	Status: OK
	OEM-specific Information: 0x00000000

Handle 0x0023, DMI type 28, 20 bytes
Temperature Probe
	Description: Temperature Probe
	Location: Processor
	Status: OK
	Maximum Value: Unknown
	Minimum Value Unknown
	Resolution: Unknown
	Tolerance: Unknown
	Accuracy: Unknown
	OEM-specific Information: 0x00000000

Handle 0x0024, DMI type 29, 20 bytes
Electrical Current Probe
	Description: Electrical Current Probe
	Location: Processor
	Status: OK
	Maximum Value: Unknown
	Minimum Value: Unknown
	Resolution: Unknown
	Tolerance: Unknown
	Accuracy: Unknown
	OEM-specific Information: 0x00000000

Handle 0x0025, DMI type 30, 6 bytes
Out-of-band Remote Access
	Manufacturer Name: Intel
	Inbound Connection: Disabled
	Outbound Connection: Enabled

Handle 0x0026, DMI type 32, 20 bytes
System Boot Information
	Status: No errors detected

Handle 0x0027, DMI type 39, 22 bytes
System Power Supply
	Power Unit Group: 1
	Location: To Be Defined By O.E.M
	Name: To Be Defined By O.E.M
	Manufacturer: To Be Defined By O.E.M
	Serial Number: To Be Defined By O.E.M
	Asset Tag: To Be Defined By O.E.M
	Model Part Number: To Be Defined By O.E.M
	Revision: 2.50
	Max Power Capacity: Unknown
	Status: Present, Unknown
	Type: Unknown
	Input Voltage Range Switching: Unknown
	Plugged: Yes
	Hot Replaceable: No
	Input Voltage Probe Handle: 0x0021
	Cooling Device Handle: 0x0022
	Input Current Probe Handle: 0x0024

Handle 0x0028, DMI type 129, 8 bytes
OEM-specific Type
	Header and Data:
		81 08 28 00 01 01 02 01
	Strings:
		Intel_ASF
		Intel_ASF_001

Handle 0x0029, DMI type 136, 6 bytes
OEM-specific Type
	Header and Data:
		88 06 29 00 FF FF

Handle 0x002A, DMI type 150, 14 bytes
OEM-specific Type
	Header and Data:
		96 0E 2A 00 01 01 00 00 00 00 00 00 00 00
	Strings:
		ABSOLUTE(PHOENIX) CLM

Handle 0x002B, DMI type 200, 7 bytes
OEM-specific Type
	Header and Data:
		C8 07 2B 00 01 02 03
	Strings:
		17C0
		             
		0001

Handle 0x002C, DMI type 127, 4 bytes
End Of Table


____________________________________________

/sbin/modinfo nvidia | grep vermagic

vermagic:       2.6.28-13-generic SMP mod_unload modversions 

____________________________________________

Scanning kernel log files for NVRM messages:

  /var/log/messages:
Jun 18 18:32:42 elf-laptop kernel: [ 1701.580486] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  180.44  Tue Mar 24 05:46:32 PST 2009
Jun 18 19:02:05 elf-laptop kernel: [   10.387883] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  180.44  Tue Mar 24 05:46:32 PST 2009
Jun 18 19:28:00 elf-laptop kernel: [   10.311390] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  180.44  Tue Mar 24 05:46:32 PST 2009
Jun 18 20:18:03 elf-laptop kernel: [   10.820213] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  180.44  Tue Mar 24 05:46:32 PST 2009
Jun 19 16:43:55 elf-laptop kernel: [    9.955324] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  180.44  Tue Mar 24 05:46:32 PST 2009

____________________________________________

dmesg:

[    0.000000] BIOS EBDA/lowmem at: 0009d400/0009d400
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.28-13-generic (buildd@yellow) (gcc version 4.3.3 (Ubuntu 4.3.3-5ubuntu4) ) #44-Ubuntu SMP Tue Jun 2 07:55:09 UTC 2009 (Ubuntu 2.6.28-13.44-generic)
[    0.000000] Command line: root=UUID=a36e3b6d-2b8d-403e-9054-d816ad07c4c6 ro quiet splash 
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009d400 (usable)
[    0.000000]  BIOS-e820: 000000000009d400 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000d0000 - 00000000000d4000 (reserved)
[    0.000000]  BIOS-e820: 00000000000e4000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 00000000bf8a1000 (usable)
[    0.000000]  BIOS-e820: 00000000bf8a1000 - 00000000bf8a7000 (reserved)
[    0.000000]  BIOS-e820: 00000000bf8a7000 - 00000000bf9b9000 (usable)
[    0.000000]  BIOS-e820: 00000000bf9b9000 - 00000000bfa0f000 (reserved)
[    0.000000]  BIOS-e820: 00000000bfa0f000 - 00000000bfb08000 (usable)
[    0.000000]  BIOS-e820: 00000000bfb08000 - 00000000bfd0f000 (reserved)
[    0.000000]  BIOS-e820: 00000000bfd0f000 - 00000000bfd19000 (usable)
[    0.000000]  BIOS-e820: 00000000bfd19000 - 00000000bfd1f000 (reserved)
[    0.000000]  BIOS-e820: 00000000bfd1f000 - 00000000bfd5f000 (usable)
[    0.000000]  BIOS-e820: 00000000bfd5f000 - 00000000bfd9f000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000bfd9f000 - 00000000bfde2000 (usable)
[    0.000000]  BIOS-e820: 00000000bfde2000 - 00000000bfdff000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000bfdff000 - 00000000bfe00000 (usable)
[    0.000000]  BIOS-e820: 0000000100000000 - 0000000140000000 (usable)
[    0.000000] DMI present.
[    0.000000] Phoenix BIOS detected: BIOS may corrupt low RAM, working it around.
[    0.000000] last_pfn = 0x140000 max_arch_pfn = 0x3ffffffff
[    0.000000] last_pfn = 0xbfe00 max_arch_pfn = 0x3ffffffff
[    0.000000] Scanning 0 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000010000 (reserved)
[    0.000000]  modified: 0000000000010000 - 000000000009d400 (usable)
[    0.000000]  modified: 000000000009d400 - 00000000000a0000 (reserved)
[    0.000000]  modified: 00000000000d0000 - 00000000000d4000 (reserved)
[    0.000000]  modified: 00000000000e4000 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 00000000bf8a1000 (usable)
[    0.000000]  modified: 00000000bf8a1000 - 00000000bf8a7000 (reserved)
[    0.000000]  modified: 00000000bf8a7000 - 00000000bf9b9000 (usable)
[    0.000000]  modified: 00000000bf9b9000 - 00000000bfa0f000 (reserved)
[    0.000000]  modified: 00000000bfa0f000 - 00000000bfb08000 (usable)
[    0.000000]  modified: 00000000bfb08000 - 00000000bfd0f000 (reserved)
[    0.000000]  modified: 00000000bfd0f000 - 00000000bfd19000 (usable)
[    0.000000]  modified: 00000000bfd19000 - 00000000bfd1f000 (reserved)
[    0.000000]  modified: 00000000bfd1f000 - 00000000bfd5f000 (usable)
[    0.000000]  modified: 00000000bfd5f000 - 00000000bfd9f000 (ACPI NVS)
[    0.000000]  modified: 00000000bfd9f000 - 00000000bfde2000 (usable)
[    0.000000]  modified: 00000000bfde2000 - 00000000bfdff000 (ACPI data)
[    0.000000]  modified: 00000000bfdff000 - 00000000bfe00000 (usable)
[    0.000000]  modified: 0000000100000000 - 0000000140000000 (usable)
[    0.000000] init_memory_mapping: 0000000000000000-00000000bfe00000
[    0.000000]  0000000000 - 00bfe00000 page 2M
[    0.000000] kernel direct mapping tables up to bfe00000 @ 10000-14000
[    0.000000] last_map_addr: bfe00000 end: bfe00000
[    0.000000] init_memory_mapping: 0000000100000000-0000000140000000
[    0.000000]  0100000000 - 0140000000 page 2M
[    0.000000] kernel direct mapping tables up to 140000000 @ 12000-18000
[    0.000000] last_map_addr: 140000000 end: 140000000
[    0.000000] RAMDISK: 37858000 - 37fef0d9
[    0.000000] ACPI: RSDP 000F6C00, 0024 (r2 PTLTD )
[    0.000000] ACPI: XSDT BFDF4831, 005C (r1 ACRSYS ACRPRDCT  6040000 INNA        0)
[    0.000000] ACPI: FACP BFDE4000, 00F4 (r3 INTEL  CRESTLNE  6040000 ALAN        1)
[    0.000000] ACPI: DSDT BFDE5000, A359 (r2 Intel  CANTIGA   6040000 MSFT  3000000)
[    0.000000] ACPI: FACS BFD9DFC0, 0040
[    0.000000] ACPI: HPET BFDFED86, 0038 (r1 INTEL  CRESTLNE  6040000 LOHR       5A)
[    0.000000] ACPI: MCFG BFDFEDBE, 003C (r1 INTEL  CRESTLNE  6040000 LOHR       5A)
[    0.000000] ACPI: SLIC BFDFEDFA, 0176 (r1 ACRSYS ACRPRDCT  6040000 ANNI        1)
[    0.000000] ACPI: APIC BFDFEF70, 0068 (r1 PTLTD  	 APIC    6040000  LTP        0)
[    0.000000] ACPI: BOOT BFDFEFD8, 0028 (r1 PTLTD  $SBFTBL$  6040000  LTP        1)
[    0.000000] ACPI: SSDT BFDE3000, 0655 (r1  PmRef    CpuPm     3000 INTL 20050624)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] (7 early reservations) ==> bootmem [0000000000 - 0140000000]
[    0.000000]   #0 [0000000000 - 0000001000]   BIOS data page ==> [0000000000 - 0000001000]
[    0.000000]   #1 [0000006000 - 0000008000]       TRAMPOLINE ==> [0000006000 - 0000008000]
[    0.000000]   #2 [0000200000 - 0000b7bbb0]    TEXT DATA BSS ==> [0000200000 - 0000b7bbb0]
[    0.000000]   #3 [0037858000 - 0037fef0d9]          RAMDISK ==> [0037858000 - 0037fef0d9]
[    0.000000]   #4 [000009d400 - 0000100000]    BIOS reserved ==> [000009d400 - 0000100000]
[    0.000000]   #5 [0000010000 - 0000012000]          PGTABLE ==> [0000010000 - 0000012000]
[    0.000000]   #6 [0000012000 - 0000013000]          PGTABLE ==> [0000012000 - 0000013000]
[    0.000000] found SMP MP-table at [ffff8800000f6d80] 000f6d80
[    0.000000]  [ffffe20000000000-ffffe200045fffff] PMD -> [ffff880028200000-ffff88002c7fffff] on node 0
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   DMA32    0x00001000 -> 0x00100000
[    0.000000]   Normal   0x00100000 -> 0x00140000
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[9] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x0000009d
[    0.000000]     0: 0x00000100 -> 0x000bf8a1
[    0.000000]     0: 0x000bf8a7 -> 0x000bf9b9
[    0.000000]     0: 0x000bfa0f -> 0x000bfb08
[    0.000000]     0: 0x000bfd0f -> 0x000bfd19
[    0.000000]     0: 0x000bfd1f -> 0x000bfd5f
[    0.000000]     0: 0x000bfd9f -> 0x000bfde2
[    0.000000]     0: 0x000bfdff -> 0x000bfe00
[    0.000000]     0: 0x00100000 -> 0x00140000
[    0.000000] On node 0 totalpages: 1047239
[    0.000000]   DMA zone: 56 pages used for memmap
[    0.000000]   DMA zone: 2533 pages reserved
[    0.000000]   DMA zone: 1392 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 14280 pages used for memmap
[    0.000000]   DMA32 zone: 766834 pages, LIFO batch:31
[    0.000000]   Normal zone: 3584 pages used for memmap
[    0.000000]   Normal zone: 258560 pages, LIFO batch:31
[    0.000000]   Movable zone: 0 pages used for memmap
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 0, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] SMP: Allowing 2 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
[    0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000d0000
[    0.000000] PM: Registered nosave memory: 00000000000d0000 - 00000000000d4000
[    0.000000] PM: Registered nosave memory: 00000000000d4000 - 00000000000e4000
[    0.000000] PM: Registered nosave memory: 00000000000e4000 - 0000000000100000
[    0.000000] PM: Registered nosave memory: 00000000bf8a1000 - 00000000bf8a7000
[    0.000000] PM: Registered nosave memory: 00000000bf9b9000 - 00000000bfa0f000
[    0.000000] PM: Registered nosave memory: 00000000bfb08000 - 00000000bfd0f000
[    0.000000] PM: Registered nosave memory: 00000000bfd19000 - 00000000bfd1f000
[    0.000000] PM: Registered nosave memory: 00000000bfd5f000 - 00000000bfd9f000
[    0.000000] PM: Registered nosave memory: 00000000bfde2000 - 00000000bfdff000
[    0.000000] PM: Registered nosave memory: 00000000bfe00000 - 0000000100000000
[    0.000000] Allocating PCI resources starting at c0000000 (gap: bfe00000:40200000)
[    0.000000] PERCPU: Allocating 69632 bytes of per cpu data
[    0.000000] NR_CPUS: 64, nr_cpu_ids: 2, nr_node_ids 1
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 1026786
[    0.000000] Kernel command line: root=UUID=a36e3b6d-2b8d-403e-9054-d816ad07c4c6 ro quiet splash 
[    0.000000] Initializing CPU#0
[    0.000000] xsave/xrstor: enabled xstate_bv 0x3, cntxt size 0x240
[    0.000000] PID hash table entries: 4096 (order: 12, 32768 bytes)
[    0.000000] Extended CMOS year: 2000
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 1995.010 MHz processor.
[    0.004000] Console: colour VGA+ 80x25
[    0.004000] console [tty0] enabled
[    0.004000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.004000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.004000] allocated 52428800 bytes of page_cgroup
[    0.004000] please try cgroup_disable=memory option if you don't want
[    0.004000] Scanning for low memory corruption every 60 seconds
[    0.004000] Checking aperture...
[    0.004000] No AGP bridge found
[    0.004000] Calgary: detecting Calgary via BIOS EBDA area
[    0.004000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.004000] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.004000] Placing software IO TLB between 0x20000000 - 0x24000000
[    0.004000] Memory: 3975168k/5242880k available (4743k kernel code, 1053924k absent, 212824k reserved, 2525k data, 532k init)
[    0.004000] SLUB: Genslabs=12, HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.004000] hpet clockevent registered
[    0.004000] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
[    0.004000] Calibrating delay loop (skipped), value calculated using timer frequency.. 3990.02 BogoMIPS (lpj=7980040)
[    0.004000] Security Framework initialized
[    0.004000] SELinux:  Disabled at boot.
[    0.004000] AppArmor: AppArmor initialized
[    0.004000] Mount-cache hash table entries: 256
[    0.004000] Initializing cgroup subsys ns
[    0.004000] Initializing cgroup subsys cpuacct
[    0.004000] Initializing cgroup subsys memory
[    0.004000] Initializing cgroup subsys freezer
[    0.004000] CPU: L1 I cache: 32K, L1 D cache: 32K
[    0.004000] CPU: L2 cache: 1024K
[    0.004000] CPU: Physical Processor ID: 0
[    0.004000] CPU: Processor Core ID: 0
[    0.004000] using mwait in idle threads.
[    0.004000] ACPI: Core revision 20080926
[    0.006173] ACPI: Checking initramfs for custom DSDT
[    0.344047] Setting APIC routing to flat
[    0.344443] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.384448] CPU0: Intel Pentium(R) Dual-Core CPU       T4200  @ 2.00GHz stepping 0a
[    0.388001] Booting processor 1 APIC 0x1 ip 0x6000
[    0.004000] Initializing CPU#1
[    0.004000] Calibrating delay using timer specific routine.. 3989.96 BogoMIPS (lpj=7979931)
[    0.004000] CPU: L1 I cache: 32K, L1 D cache: 32K
[    0.004000] CPU: L2 cache: 1024K
[    0.004000] CPU: Physical Processor ID: 0
[    0.004000] CPU: Processor Core ID: 1
[    0.472385] CPU1: Intel Pentium(R) Dual-Core CPU       T4200  @ 2.00GHz stepping 0a
[    0.472410] checking TSC synchronization [CPU#0 -> CPU#1]: passed.
[    0.476040] Brought up 2 CPUs
[    0.476042] Total of 2 processors activated (7979.98 BogoMIPS).
[    0.476090] CPU0 attaching sched-domain:
[    0.476092]  domain 0: span 0-1 level MC
[    0.476094]   groups: 0 1
[    0.476100] CPU1 attaching sched-domain:
[    0.476101]  domain 0: span 0-1 level MC
[    0.476103]   groups: 1 0
[    0.476165] net_namespace: 1400 bytes
[    0.476165] Booting paravirtualized kernel on bare hardware
[    0.476274] Time: 14:43:41  Date: 06/19/09
[    0.476274] regulator: core version 0.5
[    0.476274] NET: Registered protocol family 16
[    0.476274] ACPI: bus type pci registered
[    0.476274] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
[    0.476274] PCI: Not using MMCONFIG.
[    0.476274] PCI: Using configuration type 1 for base access
[    0.476967] ACPI: EC: Look up EC in DSDT
[    0.482839] ACPI: BIOS _OSI(Linux) query ignored
[    0.484198] ACPI: EC: non-query interrupt received, switching to interrupt mode
[    0.500105] ACPI: Interpreter enabled
[    0.500108] ACPI: (supports S0 S3 S4 S5)
[    0.500126] ACPI: Using IOAPIC for interrupt routing
[    0.500187] PCI: MCFG configuration 0: base e0000000 segment 0 buses 0 - 255
[    0.505500] PCI: MCFG area at e0000000 reserved in ACPI motherboard resources
[    0.519324] PCI: Using MMCONFIG at e0000000 - efffffff
[    0.528319] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
[    0.528322] ACPI: EC: driver started in interrupt mode
[    0.528472] ACPI: No dock devices found.
[    0.528553] ACPI: PCI Root Bridge [PCI0] (0000:00)
[    0.528644] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.528647] pci 0000:00:01.0: PME# disabled
[    0.528744] pci 0000:00:1a.0: reg 20 io port: [0x1800-0x181f]
[    0.528823] pci 0000:00:1a.1: reg 20 io port: [0x1820-0x183f]
[    0.528909] pci 0000:00:1a.7: reg 10 32bit mmio: [0xf3404800-0xf3404bff]
[    0.528957] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
[    0.528962] pci 0000:00:1a.7: PME# disabled
[    0.529018] pci 0000:00:1b.0: reg 10 64bit mmio: [0xf3400000-0xf3403fff]
[    0.529059] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.529064] pci 0000:00:1b.0: PME# disabled
[    0.529130] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.529135] pci 0000:00:1c.0: PME# disabled
[    0.529203] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.529208] pci 0000:00:1c.1: PME# disabled
[    0.529276] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[    0.529281] pci 0000:00:1c.2: PME# disabled
[    0.529347] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.529351] pci 0000:00:1c.4: PME# disabled
[    0.529422] pci 0000:00:1d.0: reg 20 io port: [0x1840-0x185f]
[    0.529517] pci 0000:00:1d.1: reg 20 io port: [0x1860-0x187f]
[    0.529610] pci 0000:00:1d.2: reg 20 io port: [0x1880-0x189f]
[    0.529691] pci 0000:00:1d.3: reg 20 io port: [0x18a0-0x18bf]
[    0.529769] pci 0000:00:1d.7: reg 10 32bit mmio: [0xf3404c00-0xf3404fff]
[    0.529817] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.529822] pci 0000:00:1d.7: PME# disabled
[    0.530044] pci 0000:00:1f.2: reg 10 io port: [0x18f0-0x18f7]
[    0.530052] pci 0000:00:1f.2: reg 14 io port: [0x18e4-0x18e7]
[    0.530059] pci 0000:00:1f.2: reg 18 io port: [0x18e8-0x18ef]
[    0.530067] pci 0000:00:1f.2: reg 1c io port: [0x18e0-0x18e3]
[    0.530074] pci 0000:00:1f.2: reg 20 io port: [0x18c0-0x18df]
[    0.530082] pci 0000:00:1f.2: reg 24 32bit mmio: [0xf3404000-0xf34047ff]
[    0.530102] pci 0000:00:1f.2: PME# supported from D3hot
[    0.530106] pci 0000:00:1f.2: PME# disabled
[    0.530147] pci 0000:00:1f.3: reg 10 64bit mmio: [0x000000-0x0000ff]
[    0.530167] pci 0000:00:1f.3: reg 20 io port: [0x1c00-0x1c1f]
[    0.530232] pci 0000:01:00.0: reg 10 32bit mmio: [0xf2000000-0xf2ffffff]
[    0.530244] pci 0000:01:00.0: reg 14 64bit mmio: [0xd0000000-0xdfffffff]
[    0.530256] pci 0000:01:00.0: reg 1c 64bit mmio: [0xf0000000-0xf1ffffff]
[    0.530263] pci 0000:01:00.0: reg 24 io port: [0x2000-0x207f]
[    0.530270] pci 0000:01:00.0: reg 30 32bit mmio: [0x000000-0x01ffff]
[    0.532017] pci 0000:00:01.0: bridge io port: [0x2000-0x2fff]
[    0.532020] pci 0000:00:01.0: bridge 32bit mmio: [0xf0000000-0xf2ffffff]
[    0.532024] pci 0000:00:01.0: bridge 64bit mmio pref: [0xd0000000-0xdfffffff]
[    0.532102] pci 0000:02:00.0: reg 10 64bit mmio: [0xf3000000-0xf300ffff]
[    0.532151] pci 0000:02:00.0: PME# supported from D3hot D3cold
[    0.532156] pci 0000:02:00.0: PME# disabled
[    0.532223] pci 0000:00:1c.0: bridge 32bit mmio: [0xf3000000-0xf30fffff]
[    0.532355] pci 0000:04:00.0: reg 10 64bit mmio: [0xf3100000-0xf310ffff]
[    0.532403] pci 0000:04:00.0: supports D1
[    0.532405] pci 0000:04:00.0: PME# supported from D0 D1 D3hot
[    0.532410] pci 0000:04:00.0: PME# disabled
[    0.532488] pci 0000:00:1c.2: bridge 32bit mmio: [0xf3100000-0xf31fffff]
[    0.532555] pci 0000:00:1c.4: bridge io port: [0x3000-0x3fff]
[    0.532559] pci 0000:00:1c.4: bridge 32bit mmio: [0xf4000000-0xf5ffffff]
[    0.532567] pci 0000:00:1c.4: bridge 64bit mmio pref: [0xf6000000-0xf7ffffff]
[    0.532627] pci 0000:00:1e.0: transparent bridge
[    0.532673] bus 00 -> node 0
[    0.532680] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.532937] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEGP._PRT]
[    0.533098] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0P1._PRT]
[    0.533258] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
[    0.533384] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
[    0.533508] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP03._PRT]
[    0.533635] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP05._PRT]
[    0.546541] ACPI: PCI Interrupt Link [LNKA] (IRQs 10 *11)
[    0.546666] ACPI: PCI Interrupt Link [LNKB] (IRQs 10 *11)
[    0.546788] ACPI: PCI Interrupt Link [LNKC] (IRQs *10 11)
[    0.546910] ACPI: PCI Interrupt Link [LNKD] (IRQs *10 11)
[    0.547031] ACPI: PCI Interrupt Link [LNKE] (IRQs 10 *11)
[    0.547153] ACPI: PCI Interrupt Link [LNKF] (IRQs *10 11)
[    0.547275] ACPI: PCI Interrupt Link [LNKG] (IRQs 10 11) *0, disabled.
[    0.547398] ACPI: PCI Interrupt Link [LNKH] (IRQs *10 11)
[    0.547648] ACPI: WMI: Mapper loaded
[    0.548100] SCSI subsystem initialized
[    0.548106] libata version 3.00 loaded.
[    0.548106] usbcore: registered new interface driver usbfs
[    0.548106] usbcore: registered new interface driver hub
[    0.548106] usbcore: registered new device driver usb
[    0.548106] PCI: Using ACPI for IRQ routing
[    0.560009] Bluetooth: Core ver 2.13
[    0.560012] NET: Registered protocol family 31
[    0.560012] Bluetooth: HCI device and connection manager initialized
[    0.560015] Bluetooth: HCI socket layer initialized
[    0.560017] NET: Registered protocol family 8
[    0.560018] NET: Registered protocol family 20
[    0.560030] NetLabel: Initializing
[    0.560032] NetLabel:  domain hash size = 128
[    0.560033] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.560049] NetLabel:  unlabeled traffic allowed by default
[    0.560077] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[    0.560082] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
[    0.564075] AppArmor: AppArmor Filesystem Enabled
[    0.568008] Switched to high resolution mode on CPU 0
[    0.568443] Switched to high resolution mode on CPU 1
[    0.577008] pnp: PnP ACPI init
[    0.577018] ACPI: bus type pnp registered
[    0.578887] pnp: PnP ACPI: found 10 devices
[    0.578889] ACPI: ACPI bus type pnp unregistered
[    0.578900] system 00:05: iomem range 0xfed00000-0xfed003ff has been reserved
[    0.578907] system 00:07: ioport range 0x480-0x48f has been reserved
[    0.578909] system 00:07: ioport range 0xffff-0xffff has been reserved
[    0.578911] system 00:07: ioport range 0xffff-0xffff has been reserved
[    0.578913] system 00:07: ioport range 0x400-0x47f has been reserved
[    0.578915] system 00:07: ioport range 0x1180-0x11ff has been reserved
[    0.578921] system 00:07: ioport range 0xfe00-0xfe00 has been reserved
[    0.578923] system 00:07: iomem range 0xff800000-0xff800fff has been reserved
[    0.578928] system 00:09: iomem range 0xfed1c000-0xfed1ffff has been reserved
[    0.578930] system 00:09: iomem range 0xfed10000-0xfed13fff has been reserved
[    0.578932] system 00:09: iomem range 0xfed18000-0xfed18fff has been reserved
[    0.578934] system 00:09: iomem range 0xfed19000-0xfed19fff has been reserved
[    0.578936] system 00:09: iomem range 0xe0000000-0xefffffff has been reserved
[    0.578938] system 00:09: iomem range 0xfed20000-0xfed3ffff has been reserved
[    0.583630] pci 0000:01:00.0: BAR 6: can't allocate mem resource [0xe0000000-0xdfffffff]
[    0.583633] pci 0000:00:01.0: PCI bridge, secondary bus 0000:01
[    0.583635] pci 0000:00:01.0:   IO window: 0x2000-0x2fff
[    0.583639] pci 0000:00:01.0:   MEM window: 0xf0000000-0xf2ffffff
[    0.583642] pci 0000:00:01.0:   PREFETCH window: 0x000000d0000000-0x000000dfffffff
[    0.583646] pci 0000:00:1c.0: PCI bridge, secondary bus 0000:02
[    0.583647] pci 0000:00:1c.0:   IO window: disabled
[    0.583653] pci 0000:00:1c.0:   MEM window: 0xf3000000-0xf30fffff
[    0.583657] pci 0000:00:1c.0:   PREFETCH window: disabled
[    0.583664] pci 0000:00:1c.1: PCI bridge, secondary bus 0000:03
[    0.583666] pci 0000:00:1c.1:   IO window: disabled
[    0.583671] pci 0000:00:1c.1:   MEM window: disabled
[    0.583675] pci 0000:00:1c.1:   PREFETCH window: disabled
[    0.583682] pci 0000:00:1c.2: PCI bridge, secondary bus 0000:04
[    0.583683] pci 0000:00:1c.2:   IO window: disabled
[    0.583689] pci 0000:00:1c.2:   MEM window: 0xf3100000-0xf31fffff
[    0.583693] pci 0000:00:1c.2:   PREFETCH window: disabled
[    0.583700] pci 0000:00:1c.4: PCI bridge, secondary bus 0000:05
[    0.583704] pci 0000:00:1c.4:   IO window: 0x3000-0x3fff
[    0.583709] pci 0000:00:1c.4:   MEM window: 0xf4000000-0xf5ffffff
[    0.583714] pci 0000:00:1c.4:   PREFETCH window: 0x000000f6000000-0x000000f7ffffff
[    0.583722] pci 0000:00:1e.0: PCI bridge, secondary bus 0000:0d
[    0.583723] pci 0000:00:1e.0:   IO window: disabled
[    0.583728] pci 0000:00:1e.0:   MEM window: disabled
[    0.583732] pci 0000:00:1e.0:   PREFETCH window: disabled
[    0.583747] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.583750] pci 0000:00:01.0: setting latency timer to 64
[    0.583758] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.583763] pci 0000:00:1c.0: setting latency timer to 64
[    0.583771] pci 0000:00:1c.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.583776] pci 0000:00:1c.1: setting latency timer to 64
[    0.583784] pci 0000:00:1c.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    0.583788] pci 0000:00:1c.2: setting latency timer to 64
[    0.583796] pci 0000:00:1c.4: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.583800] pci 0000:00:1c.4: setting latency timer to 64
[    0.583807] pci 0000:00:1e.0: setting latency timer to 64
[    0.583810] bus: 00 index 0 io port: [0x00-0xffff]
[    0.583812] bus: 00 index 1 mmio: [0x000000-0xffffffffffffffff]
[    0.583814] bus: 01 index 0 io port: [0x2000-0x2fff]
[    0.583816] bus: 01 index 1 mmio: [0xf0000000-0xf2ffffff]
[    0.583817] bus: 01 index 2 mmio: [0xd0000000-0xdfffffff]
[    0.583819] bus: 01 index 3 mmio: [0x0-0x0]
[    0.583820] bus: 02 index 0 mmio: [0x0-0x0]
[    0.583821] bus: 02 index 1 mmio: [0xf3000000-0xf30fffff]
[    0.583823] bus: 02 index 2 mmio: [0x0-0x0]
[    0.583824] bus: 02 index 3 mmio: [0x0-0x0]
[    0.583826] bus: 03 index 0 mmio: [0x0-0x0]
[    0.583827] bus: 03 index 1 mmio: [0x0-0x0]
[    0.583828] bus: 03 index 2 mmio: [0x0-0x0]
[    0.583829] bus: 03 index 3 mmio: [0x0-0x0]
[    0.583831] bus: 04 index 0 mmio: [0x0-0x0]
[    0.583832] bus: 04 index 1 mmio: [0xf3100000-0xf31fffff]
[    0.583833] bus: 04 index 2 mmio: [0x0-0x0]
[    0.583835] bus: 04 index 3 mmio: [0x0-0x0]
[    0.583836] bus: 05 index 0 io port: [0x3000-0x3fff]
[    0.583838] bus: 05 index 1 mmio: [0xf4000000-0xf5ffffff]
[    0.583839] bus: 05 index 2 mmio: [0xf6000000-0xf7ffffff]
[    0.583841] bus: 05 index 3 mmio: [0x0-0x0]
[    0.583842] bus: 0d index 0 mmio: [0x0-0x0]
[    0.583843] bus: 0d index 1 mmio: [0x0-0x0]
[    0.583844] bus: 0d index 2 mmio: [0x0-0x0]
[    0.583846] bus: 0d index 3 io port: [0x00-0xffff]
[    0.583847] bus: 0d index 4 mmio: [0x000000-0xffffffffffffffff]
[    0.583856] NET: Registered protocol family 2
[    0.617544] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.618074] TCP established hash table entries: 262144 (order: 10, 4194304 bytes)
[    0.620162] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.620777] TCP: Hash tables configured (established 262144 bind 65536)
[    0.620780] TCP reno registered
[    0.629111] NET: Registered protocol family 1
[    0.629228] checking if image is initramfs... it is
[    1.301798] Freeing initrd memory: 7772k freed
[    1.305605] Simple Boot Flag at 0x57 set to 0x1
[    1.305914] audit: initializing netlink socket (disabled)
[    1.305929] type=2000 audit(1245422621.304:1): initialized
[    1.314169] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    1.315300] VFS: Disk quotas dquot_6.5.1
[    1.315349] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    1.315823] fuse init (API version 7.10)
[    1.315896] msgmni has been set to 7781
[    1.316055] alg: No test for stdrng (krng)
[    1.316068] io scheduler noop registered
[    1.316069] io scheduler anticipatory registered
[    1.316071] io scheduler deadline registered
[    1.316108] io scheduler cfq registered (default)
[    1.316278] pci 0000:01:00.0: Boot video device
[    1.317789] pcieport-driver 0000:00:01.0: setting latency timer to 64
[    1.317822] pcieport-driver 0000:00:01.0: found MSI capability
[    1.317844] pcieport-driver 0000:00:01.0: irq 2303 for MSI/MSI-X
[    1.317853] pci_express 0000:00:01.0:pcie00: allocate port service
[    1.317868] pci_express 0000:00:01.0:pcie02: allocate port service
[    1.317878] pci_express 0000:00:01.0:pcie03: allocate port service
[    1.317924] pcieport-driver 0000:00:1c.0: setting latency timer to 64
[    1.317972] pcieport-driver 0000:00:1c.0: found MSI capability
[    1.318004] pcieport-driver 0000:00:1c.0: irq 2302 for MSI/MSI-X
[    1.318020] pci_express 0000:00:1c.0:pcie00: allocate port service
[    1.318030] pci_express 0000:00:1c.0:pcie02: allocate port service
[    1.318040] pci_express 0000:00:1c.0:pcie03: allocate port service
[    1.318111] pcieport-driver 0000:00:1c.1: setting latency timer to 64
[    1.318158] pcieport-driver 0000:00:1c.1: found MSI capability
[    1.318190] pcieport-driver 0000:00:1c.1: irq 2301 for MSI/MSI-X
[    1.318206] pci_express 0000:00:1c.1:pcie00: allocate port service
[    1.318216] pci_express 0000:00:1c.1:pcie02: allocate port service
[    1.318226] pci_express 0000:00:1c.1:pcie03: allocate port service
[    1.318298] pcieport-driver 0000:00:1c.2: setting latency timer to 64
[    1.318346] pcieport-driver 0000:00:1c.2: found MSI capability
[    1.318378] pcieport-driver 0000:00:1c.2: irq 2300 for MSI/MSI-X
[    1.318394] pci_express 0000:00:1c.2:pcie00: allocate port service
[    1.318404] pci_express 0000:00:1c.2:pcie02: allocate port service
[    1.318414] pci_express 0000:00:1c.2:pcie03: allocate port service
[    1.318484] pcieport-driver 0000:00:1c.4: setting latency timer to 64
[    1.318531] pcieport-driver 0000:00:1c.4: found MSI capability
[    1.318563] pcieport-driver 0000:00:1c.4: irq 2299 for MSI/MSI-X
[    1.318579] pci_express 0000:00:1c.4:pcie00: allocate port service
[    1.318592] pci_express 0000:00:1c.4:pcie02: allocate port service
[    1.318602] pci_express 0000:00:1c.4:pcie03: allocate port service
[    1.318682] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.318865] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.321261] ACPI: AC Adapter [ADP1] (on-line)
[    1.321359] ACPI: Battery Slot [BAT0] (battery absent)
[    1.321428] input: Power Button (FF) as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    1.321430] ACPI: Power Button (FF) [PWRF]
[    1.321478] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input1
[    1.323343] ACPI: Lid Switch [LID0]
[    1.323390] input: Sleep Button (CM) as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input2
[    1.323395] ACPI: Sleep Button (CM) [SLPB]
[    1.324169] ACPI: SSDT BFD1ACA0, 0223 (r1  PmRef  Cpu0Ist     3000 INTL 20050624)
[    1.324632] ACPI: SSDT BFD19620, 0549 (r1  PmRef  Cpu0Cst     3001 INTL 20050624)
[    1.325317] Monitor-Mwait will be used to enter C-1 state
[    1.325320] Monitor-Mwait will be used to enter C-2 state
[    1.325333] ACPI: CPU0 (power states: C1[C1] C2[C2])
[    1.325356] processor ACPI_CPU:00: registered as cooling_device0
[    1.325816] ACPI: SSDT BFD1AA20, 01CF (r1  PmRef    ApIst     3000 INTL 20050624)
[    1.326217] ACPI: SSDT BFD1AF20, 008D (r1  PmRef    ApCst     3000 INTL 20050624)
[    1.326983] ACPI: CPU1 (power states: C1[C1] C2[C2])
[    1.327000] processor ACPI_CPU:01: registered as cooling_device1
[    1.345266] thermal LNXTHERM:01: registered as thermal_zone0
[    1.358354] ACPI: Thermal Zone [TZS0] (27 C)
[    1.365431] thermal LNXTHERM:02: registered as thermal_zone1
[    1.369372] ACPI: Thermal Zone [TZS1] (27 C)
[    1.393250] Linux agpgart interface v0.103
[    1.393258] Serial: 8250/16550 driver4 ports, IRQ sharing enabled
[    1.394123] brd: module loaded
[    1.394391] loop: module loaded
[    1.394455] Fixed MDIO Bus: probed
[    1.394460] PPP generic driver version 2.4.2
[    1.394510] input: Macintosh mouse button emulation as /devices/virtual/input/input3
[    1.394537] Driver 'sd' needs updating - please use bus_type methods
[    1.394547] Driver 'sr' needs updating - please use bus_type methods
[    1.394583] ahci 0000:00:1f.2: version 3.0
[    1.394600] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    1.394645] ahci 0000:00:1f.2: irq 2298 for MSI/MSI-X
[    1.394733] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 4 ports 3 Gbps 0x33 impl SATA mode
[    1.394736] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ems 
[    1.394742] ahci 0000:00:1f.2: setting latency timer to 64
[    1.395048] scsi0 : ahci
[    1.395146] scsi1 : ahci
[    1.395198] scsi2 : ahci
[    1.395247] scsi3 : ahci
[    1.395303] scsi4 : ahci
[    1.395354] scsi5 : ahci
[    1.395391] ata1: SATA max UDMA/133 abar m2048@0xf3404000 port 0xf3404100 irq 2298
[    1.395394] ata2: SATA max UDMA/133 abar m2048@0xf3404000 port 0xf3404180 irq 2298
[    1.395396] ata3: DUMMY
[    1.395397] ata4: DUMMY
[    1.395399] ata5: SATA max UDMA/133 abar m2048@0xf3404000 port 0xf3404300 irq 2298
[    1.395402] ata6: SATA max UDMA/133 abar m2048@0xf3404000 port 0xf3404380 irq 2298
[    1.712019] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.712819] ata1.00: ATA-8: Hitachi HTS545032B9A300, PB3OC60F, max UDMA/133
[    1.712821] ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32)
[    1.713793] ata1.00: configured for UDMA/133
[    2.048016] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.048301] ata2.00: ATAPI: Slimtype DVD A  DS8A3S, HA17, max UDMA/100
[    2.049416] ata2.00: configured for UDMA/100
[    2.384015] ata5: SATA link down (SStatus 0 SControl 300)
[    2.720015] ata6: SATA link down (SStatus 0 SControl 300)
[    2.736098] scsi 0:0:0:0: Direct-Access     ATA      Hitachi HTS54503 PB3O PQ: 0 ANSI: 5
[    2.736180] sd 0:0:0:0: [sda] 625142448 512-byte hardware sectors: (320 GB/298 GiB)
[    2.736194] sd 0:0:0:0: [sda] Write Protect is off
[    2.736196] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.736219] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.736289] sd 0:0:0:0: [sda] 625142448 512-byte hardware sectors: (320 GB/298 GiB)
[    2.736302] sd 0:0:0:0: [sda] Write Protect is off
[    2.736304] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.736325] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.736328]  sda: sda1 sda2 sda3 sda4
[    2.761796] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.761841] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    2.763319] scsi 1:0:0:0: CD-ROM            Slimtype DVD A  DS8A3S    HA17 PQ: 0 ANSI: 5
[    2.771908] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda pop-up
[    2.771911] Uniform CD-ROM driver Revision: 3.20
[    2.771995] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    2.772027] sr 1:0:0:0: Attached scsi generic sg1 type 5
[    2.772573] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.772599] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 20 (level, low) -> IRQ 20
[    2.772618] ehci_hcd 0000:00:1a.7: setting latency timer to 64
[    2.772621] ehci_hcd 0000:00:1a.7: EHCI Host Controller
[    2.772677] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
[    2.776593] ehci_hcd 0000:00:1a.7: debug port 1
[    2.776600] ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported
[    2.776614] ehci_hcd 0000:00:1a.7: irq 20, io mem 0xf3404800
[    2.792009] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
[    2.792061] usb usb1: configuration #1 chosen from 1 choice
[    2.792085] hub 1-0:1.0: USB hub found
[    2.792092] hub 1-0:1.0: 4 ports detected
[    2.792189] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[    2.792199] ehci_hcd 0000:00:1d.7: setting latency timer to 64
[    2.792203] ehci_hcd 0000:00:1d.7: EHCI Host Controller
[    2.792238] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
[    2.796153] ehci_hcd 0000:00:1d.7: debug port 1
[    2.796159] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
[    2.796170] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xf3404c00
[    2.808007] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    2.808053] usb usb2: configuration #1 chosen from 1 choice
[    2.808073] hub 2-0:1.0: USB hub found
[    2.808079] hub 2-0:1.0: 8 ports detected
[    2.808168] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.808184] uhci_hcd: USB Universal Host Controller Interface driver
[    2.808212] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 20 (level, low) -> IRQ 20
[    2.808219] uhci_hcd 0000:00:1a.0: setting latency timer to 64
[    2.808222] uhci_hcd 0000:00:1a.0: UHCI Host Controller
[    2.808259] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
[    2.808288] uhci_hcd 0000:00:1a.0: irq 20, io base 0x00001800
[    2.808356] usb usb3: configuration #1 chosen from 1 choice
[    2.808376] hub 3-0:1.0: USB hub found
[    2.808382] hub 3-0:1.0: 2 ports detected
[    2.808462] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 20 (level, low) -> IRQ 20
[    2.808468] uhci_hcd 0000:00:1a.1: setting latency timer to 64
[    2.808471] uhci_hcd 0000:00:1a.1: UHCI Host Controller
[    2.808515] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
[    2.808541] uhci_hcd 0000:00:1a.1: irq 20, io base 0x00001820
[    2.808604] usb usb4: configuration #1 chosen from 1 choice
[    2.808626] hub 4-0:1.0: USB hub found
[    2.808632] hub 4-0:1.0: 2 ports detected
[    2.808706] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
[    2.808712] uhci_hcd 0000:00:1d.0: setting latency timer to 64
[    2.808715] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    2.808749] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5
[    2.808775] uhci_hcd 0000:00:1d.0: irq 23, io base 0x00001840
[    2.808841] usb usb5: configuration #1 chosen from 1 choice
[    2.808861] hub 5-0:1.0: USB hub found
[    2.808868] hub 5-0:1.0: 2 ports detected
[    2.808942] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    2.808948] uhci_hcd 0000:00:1d.1: setting latency timer to 64
[    2.808952] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    2.808987] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6
[    2.809026] uhci_hcd 0000:00:1d.1: irq 17, io base 0x00001860
[    2.809093] usb usb6: configuration #1 chosen from 1 choice
[    2.809113] hub 6-0:1.0: USB hub found
[    2.809120] hub 6-0:1.0: 2 ports detected
[    2.809196] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    2.809202] uhci_hcd 0000:00:1d.2: setting latency timer to 64
[    2.809206] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    2.809240] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 7
[    2.809273] uhci_hcd 0000:00:1d.2: irq 18, io base 0x00001880
[    2.809338] usb usb7: configuration #1 chosen from 1 choice
[    2.809359] hub 7-0:1.0: USB hub found
[    2.809364] hub 7-0:1.0: 2 ports detected
[    2.809437] uhci_hcd 0000:00:1d.3: PCI INT D -> GSI 18 (level, low) -> IRQ 18
[    2.809443] uhci_hcd 0000:00:1d.3: setting latency timer to 64
[    2.809446] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[    2.809485] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 8
[    2.809510] uhci_hcd 0000:00:1d.3: irq 18, io base 0x000018a0
[    2.809573] usb usb8: configuration #1 chosen from 1 choice
[    2.809596] hub 8-0:1.0: USB hub found
[    2.809608] hub 8-0:1.0: 2 ports detected
[    2.809729] PNP: PS/2 Controller [PNP0303:KBD0,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    2.829080] i8042.c: Detected active multiplexing controller, rev 1.1.
[    2.839867] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.839872] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[    2.839874] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[    2.839876] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[    2.839878] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[    2.849039] mice: PS/2 mouse device common for all mice
[    2.897063] rtc_cmos 00:08: RTC can wake from S4
[    2.897096] rtc_cmos 00:08: rtc core: registered rtc_cmos as rtc0
[    2.897127] rtc0: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    2.897188] device-mapper: uevent: version 1.0.3
[    2.897271] device-mapper: ioctl: 4.14.0-ioctl (2008-04-23) initialised: dm-devel@redhat.com
[    2.897330] device-mapper: multipath: version 1.0.5 loaded
[    2.897332] device-mapper: multipath round-robin: version 1.0.0 loaded
[    2.897450] cpuidle: using governor ladder
[    2.897522] cpuidle: using governor menu
[    2.897891] TCP cubic registered
[    2.897956] NET: Registered protocol family 10
[    2.898299] lo: Disabled Privacy Extensions
[    2.898552] NET: Registered protocol family 17
[    2.898569] Bluetooth: L2CAP ver 2.11
[    2.898570] Bluetooth: L2CAP socket layer initialized
[    2.898573] Bluetooth: SCO (Voice Link) ver 0.6
[    2.898574] Bluetooth: SCO socket layer initialized
[    2.898604] Bluetooth: RFCOMM socket layer initialized
[    2.898610] Bluetooth: RFCOMM TTY layer initialized
[    2.898612] Bluetooth: RFCOMM ver 1.10
[    2.899365] Marking TSC unstable due to TSC halts in idle
[    2.899473] registered taskstats version 1
[    2.899583]   Magic number: 13:595:738
[    2.899691] rtc_cmos 00:08: setting system clock to 2009-06-19 14:43:43 UTC (1245422623)
[    2.899693] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    2.899694] EDD information not available.
[    2.899750] Freeing unused kernel memory: 532k freed
[    2.899920] Write protecting the kernel read-only data: 6684k
[    2.918947] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[    3.084416] tg3.c:v3.94 (August 14, 2008)
[    3.084589] tg3 0000:02:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    3.084598] tg3 0000:02:00.0: setting latency timer to 64
[    3.211088] usb 2-5: new high speed USB device using ehci_hcd and address 3
[    3.383429] usb 2-5: configuration #1 chosen from 1 choice
[    3.625317] usb 6-1: new low speed USB device using uhci_hcd and address 2
[    3.682185] eth0: Tigon3 [partno(BCM95784M) rev 5784100 PHY(5784)] (PCI Express) 10/100/1000Base-T Ethernet 00:1d:72:fd:d2:80
[    3.682189] eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[0] WireSpeed[1] TSOcap[1]
[    3.682191] eth0: dma_rwctrl[76180000] dma_mask[64-bit]
[    3.723938] PM: Starting manual resume from disk
[    3.723941] PM: Resume from partition 8:1
[    3.723943] PM: Checking hibernation image.
[    3.724059] PM: Resume from disk failed.
[    3.767825] kjournald starting.  Commit interval 5 seconds
[    3.767845] EXT3-fs: mounted filesystem with ordered data mode.
[    3.806782] usb 6-1: configuration #1 chosen from 1 choice
[    8.621940] udev: starting version 141
[    9.701398] nvidia: module license 'NVIDIA' taints kernel.
[    9.954271] nvidia 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    9.954280] nvidia 0000:01:00.0: setting latency timer to 64
[    9.955324] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  180.44  Tue Mar 24 05:46:32 PST 2009
[   10.185938] usbcore: registered new interface driver hiddev
[   10.200443] input: B16_b_02 USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1d.1/usb6/6-1/6-1:1.0/input/input5
[   10.225145] generic-usb 0003:046D:C025.0001: input,hidraw0: USB HID v1.10 Mouse [B16_b_02 USB-PS/2 Optical Mouse] on usb-0000:00:1d.1-1/input0
[   10.225167] usbcore: registered new interface driver usbhid
[   10.225189] usbhid: v2.6:USB HID core driver
[   10.320076] Linux video capture interface: v2.00
[   10.422827] input: PC Speaker as /devices/platform/pcspkr/input/input6
[   10.471995] iTCO_vendor_support: vendor-support=0
[   10.532119] cfg80211: Calling CRDA to update world regulatory domain
[   10.535706] acer-wmi: Acer Laptop ACPI-WMI Extras
[   10.541563] acer-wmi: Brightness must be controlled by generic video driver
[   10.541622] acer-wmi: software RFKILL enabled
[   10.568690] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.05
[   10.568843] iTCO_wdt: Found a ICH9M TCO device (Version=2, TCOBASE=0x0460)
[   10.568923] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[   10.570050] acpi device:04: registered as cooling_device2
[   10.570371] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:01/device:02/input/input7
[   10.597426] ACPI: Video Device [VGA] (multi-head: yes  rom: no  post: no)
[   10.731877] cfg80211: World regulatory domain updated:
[   10.731881] 	(start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   10.731884] 	(2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   10.731886] 	(2457000 KHz - 2482000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   10.731887] 	(2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   10.731889] 	(5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   10.731891] 	(5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   10.759727] uvcvideo: Found UVC 1.00 device CNF7017 (04f2:b044)
[   10.780062] synaptics was reset on resume, see synaptics_resume_reset if you have trouble on resume
[   10.801281] input: CNF7017 as /devices/pci0000:00/0000:00:1d.7/usb2/2-5/2-5:1.0/input/input8
[   10.812154] usbcore: registered new interface driver uvcvideo
[   10.812158] USB Video Class driver (v0.1.0)
[   10.842802] ath9k: 0.1
[   10.842850] ath9k 0000:04:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[   10.842862] ath9k 0000:04:00.0: setting latency timer to 64
[   10.985298] HDA Intel 0000:00:1b.0: power state changed by ACPI to D0
[   10.985315] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
[   10.985379] HDA Intel 0000:00:1b.0: setting latency timer to 64
[   11.276802] phy0: Selected rate control algorithm 'ath9k_rate_control'
[   11.336457] Registered led device: ath9k-phy0:radio
[   11.336494] Registered led device: ath9k-phy0:assoc
[   11.336549] Registered led device: ath9k-phy0:tx
[   11.336589] Registered led device: ath9k-phy0:rx
[   11.337081] phy0: Atheros 9280: mem=0xffffc20010280000, irq=18
[   11.444818] lp: driver loaded but no devices found
[   11.522015] Adding 7815580k swap on /dev/sda1.  Priority:-1 extents:1 across:7815580k
[   11.785926] Synaptics Touchpad, model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd04731/0xa44000
[   11.856808] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio2/input/input9
[   12.062168] EXT3 FS on sda2, internal journal
[   12.910419] kjournald starting.  Commit interval 5 seconds
[   12.910570] EXT3 FS on sda3, internal journal
[   12.910575] EXT3-fs: mounted filesystem with ordered data mode.
[   13.168074] type=1505 audit(1245422633.768:2): operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" name2="default" pid=2117
[   13.206512] type=1505 audit(1245422633.804:3): operation="profile_load" name="/sbin/dhclient-script" name2="default" pid=2121
[   13.206637] type=1505 audit(1245422633.804:4): operation="profile_load" name="/sbin/dhclient3" name2="default" pid=2121
[   13.206674] type=1505 audit(1245422633.804:5): operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" name2="default" pid=2121
[   13.206711] type=1505 audit(1245422633.804:6): operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" name2="default" pid=2121
[   13.313646] type=1505 audit(1245422633.912:7): operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" name2="default" pid=2126
[   13.313820] type=1505 audit(1245422633.912:8): operation="profile_load" name="/usr/sbin/cupsd" name2="default" pid=2126
[   13.338487] type=1505 audit(1245422633.936:9): operation="profile_load" name="/usr/sbin/tcpdump" name2="default" pid=2130
[   15.926730] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   15.926733] Bluetooth: BNEP filters: protocol multicast
[   15.944738] Bridge firewalling registered
[   16.500031] Clocksource tsc unstable (delta = -115162814 ns)
[   17.498361] ppdev: user-space parallel port driver
[   21.400563] tg3 0000:02:00.0: irq 2297 for MSI/MSI-X
[   21.552963] ADDRCONF(NETDEV_UP): eth0: link is not ready
[   21.597449] ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   53.989578] hda-intel: IRQ timing workaround is activated for card #0. Suggest a bigger bdl_pos_adj.
[   67.278432] UDF-fs: No VRS found
[   67.374822] ISO 9660 Extensions: Microsoft Joliet Level 1
[   67.415758] ISOFS: changing to secondary root
[   76.285717] tg3: eth0: Link is up at 100 Mbps, full duplex.
[   76.285720] tg3: eth0: Flow control is on for TX and on for RX.
[   76.286360] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[   86.680072] eth0: no IPv6 routers present
[   90.548211] CE: hpet increasing min_delta_ns to 15000 nsec
[  303.556220] CE: hpet increasing min_delta_ns to 22500 nsec
____________________________________________

Es werden eingebaute Spezifikationen verwendet.
Ziel: x86_64-linux-gnu
Konfiguriert mit: ../src/configure -v --with-pkgversion='Ubuntu 4.3.3-5ubuntu4' --with-bugurl=file:///usr/share/doc/gcc-4.3/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --enable-shared --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --enable-nls --with-gxx-include-dir=/usr/include/c++/4.3 --program-suffix=-4.3 --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --enable-mpfr --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread-Modell: posix
gcc-Version 4.3.3 (Ubuntu 4.3.3-5ubuntu4) 
____________________________________________

xset -q:

Keyboard Control:
  auto repeat:  on    key click percent:  0    LED mask:  00000002
  auto repeat delay:  500    repeat rate:  30
  auto repeating keys:  00ffffffdffffbbf
                        fadfffefffedffff
                        9fffffffffffffff
                        fff7ffffffffffff
  bell percent:  50    bell pitch:  400    bell duration:  100
Pointer Control:
  acceleration:  2/1    threshold:  4
Screen Saver:
  prefer blanking:  yes    allow exposures:  yes
  timeout:  0    cycle:  0
Colors:
  default colormap:  0x20    BlackPixel:  0    WhitePixel:  16777215
Font Path:
  /usr/share/fonts/X11/misc,/usr/share/fonts/X11/100dpi/:unscaled,/usr/share/fonts/X11/75dpi/:unscaled,/usr/share/fonts/X11/Type1,/usr/share/fonts/X11/100dpi,/usr/share/fonts/X11/75dpi,/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,built-ins
DPMS (Energy Star):
  Standby: 0    Suspend: 0    Off: 0
  DPMS is Enabled
  Monitor is On
____________________________________________

nvidia-settings -q all:


Attributes for elf-laptop:0.0:

  Attribute 'OperatingSystem' (elf-laptop:0.0): 0.
    The valid values for 'OperatingSystem' are in the range 0 - 2
    (inclusive).
    'OperatingSystem' is a read-only attribute.
    'OperatingSystem' can use the following target types: X Screen, GPU.

  Attribute 'NvidiaDriverVersion' (elf-laptop:0.0): 180.44 

  Attribute 'NvControlVersion' (elf-laptop:0.0): 1.17 

  Attribute 'GLXServerVersion' (elf-laptop:0.0): 1.4 

  Attribute 'GLXClientVersion' (elf-laptop:0.0): 1.4 

  Attribute 'OpenGLVersion' (elf-laptop:0.0): 3.0.0 NVIDIA 180.44 

  Attribute 'XRandRVersion' (elf-laptop:0.0): 1.3 

  Attribute 'XF86VidModeVersion' (elf-laptop:0.0): 2.2 

  Attribute 'XvVersion' (elf-laptop:0.0): 2.2 

  Attribute 'TwinView' (elf-laptop:0.0): 0.
    'TwinView' is a boolean attribute; valid values are: 1 (on/true) and 0
    (off/false).
    'TwinView' is a read-only attribute.
    'TwinView' can use the following target types: X Screen.

  Attribute 'ConnectedDisplays' (elf-laptop:0.0): 0x00010000.
    'ConnectedDisplays' is a bitmask attribute.
    'ConnectedDisplays' is a read-only attribute.
    'ConnectedDisplays' can use the following target types: X Screen, GPU.

  Attribute 'EnabledDisplays' (elf-laptop:0.0): 0x00010000.
    'EnabledDisplays' is a bitmask attribute.
    'EnabledDisplays' is a read-only attribute.
    'EnabledDisplays' can use the following target types: X Screen, GPU.

  Attribute 'CursorShadow' (elf-laptop:0.0): 0.
    'CursorShadow' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'CursorShadow' can use the following target types: X Screen.

  Attribute 'CursorShadowAlpha' (elf-laptop:0.0): 64.
    The valid values for 'CursorShadowAlpha' are in the range 0 - 254
    (inclusive).
    'CursorShadowAlpha' can use the following target types: X Screen.

  Attribute 'CursorShadowRed' (elf-laptop:0.0): 0.
    The valid values for 'CursorShadowRed' are in the range 0 - 255
    (inclusive).
    'CursorShadowRed' can use the following target types: X Screen.

  Attribute 'CursorShadowGreen' (elf-laptop:0.0): 0.
    The valid values for 'CursorShadowGreen' are in the range 0 - 255
    (inclusive).
    'CursorShadowGreen' can use the following target types: X Screen.

  Attribute 'CursorShadowBlue' (elf-laptop:0.0): 0.
    The valid values for 'CursorShadowBlue' are in the range 0 - 255
    (inclusive).
    'CursorShadowBlue' can use the following target types: X Screen.

  Attribute 'CursorShadowXOffset' (elf-laptop:0.0): 4.
    The valid values for 'CursorShadowXOffset' are in the range 0 - 32
    (inclusive).
    'CursorShadowXOffset' can use the following target types: X Screen.

  Attribute 'CursorShadowYOffset' (elf-laptop:0.0): 2.
    The valid values for 'CursorShadowYOffset' are in the range 0 - 32
    (inclusive).
    'CursorShadowYOffset' can use the following target types: X Screen.

  Attribute 'AssociatedDisplays' (elf-laptop:0.0): 0x00010000.
    'AssociatedDisplays' is a bitmask attribute.
    'AssociatedDisplays' can use the following target types: X Screen.

  Attribute 'InitialPixmapPlacement' (elf-laptop:0.0): 2.
    The valid values for 'InitialPixmapPlacement' are in the range 0 - 4
    (inclusive).
    'InitialPixmapPlacement' can use the following target types: X Screen.

  Attribute 'DynamicTwinview' (elf-laptop:0.0): 1.
    'DynamicTwinview' is an integer attribute.
    'DynamicTwinview' is a read-only attribute.
    'DynamicTwinview' can use the following target types: X Screen.

  Attribute 'MultiGpuDisplayOwner' (elf-laptop:0.0): 0.
    'MultiGpuDisplayOwner' is an integer attribute.
    'MultiGpuDisplayOwner' is a read-only attribute.
    'MultiGpuDisplayOwner' can use the following target types: X Screen.

  Attribute 'GlyphCache' (elf-laptop:0.0): 1.
    The valid values for 'GlyphCache' are in the range 0 - 1 (inclusive).
    'GlyphCache' can use the following target types: X Screen.

  Attribute 'NotebookDisplayChangeLidEvent' (elf-laptop:0.0): 1.
    'NotebookDisplayChangeLidEvent' is an integer attribute.
    'NotebookDisplayChangeLidEvent' can use the following target types: X
    Screen.

  Attribute 'NotebookInternalLCD' (elf-laptop:0.0): 0x00010000.
    'NotebookInternalLCD' is a bitmask attribute.
    'NotebookInternalLCD' is a read-only attribute.
    'NotebookInternalLCD' can use the following target types: X Screen,
    GPU.

  Attribute 'Depth30Allowed' (elf-laptop:0.0): 0.
    'Depth30Allowed' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'Depth30Allowed' is a read-only attribute.
    'Depth30Allowed' can use the following target types: X Screen, GPU.

  Attribute 'NoScanout' (elf-laptop:0.0): 0.
    'NoScanout' is a boolean attribute; valid values are: 1 (on/true) and 0
    (off/false).
    'NoScanout' is a read-only attribute.
    'NoScanout' can use the following target types: X Screen, GPU.

  Attribute 'PixmapCache' (elf-laptop:0.0): 1.
    'PixmapCache' is a boolean attribute; valid values are: 1 (on/true) and
    0 (off/false).
    'PixmapCache' can use the following target types: X Screen.

  Attribute 'PixmapCacheRoundSizeKB' (elf-laptop:0.0): 1024.
    The valid values for 'PixmapCacheRoundSizeKB' are in the range 4 -
    1048576 (inclusive).
    'PixmapCacheRoundSizeKB' can use the following target types: X Screen.

  Attribute 'SyncToVBlank' (elf-laptop:0.0): 0.
    'SyncToVBlank' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'SyncToVBlank' can use the following target types: X Screen.

  Attribute 'LogAniso' (elf-laptop:0.0): 0.
    The valid values for 'LogAniso' are in the range 0 - 4 (inclusive).
    'LogAniso' can use the following target types: X Screen.

  Attribute 'FSAA' (elf-laptop:0.0): 0.
    Valid values for 'FSAA' are: 0, 1, 5, 7, 8, 9, 10 and 12.
    'FSAA' can use the following target types: X Screen.

  Attribute 'TextureSharpen' (elf-laptop:0.0): 0.
    'TextureSharpen' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'TextureSharpen' can use the following target types: X Screen.

  Attribute 'AllowFlipping' (elf-laptop:0.0): 1.
    'AllowFlipping' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'AllowFlipping' can use the following target types: X Screen.

  Attribute 'FSAAAppControlled' (elf-laptop:0.0): 1.
    'FSAAAppControlled' is a boolean attribute; valid values are: 1
    (on/true) and 0 (off/false).
    'FSAAAppControlled' can use the following target types: X Screen.

  Attribute 'LogAnisoAppControlled' (elf-laptop:0.0): 1.
    'LogAnisoAppControlled' is a boolean attribute; valid values are: 1
    (on/true) and 0 (off/false).
    'LogAnisoAppControlled' can use the following target types: X Screen.

  Attribute 'OpenGLImageSettings' (elf-laptop:0.0): 1.
    The valid values for 'OpenGLImageSettings' are in the range 0 - 3
    (inclusive).
    'OpenGLImageSettings' can use the following target types: X Screen.

  Attribute 'FSAAAppEnhanced' (elf-laptop:0.0): 0.
    'FSAAAppEnhanced' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'FSAAAppEnhanced' can use the following target types: X Screen.

  Attribute 'BusType' (elf-laptop:0.0): 2.
    The valid values for 'BusType' are in the range 0 - 3 (inclusive).
    'BusType' is a read-only attribute.
    'BusType' can use the following target types: X Screen, GPU.

  Attribute 'VideoRam' (elf-laptop:0.0): 524288.
    'VideoRam' is an integer attribute.
    'VideoRam' is a read-only attribute.
    'VideoRam' can use the following target types: X Screen, GPU.

  Attribute 'Irq' (elf-laptop:0.0): 16.
    'Irq' is an integer attribute.
    'Irq' is a read-only attribute.
    'Irq' can use the following target types: X Screen, GPU.

  Attribute 'GPUCoreTemp' (elf-laptop:0.0): 41.
    'GPUCoreTemp' is an integer attribute.
    'GPUCoreTemp' is a read-only attribute.
    'GPUCoreTemp' can use the following target types: X Screen, GPU.

  Attribute 'GPU2DClockFreqs' (elf-laptop:0.0): 169,100.
    The valid values for 'GPU2DClockFreqs' are in the ranges 42 - 338, 25 -
    1180 (inclusive).
    'GPU2DClockFreqs' can use the following target types: X Screen, GPU.

  Attribute 'GPU3DClockFreqs' (elf-laptop:0.0): 640,500.
    The valid values for 'GPU3DClockFreqs' are in the ranges 160 - 1280,
    125 - 1180 (inclusive).
    'GPU3DClockFreqs' can use the following target types: X Screen, GPU.

  Attribute 'GPUDefault2DClockFreqs' (elf-laptop:0.0): 169,100.
    'GPUDefault2DClockFreqs' is a packed integer attribute.
    'GPUDefault2DClockFreqs' is a read-only attribute.
    'GPUDefault2DClockFreqs' can use the following target types: X Screen,
    GPU.

  Attribute 'GPUDefault3DClockFreqs' (elf-laptop:0.0): 640,500.
    'GPUDefault3DClockFreqs' is a packed integer attribute.
    'GPUDefault3DClockFreqs' is a read-only attribute.
    'GPUDefault3DClockFreqs' can use the following target types: X Screen,
    GPU.

  Attribute 'GPUCurrentClockFreqs' (elf-laptop:0.0): 640,500.
    'GPUCurrentClockFreqs' is a packed integer attribute.
    'GPUCurrentClockFreqs' is a read-only attribute.
    'GPUCurrentClockFreqs' can use the following target types: X Screen,
    GPU.

  Attribute 'BusRate' (elf-laptop:0.0): 16.
    The valid values for 'BusRate' are in the range 1 - 16 (inclusive).
    'BusRate' is a read-only attribute.
    'BusRate' can use the following target types: X Screen, GPU.

  Attribute 'GPUErrors' (elf-laptop:0.0): 0.
    'GPUErrors' is an integer attribute.
    'GPUErrors' is a read-only attribute.
    'GPUErrors' can use the following target types: X Screen.

  Attribute 'GPUPowerSource' (elf-laptop:0.0): 0.
    'GPUPowerSource' is an integer attribute.
    'GPUPowerSource' is a read-only attribute.
    'GPUPowerSource' can use the following target types: X Screen, GPU.

  Attribute 'GPUCurrentPerfMode' (elf-laptop:0.0): 1.
    'GPUCurrentPerfMode' is an integer attribute.
    'GPUCurrentPerfMode' is a read-only attribute.
    'GPUCurrentPerfMode' can use the following target types: X Screen,
    GPU.

  Attribute 'GPUCurrentPerfLevel' (elf-laptop:0.0): 3.
    'GPUCurrentPerfLevel' is an integer attribute.
    'GPUCurrentPerfLevel' is a read-only attribute.
    'GPUCurrentPerfLevel' can use the following target types: X Screen,
    GPU.

  Attribute 'GPUAdaptiveClockState' (elf-laptop:0.0): 1.
    'GPUAdaptiveClockState' is an integer attribute.
    'GPUAdaptiveClockState' is a read-only attribute.
    'GPUAdaptiveClockState' can use the following target types: X Screen,
    GPU.

  Attribute 'GPUPerfModes' (elf-laptop:0.0): perf=0, nvclock=169,
  memclock=100 ; perf=1, nvclock=275, memclock=250 ; perf=2, nvclock=500,
  memclock=400 ; perf=3, nvclock=640, memclock=500 

  Attribute 'GvoSupported' (elf-laptop:0.0): 0.
    'GvoSupported' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'GvoSupported' is a read-only attribute.
    'GvoSupported' can use the following target types: X Screen.

  Attribute 'IsGvoDisplay' (elf-laptop:0.0): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' can use the following target types: X Screen, GPU.

  Attribute 'DigitalVibrance' (elf-laptop:0.0; display device: DFP-0): 0.
    The valid values for 'DigitalVibrance' are in the range 0 - 1023
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU.

  Attribute 'FrontendResolution' (elf-laptop:0.0; display device: DFP-0):
  640,480.
    'FrontendResolution' is a packed integer attribute.
    'FrontendResolution' is a read-only attribute.
    'FrontendResolution' is display device specific.
    'FrontendResolution' can use the following target types: X Screen,
    GPU.

  Attribute 'BackendResolution' (elf-laptop:0.0; display device: DFP-0):
  640,480.
    'BackendResolution' is a packed integer attribute.
    'BackendResolution' is a read-only attribute.
    'BackendResolution' is display device specific.
    'BackendResolution' can use the following target types: X Screen, GPU.

  Attribute 'FlatpanelNativeResolution' (elf-laptop:0.0; display device:
  DFP-0): 640,480.
    'FlatpanelNativeResolution' is a packed integer attribute.
    'FlatpanelNativeResolution' is a read-only attribute.
    'FlatpanelNativeResolution' is display device specific.
    'FlatpanelNativeResolution' can use the following target types: X
    Screen, GPU.

  Attribute 'FlatpanelBestFitResolution' (elf-laptop:0.0; display device:
  DFP-0): 640,480.
    'FlatpanelBestFitResolution' is a packed integer attribute.
    'FlatpanelBestFitResolution' is a read-only attribute.
    'FlatpanelBestFitResolution' is display device specific.
    'FlatpanelBestFitResolution' can use the following target types: X
    Screen, GPU.

  Attribute 'DFPScalingActive' (elf-laptop:0.0; display device: DFP-0): 0.
    'DFPScalingActive' is a boolean attribute; valid values are: 1
    (on/true) and 0 (off/false).
    'DFPScalingActive' is a read-only attribute.
    'DFPScalingActive' is display device specific.
    'DFPScalingActive' can use the following target types: X Screen, GPU.

  Attribute 'GPUScaling' (elf-laptop:0.0; display device: DFP-0): 2,1.
    Valid values for 'GPUScaling' are: [1, 2 and 3], [1 and 2].
    'GPUScaling' is display device specific.
    'GPUScaling' can use the following target types: X Screen, GPU.

  Attribute 'GPUScalingActive' (elf-laptop:0.0; display device: DFP-0): 0.
    'GPUScalingActive' is a boolean attribute; valid values are: 1
    (on/true) and 0 (off/false).
    'GPUScalingActive' is a read-only attribute.
    'GPUScalingActive' is display device specific.
    'GPUScalingActive' can use the following target types: X Screen, GPU.

  Attribute 'RefreshRate' (elf-laptop:0.0; display device: DFP-0): 59,94
  Hz.
    'RefreshRate' is an integer attribute.
    'RefreshRate' is a read-only attribute.
    'RefreshRate' is display device specific.
    'RefreshRate' can use the following target types: X Screen, GPU.

  Attribute 'RefreshRate3' (elf-laptop:0.0; display device: DFP-0): 59,940
  Hz.
    'RefreshRate3' is an integer attribute.
    'RefreshRate3' is a read-only attribute.
    'RefreshRate3' is display device specific.
    'RefreshRate3' can use the following target types: X Screen, GPU.

  Attribute 'XVideoTextureBrightness' (elf-laptop:0.0): 0.
    The valid values for 'XVideoTextureBrightness' are in the range -512 -
    511 (inclusive).
    'XVideoTextureBrightness' can use the following target types: X
    Screen.

  Attribute 'XVideoTextureContrast' (elf-laptop:0.0): 4096.
    The valid values for 'XVideoTextureContrast' are in the range 0 - 8191
    (inclusive).
    'XVideoTextureContrast' can use the following target types: X Screen.

  Attribute 'XVideoTextureHue' (elf-laptop:0.0): 0.
    The valid values for 'XVideoTextureHue' are in the range 0 - 360
    (inclusive).
    'XVideoTextureHue' can use the following target types: X Screen.

  Attribute 'XVideoTextureSaturation' (elf-laptop:0.0): 4096.
    The valid values for 'XVideoTextureSaturation' are in the range 0 -
    8191 (inclusive).
    'XVideoTextureSaturation' can use the following target types: X
    Screen.

  Attribute 'XVideoTextureSyncToVBlank' (elf-laptop:0.0): 1.
    The valid values for 'XVideoTextureSyncToVBlank' are in the range 0 - 1
    (inclusive).
    'XVideoTextureSyncToVBlank' can use the following target types: X
    Screen.

  Attribute 'XVideoSyncToDisplay' (elf-laptop:0.0): 0x00010000.
    'XVideoSyncToDisplay' is a bitmask attribute.
    'XVideoSyncToDisplay' can use the following target types: X Screen.

____________________________________________

/proc/asound/cards
 0 [Intel          ]: HDA-Intel - HDA Intel
                      HDA Intel at 0xf3400000 irq 21

____________________________________________

/proc/asound/pcm
00-00: ALC888 Analog : ALC888 Analog : playback 1 : capture 1
00-04: ALC888 Analog : ALC888 Analog : capture 1

____________________________________________

/proc/asound/modules
 0 snd_hda_intel

____________________________________________

/proc/asound/devices
  2:        : timer
  3:        : sequencer
  4: [ 0- 4]: digital audio capture
  5: [ 0- 0]: digital audio playback
  6: [ 0- 0]: digital audio capture
  7: [ 0]   : control

____________________________________________

/proc/asound/version
Advanced Linux Sound Architecture Driver Version 1.0.18rc3.

____________________________________________

/proc/asound/timers
G0: system timer : 4000.000us (10000000 ticks)
P0-0-0: PCM playback 0-0-0 : SLAVE
P0-0-1: PCM capture 0-0-1 : SLAVE
P0-4-1: PCM capture 0-4-1 : SLAVE

____________________________________________

/proc/asound/hwdep does not exist

____________________________________________

/proc/asound/card0/codec#0
Codec: Realtek ALC888
Address: 0
Vendor Id: 0x10ec0888
Subsystem Id: 0x10250205
Revision Id: 0x100202
No Modem Function Group found
Default PCM:
    rates [0x560]: 44100 48000 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
Default Amp-In caps: N/A
Default Amp-Out caps: N/A
GPIO: io=2, o=0, i=0, unsolicited=1, wake=1
  IO[0]: enable=1, dir=1, wake=0, sticky=0, data=1
  IO[1]: enable=0, dir=0, wake=0, sticky=0, data=0
Node 0x02 [Audio Output] wcaps 0x411: Stereo
  Converter: stream=0, channel=0
  PCM:
    rates [0x560]: 44100 48000 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
  Power: setting=D0, actual=D0
Node 0x03 [Audio Output] wcaps 0x411: Stereo
  Converter: stream=0, channel=0
  PCM:
    rates [0x560]: 44100 48000 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
  Power: setting=D0, actual=D0
Node 0x04 [Audio Output] wcaps 0x411: Stereo
  Converter: stream=0, channel=0
  PCM:
    rates [0x560]: 44100 48000 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
  Power: setting=D0, actual=D0
Node 0x05 [Audio Output] wcaps 0x411: Stereo
  Converter: stream=0, channel=0
  PCM:
    rates [0x560]: 44100 48000 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
  Power: setting=D0, actual=D0
Node 0x06 [Audio Output] wcaps 0x611: Stereo Digital
  Converter: stream=0, channel=0
  Digital:
  Digital category: 0x0
  PCM:
    rates [0x5e0]: 44100 48000 88200 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
  Power: setting=D0, actual=D0
Node 0x07 [Vendor Defined Widget] wcaps 0xf00000: Mono
Node 0x08 [Audio Input] wcaps 0x10051b: Stereo Amp-In
  Amp-In caps: ofs=0x0b, nsteps=0x1f, stepsize=0x05, mute=1
  Amp-In vals:  [0x01 0x01]
  Converter: stream=0, channel=0
  SDI-Select: 0
  PCM:
    rates [0x560]: 44100 48000 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
  Power: setting=D0, actual=D0
  Connection: 1
     0x23
Node 0x09 [Audio Input] wcaps 0x10051b: Stereo Amp-In
  Amp-In caps: ofs=0x0b, nsteps=0x1f, stepsize=0x05, mute=1
  Amp-In vals:  [0x80 0x80]
  Converter: stream=0, channel=0
  SDI-Select: 0
  PCM:
    rates [0x560]: 44100 48000 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
  Power: setting=D0, actual=D0
  Connection: 1
     0x22
Node 0x0a [Audio Input] wcaps 0x100711: Stereo Digital
  Converter: stream=0, channel=0
  SDI-Select: 0
  Digital:
  Digital category: 0x0
  PCM:
    rates [0x560]: 44100 48000 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
  Power: setting=D0, actual=D0
  Connection: 1
     0x1f
Node 0x0b [Audio Mixer] wcaps 0x20010b: Stereo Amp-In
  Amp-In caps: ofs=0x17, nsteps=0x1f, stepsize=0x05, mute=1
  Amp-In vals:  [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x19 0x19] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80]
  Connection: 10
     0x18 0x19 0x1a 0x1b 0x1c 0x1d 0x14 0x15 0x16 0x17
Node 0x0c [Audio Mixer] wcaps 0x20010f: Stereo Amp-In Amp-Out
  Amp-In caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-In vals:  [0x00 0x00] [0x00 0x00]
  Amp-Out caps: ofs=0x1f, nsteps=0x1f, stepsize=0x05, mute=0
  Amp-Out vals:  [0x14 0x14]
  Connection: 2
     0x02 0x0b
Node 0x0d [Audio Mixer] wcaps 0x20010f: Stereo Amp-In Amp-Out
  Amp-In caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-In vals:  [0x80 0x80] [0x80 0x80]
  Amp-Out caps: ofs=0x1f, nsteps=0x1f, stepsize=0x05, mute=0
  Amp-Out vals:  [0x00 0x00]
  Connection: 2
     0x03 0x0b
Node 0x0e [Audio Mixer] wcaps 0x20010f: Stereo Amp-In Amp-Out
  Amp-In caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-In vals:  [0x80 0x80] [0x80 0x80]
  Amp-Out caps: ofs=0x1f, nsteps=0x1f, stepsize=0x05, mute=0
  Amp-Out vals:  [0x00 0x00]
  Connection: 2
     0x04 0x0b
Node 0x0f [Audio Mixer] wcaps 0x20010f: Stereo Amp-In Amp-Out
  Amp-In caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-In vals:  [0x80 0x80] [0x80 0x80]
  Amp-Out caps: ofs=0x1f, nsteps=0x1f, stepsize=0x05, mute=0
  Amp-Out vals:  [0x00 0x00]
  Connection: 2
     0x05 0x0b
Node 0x10 [Audio Output] wcaps 0x611: Stereo Digital
  Converter: stream=0, channel=0
  Digital:
  Digital category: 0x0
  PCM:
    rates [0x5e0]: 44100 48000 88200 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
  Power: setting=D0, actual=D0
Node 0x11 [Pin Complex] wcaps 0x400780: Mono Digital
  Pincap 0x00000014: OUT Detect
  Pin Default 0x411111f0: [N/A] Speaker at Ext Rear
    Conn = 1/8, Color = Black
    DefAssociation = 0xf, Sequence = 0x0
    Misc = NO_PRESENCE
  Pin-ctls: 0x40: OUT
  Unsolicited: tag=00, enabled=0
  Power: setting=D0, actual=D0
  Connection: 1
     0x10
Node 0x12 [Pin Complex] wcaps 0x400401: Stereo
  Pincap 0x00000020: IN
  Pin Default 0x411111f0: [N/A] Speaker at Ext Rear
    Conn = 1/8, Color = Black
    DefAssociation = 0xf, Sequence = 0x0
    Misc = NO_PRESENCE
  Pin-ctls: 0x00:
  Power: setting=D0, actual=D0
Node 0x13 [Vendor Defined Widget] wcaps 0xf00000: Mono
Node 0x14 [Pin Complex] wcaps 0x40058f: Stereo Amp-In Amp-Out
  Amp-In caps: ofs=0x00, nsteps=0x03, stepsize=0x27, mute=0
  Amp-In vals:  [0x00 0x00]
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x00 0x00]
  Pincap 0x0001003e: IN OUT HP EAPD Detect Trigger
  EAPD 0x0:
  Pin Default 0x99130110: [Fixed] Speaker at Int ATAPI
    Conn = ATAPI, Color = Unknown
    DefAssociation = 0x1, Sequence = 0x0
    Misc = NO_PRESENCE
  Pin-ctls: 0x40: OUT
  Unsolicited: tag=00, enabled=0
  Power: setting=D0, actual=D0
  Connection: 5
     0x0c* 0x0d 0x0e 0x0f 0x26
Node 0x15 [Pin Complex] wcaps 0x40058f: Stereo Amp-In Amp-Out
  Amp-In caps: ofs=0x00, nsteps=0x03, stepsize=0x27, mute=0
  Amp-In vals:  [0x00 0x00]
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x00 0x00]
  Pincap 0x0001003e: IN OUT HP EAPD Detect Trigger
  EAPD 0x0:
  Pin Default 0x0321101f: [Jack] HP Out at Ext Left
    Conn = 1/8, Color = Black
    DefAssociation = 0x1, Sequence = 0xf
  Pin-ctls: 0x40: OUT
  Unsolicited: tag=00, enabled=0
  Power: setting=D0, actual=D0
  Connection: 5
     0x0c 0x0d* 0x0e 0x0f 0x26
Node 0x16 [Pin Complex] wcaps 0x40058f: Stereo Amp-In Amp-Out
  Amp-In caps: ofs=0x00, nsteps=0x03, stepsize=0x27, mute=0
  Amp-In vals:  [0x00 0x00]
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x00 0x00]
  Pincap 0x00000036: IN OUT Detect Trigger
  Pin Default 0x411111f0: [N/A] Speaker at Ext Rear
    Conn = 1/8, Color = Black
    DefAssociation = 0xf, Sequence = 0x0
    Misc = NO_PRESENCE
  Pin-ctls: 0x40: OUT
  Unsolicited: tag=00, enabled=0
  Power: setting=D0, actual=D0
  Connection: 5
     0x0c 0x0d 0x0e* 0x0f 0x26
Node 0x17 [Pin Complex] wcaps 0x40058f: Stereo Amp-In Amp-Out
  Amp-In caps: ofs=0x00, nsteps=0x03, stepsize=0x27, mute=0
  Amp-In vals:  [0x00 0x00]
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x00 0x00]
  Pincap 0x00000036: IN OUT Detect Trigger
  Pin Default 0x411111f0: [N/A] Speaker at Ext Rear
    Conn = 1/8, Color = Black
    DefAssociation = 0xf, Sequence = 0x0
    Misc = NO_PRESENCE
  Pin-ctls: 0x40: OUT
  Unsolicited: tag=00, enabled=0
  Power: setting=D0, actual=D0
  Connection: 5
     0x0c 0x0d 0x0e 0x0f* 0x26
Node 0x18 [Pin Complex] wcaps 0x40058f: Stereo Amp-In Amp-Out
  Amp-In caps: ofs=0x00, nsteps=0x03, stepsize=0x27, mute=0
  Amp-In vals:  [0x00 0x00]
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x80 0x80]
  Pincap 0x0000373e: IN OUT HP Detect Trigger
    Vref caps: HIZ 50 GRD 80 100
  Pin Default 0x03a19c30: [Jack] Mic at Ext Left
    Conn = 1/8, Color = Pink
    DefAssociation = 0x3, Sequence = 0x0
  Pin-ctls: 0x24: IN VREF_80
  Unsolicited: tag=00, enabled=0
  Power: setting=D0, actual=D0
  Connection: 5
     0x0c* 0x0d 0x0e 0x0f 0x26
Node 0x19 [Pin Complex] wcaps 0x40058f: Stereo Amp-In Amp-Out
  Amp-In caps: ofs=0x00, nsteps=0x03, stepsize=0x27, mute=0
  Amp-In vals:  [0x00 0x00]
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x80 0x80]
  Pincap 0x0000373e: IN OUT HP Detect Trigger
    Vref caps: HIZ 50 GRD 80 100
  Pin Default 0x99a30931: [Fixed] Mic at Int ATAPI
    Conn = ATAPI, Color = Unknown
    DefAssociation = 0x3, Sequence = 0x1
    Misc = NO_PRESENCE
  Pin-ctls: 0x24: IN VREF_80
  Unsolicited: tag=00, enabled=0
  Power: setting=D0, actual=D0
  Connection: 5
     0x0c* 0x0d 0x0e 0x0f 0x26
Node 0x1a [Pin Complex] wcaps 0x40058f: Stereo Amp-In Amp-Out
  Amp-In caps: ofs=0x00, nsteps=0x03, stepsize=0x27, mute=0
  Amp-In vals:  [0x00 0x00]
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x80 0x80]
  Pincap 0x0000373e: IN OUT HP Detect Trigger
    Vref caps: HIZ 50 GRD 80 100
  Pin Default 0x0381343f: [Jack] Line In at Ext Left
    Conn = 1/8, Color = Blue
    DefAssociation = 0x3, Sequence = 0xf
  Pin-ctls: 0x20: IN VREF_HIZ
  Unsolicited: tag=00, enabled=0
  Power: setting=D0, actual=D0
  Connection: 5
     0x0c* 0x0d 0x0e 0x0f 0x26
Node 0x1b [Pin Complex] wcaps 0x40058f: Stereo Amp-In Amp-Out
  Amp-In caps: ofs=0x00, nsteps=0x03, stepsize=0x27, mute=0
  Amp-In vals:  [0x00 0x00]
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x00 0x00]
  Pincap 0x0000373e: IN OUT HP Detect Trigger
    Vref caps: HIZ 50 GRD 80 100
  Pin Default 0x411111f0: [N/A] Speaker at Ext Rear
    Conn = 1/8, Color = Black
    DefAssociation = 0xf, Sequence = 0x0
    Misc = NO_PRESENCE
  Pin-ctls: 0xc0: OUT HP VREF_HIZ
  Unsolicited: tag=00, enabled=0
  Power: setting=D0, actual=D0
  Connection: 5
     0x0c* 0x0d 0x0e 0x0f 0x26
Node 0x1c [Pin Complex] wcaps 0x400481: Stereo
  Pincap 0x00000024: IN Detect
  Pin Default 0x411111f0: [N/A] Speaker at Ext Rear
    Conn = 1/8, Color = Black
    DefAssociation = 0xf, Sequence = 0x0
    Misc = NO_PRESENCE
  Pin-ctls: 0x20: IN
  Unsolicited: tag=00, enabled=0
  Power: setting=D0, actual=D0
Node 0x1d [Pin Complex] wcaps 0x400400: Mono
  Pincap 0x00000020: IN
  Pin Default 0x4016852d: [N/A] Speaker at Ext N/A
    Conn = Digital, Color = Purple
    DefAssociation = 0x2, Sequence = 0xd
    Misc = NO_PRESENCE
  Pin-ctls: 0x20: IN
  Power: setting=D0, actual=D0
Node 0x1e [Pin Complex] wcaps 0x400780: Mono Digital
  Pincap 0x00000014: OUT Detect
  Pin Default 0x03451120: [Jack] SPDIF Out at Ext Left
    Conn = Optical, Color = Black
    DefAssociation = 0x2, Sequence = 0x0
    Misc = NO_PRESENCE
  Pin-ctls: 0x40: OUT
  Unsolicited: tag=00, enabled=0
  Power: setting=D0, actual=D0
  Connection: 1
     0x06
Node 0x1f [Pin Complex] wcaps 0x400680: Mono Digital
  Pincap 0x00000024: IN Detect
  Pin Default 0x411111f0: [N/A] Speaker at Ext Rear
    Conn = 1/8, Color = Black
    DefAssociation = 0xf, Sequence = 0x0
    Misc = NO_PRESENCE
  Pin-ctls: 0x20: IN
  Unsolicited: tag=00, enabled=0
  Power: setting=D0, actual=D0
Node 0x20 [Vendor Defined Widget] wcaps 0xf00040: Mono
  Processing caps: benign=0, ncoeff=25
Node 0x21 [Vendor Defined Widget] wcaps 0xf00000: Mono
Node 0x22 [Audio Mixer] wcaps 0x20010b: Stereo Amp-In
  Amp-In caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-In vals:  [0x00 0x00] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80]
  Connection: 12
     0x18 0x19 0x1a 0x1b 0x1c 0x1d 0x14 0x15 0x16 0x17 0x0b 0x12
Node 0x23 [Audio Mixer] wcaps 0x20010b: Stereo Amp-In
  Amp-In caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-In vals:  [0x00 0x00] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80]
  Connection: 11
     0x18 0x19 0x1a 0x1b 0x1c 0x1d 0x14 0x15 0x16 0x17 0x0b
Node 0x24 [Vendor Defined Widget] wcaps 0xf00000: Mono
Node 0x25 [Audio Output] wcaps 0x411: Stereo
  Converter: stream=0, channel=0
  PCM:
    rates [0x560]: 44100 48000 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
  Power: setting=D0, actual=D0
Node 0x26 [Audio Mixer] wcaps 0x20010f: Stereo Amp-In Amp-Out
  Amp-In caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-In vals:  [0x00 0x00] [0x80 0x80]
  Amp-Out caps: ofs=0x1f, nsteps=0x1f, stepsize=0x05, mute=0
  Amp-Out vals:  [0x00 0x00]
  Connection: 2
     0x25 0x0b

____________________________________________

/proc/asound/card0/codec#1
Codec: LSI ID 1040
Address: 1
Vendor Id: 0x11c11040
Subsystem Id: 0x11c10001
Revision Id: 0x100200
Modem Function Group: 0x1

____________________________________________

/proc/asound/card0/codec#2
Codec: Generic 10de ID 3
Address: 2
Vendor Id: 0x10de0003
Subsystem Id: 0x10de0101
Revision Id: 0x100000
No Modem Function Group found
Default PCM:
    rates [0x0]:
    bits [0x0]:
    formats [0x0]:
Default Amp-In caps: N/A
Default Amp-Out caps: N/A
GPIO: io=0, o=0, i=0, unsolicited=0, wake=0
Node 0x04 [Audio Output] wcaps 0x211: Stereo Digital
  Converter: stream=0, channel=0
  Digital:
  Digital category: 0x0
  PCM:
    rates [0xc0]: 48000 88200
    bits [0xf]: 8 16 20 24
    formats [0x1]: PCM
Node 0x05 [Pin Complex] wcaps 0x400381: Stereo Digital
  Pincap 0x00000014: OUT Detect
  Pin Default 0x18560110: [Jack] Digital Out at Int HDMI
    Conn = Digital, Color = Unknown
    DefAssociation = 0x1, Sequence = 0x0
    Misc = NO_PRESENCE
  Pin-ctls: 0x00:
  Unsolicited: tag=00, enabled=0
  Connection: 1
     0x04
Node 0x06 [Audio Output] wcaps 0x211: Stereo Digital
  Converter: stream=0, channel=0
  Digital:
  Digital category: 0x0
  PCM:
    rates [0xc0]: 48000 88200
    bits [0xf]: 8 16 20 24
    formats [0x1]: PCM
Node 0x07 [Pin Complex] wcaps 0x400381: Stereo Digital
  Pincap 0x00000014: OUT Detect
  Pin Default 0x58560121: [N/A] Digital Out at Int HDMI
    Conn = Digital, Color = Unknown
    DefAssociation = 0x2, Sequence = 0x1
    Misc = NO_PRESENCE
  Pin-ctls: 0x00:
  Unsolicited: tag=00, enabled=0
  Connection: 1
     0x06
Node 0x08 [Audio Output] wcaps 0x211: Stereo Digital
  Converter: stream=0, channel=0
  Digital:
  Digital category: 0x0
  PCM:
    rates [0xc0]: 48000 88200
    bits [0xf]: 8 16 20 24
    formats [0x1]: PCM
Node 0x09 [Pin Complex] wcaps 0x400381: Stereo Digital
  Pincap 0x00000014: OUT Detect
  Pin Default 0x58560122: [N/A] Digital Out at Int HDMI
    Conn = Digital, Color = Unknown
    DefAssociation = 0x2, Sequence = 0x2
    Misc = NO_PRESENCE
  Pin-ctls: 0x00:
  Unsolicited: tag=00, enabled=0
  Connection: 1
     0x08
Node 0x0a [Audio Output] wcaps 0x211: Stereo Digital
  Converter: stream=0, channel=0
  Digital:
  Digital category: 0x0
  PCM:
    rates [0xc0]: 48000 88200
    bits [0xf]: 8 16 20 24
    formats [0x1]: PCM
Node 0x0b [Pin Complex] wcaps 0x400381: Stereo Digital
  Pincap 0x00000014: OUT Detect
  Pin Default 0x58560123: [N/A] Digital Out at Int HDMI
    Conn = Digital, Color = Unknown
    DefAssociation = 0x2, Sequence = 0x3
    Misc = NO_PRESENCE
  Pin-ctls: 0x00:
  Unsolicited: tag=00, enabled=0
  Connection: 1
     0x0a
Node 0x0c [Audio Output] wcaps 0x211: Stereo Digital
  Converter: stream=0, channel=0
  Digital:
  Digital category: 0x0
  PCM:
    rates [0xc0]: 48000 88200
    bits [0xf]: 8 16 20 24
    formats [0x1]: PCM
Node 0x0d [Pin Complex] wcaps 0x400381: Stereo Digital
  Pincap 0x00000014: OUT Detect
  Pin Default 0x58560124: [N/A] Digital Out at Int HDMI
    Conn = Digital, Color = Unknown
    DefAssociation = 0x2, Sequence = 0x4
    Misc = NO_PRESENCE
  Pin-ctls: 0x00:
  Unsolicited: tag=00, enabled=0
  Connection: 1
     0x0c

____________________________________________

End of NVIDIA bug report log file.