[ create a new paste ] login | about

Link: http://codepad.org/lFXOIqDb    [ raw code | fork ]

Plain Text, pasted on Mar 9:
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
============ start debug info ============
libhd version 18.1u (x86-64)
using /var/lib/hardware
kernel version is 2.6
----- /proc/cmdline -----
  root=/dev/disk/by-uuid/f29ea639-aaba-4e45-a65f-3a2042d72a50 ro vga=795
----- /proc/cmdline end -----
debug = 0xff7ffff7
probe = 0x1d938fcdaa17fcf9fffe (+memory +pci +isapnp +net +floppy +misc +misc.serial +misc.par +misc.floppy +serial +cpu +bios +monitor +mouse +scsi +usb -usb.mods +modem +modem.usb +parallel +parallel.lp +parallel.zip -isa -isa.isdn +isdn +kbd +prom +sbus +int +braille +braille.alva +braille.fhp +braille.ht -ignx11 +sys -bios.vbe -isapnp.old -isapnp.new -isapnp.mod +braille.baum -manual +fb +pppoe -scan +pcmcia +fork -parallel.imm +s390 +cpuemu -sysfs -s390disks +udev +block +block.cdrom +block.part +edd +edd.mod -bios.ddc -bios.fb -bios.mode +input +block.mods +bios.vesa -cpuemu.debug -scsi.noserial +wlan -bios.crc -hal +bios.vram +bios.acpi -bios.ddc.ports=0 +modules.pata +net.eeprom +x86emu=dump -max -lxrc)
shm: attached segment 110395398 at 0x7f678cd7c000
>> hal.1: read hal data
>> floppy.1: get nvram
----- /proc/nvram -----
  Checksum status: valid
  # floppies     : 1
  Floppy 0 type  : none
  Floppy 1 type  : none
  HD 0 type      : 01
  HD 1 type      : none
  HD type 48 data: 512/0/0 C/H/S, precomp 0, lz 256
  HD type 49 data: 1/252/0 C/H/S, precomp 0, lz 0
  DOS base memory: 640 kB
  Extended memory: 64512 kB (configured), 64512 kB (tested)
  Gfx adapter    : EGA, VGA, ... (with BIOS)
  FPU            : installed
----- /proc/nvram end -----
>> floppy.2: nvram info
>> bios.1: cmdline
>> bios.1.1: apm
>> bios.2: ram
  bios: 0 disks
>> bios.2: rom
>> bios.3: smp
----- BIOS data 0x00400 - 0x004ff -----
  400  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  410  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  420  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  430  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  440  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  450  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  460  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  470  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  480  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  490  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  4a0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  4b0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  4c0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  4d0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  4e0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  4f0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"
----- BIOS data end -----
>> bios.4: vbe
>> bios.4.1: vbe info
=== bios setup ===
failed to read /dev/mem
x86emu: could not init vm
>> bios.5: 32
>> bios.6: acpi
>> sys.1: cpu
  vm check: vm_1 = 0, vm_2 = -1
  is_vmware = 0, has_vmware_mouse = 0
>> misc.9: kernel log
>> misc.1: misc data
>> misc.1.1: open serial
>> misc.1.2: open parallel
----- exec: "/sbin/modprobe parport " -----
  FATAL: Error inserting parport (/lib/modules/2.6.37-ARCH/kernel/drivers/parport/parport.ko.gz): Operation not permitted
----- return code: ? -----
----- exec: "/sbin/modprobe parport_pc " -----
  FATAL: Error inserting parport_pc (/lib/modules/2.6.37-ARCH/kernel/drivers/parport/parport_pc.ko.gz): Operation not permitted
----- return code: ? -----
>> misc.2.1: io
>> misc.2.2: dma
>> misc.2.3: irq
----- /proc/ioports -----
  0000-0cf7 : PCI Bus 0000:00
    0000-001f : dma1
    0020-0021 : pic1
    0040-0043 : timer0
    0050-0053 : timer1
    0060-0060 : keyboard
    0062-0062 : EC data
    0064-0064 : keyboard
    0066-0066 : EC cmd
    0070-0071 : rtc0
    0080-008f : dma page reg
    00a0-00a1 : pic2
    00c0-00df : dma2
    00f0-00ff : fpu
    03c0-03df : vesafb
    0800-080f : pnp 00:03
  0cf8-0cff : PCI conf1
  0d00-ffff : PCI Bus 0000:00
    1000-107f : pnp 00:03
      1000-1003 : ACPI PM1a_EVT_BLK
      1004-1005 : ACPI PM1a_CNT_BLK
      1008-100b : ACPI PM_TMR
      1010-1015 : ACPI CPU throttle
      1020-102f : ACPI GPE0_BLK
      1030-1033 : iTCO_wdt
      1050-1050 : ACPI PM2_CNT_BLK
      1060-107f : iTCO_wdt
    1180-11ff : pnp 00:03
    15e0-15ef : pnp 00:03
    1600-1641 : pnp 00:03
    164e-164f : pnp 00:03
    1800-1807 : 0000:00:16.3
      1800-1807 : serial
    1808-180b : 0000:00:1f.2
      1808-180b : ahci
    180c-180f : 0000:00:1f.2
      180c-180f : ahci
    1810-1817 : 0000:00:1f.2
      1810-1817 : ahci
    1818-181f : 0000:00:1f.2
      1818-181f : ahci
    1820-183f : 0000:00:19.0
    1840-185f : 0000:00:1f.2
      1840-185f : ahci
    1860-187f : 0000:00:1f.3
      1860-187f : i801_smbus
    2000-2fff : PCI Bus 0000:01
      2000-207f : 0000:01:00.0
    3000-3fff : PCI Bus 0000:05
----- /proc/ioports end -----
----- /proc/interrupts -----
     0:        435        339        312        355   IO-APIC-edge      timer
     1:      14124      14197      14347      14151   IO-APIC-edge      i8042
     8:       1118       1170       1073       1167   IO-APIC-edge      rtc0
     9:     208192     209011     208084     207962   IO-APIC-fasteoi   acpi
    12:    2731763    2733882    2733865    2733246   IO-APIC-edge      i8042
    16:     826754     814030     820009     828873   IO-APIC-fasteoi   mmc0, nvidia
    17:          0          1          0          0   IO-APIC-fasteoi 
    19:     607077     607007     607075     607091   IO-APIC-fasteoi   ips, ehci_hcd:usb2
    23:        120        129        120        122   IO-APIC-fasteoi   ehci_hcd:usb1
    40:    1010127    1011134    1011187    1011396   PCI-MSI-edge      ahci
    42:       1638       1695       1583       1608   PCI-MSI-edge      firewire_ohci
    43:    5768200    5871604    5711494    5807687   PCI-MSI-edge      iwlagn
    44:    4179988    4190530    4185299    4176346   PCI-MSI-edge      hda_intel
    45:          0          0          0          1   PCI-MSI-edge      hda_intel
   NMI:       2853      10683       6894       6592   Non-maskable interrupts
   LOC:   51688426   35937487   44577726   49301921   Local timer interrupts
   SPU:          0          0          0          0   Spurious interrupts
   PMI:       2853      10683       6894       6592   Performance monitoring interrupts
   IWI:          0          0          0          0   IRQ work interrupts
   RES:     267993     324189     283741     254538   Rescheduling interrupts
   CAL:      32098      26520      86900      98120   Function call interrupts
   TLB:     848394     749105     639810     686176   TLB shootdowns
   TRM:          0          0          0          0   Thermal event interrupts
   THR:          0          0          0          0   Threshold APIC interrupts
   MCE:          0          0          0          0   Machine check exceptions
   MCP:       1393       1393       1393       1393   Machine check polls
   ERR:          3
   MIS:          0
----- /proc/interrupts end -----
----- /proc/dma -----
   4: cascade
----- /proc/dma end -----
>> misc.3: FPU
>> misc.3.1: DMA
>> misc.3.2: PIC
>> misc.3.3: timer
>> misc.3.4: RTC
>> cpu.1: cpuinfo
----- /proc/cpuinfo -----
  processor	: 0
  vendor_id	: GenuineIntel
  cpu family	: 6
  model		: 37
  model name	: Intel(R) Core(TM) i7 CPU       M 620  @ 2.67GHz
  stepping	: 2
  cpu MHz		: 2660.279
  cache size	: 4096 KB
  physical id	: 0
  siblings	: 4
  core id		: 0
  cpu cores	: 2
  apicid		: 0
  initial apicid	: 0
  fpu		: yes
  fpu_exception	: yes
  cpuid level	: 11
  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 rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 popcnt aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid
  bogomips	: 5322.24
  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		: 37
  model name	: Intel(R) Core(TM) i7 CPU       M 620  @ 2.67GHz
  stepping	: 2
  cpu MHz		: 2660.279
  cache size	: 4096 KB
  physical id	: 0
  siblings	: 4
  core id		: 0
  cpu cores	: 2
  apicid		: 1
  initial apicid	: 1
  fpu		: yes
  fpu_exception	: yes
  cpuid level	: 11
  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 rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 popcnt aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid
  bogomips	: 5322.62
  clflush size	: 64
  cache_alignment	: 64
  address sizes	: 36 bits physical, 48 bits virtual
  power management:
  
  processor	: 2
  vendor_id	: GenuineIntel
  cpu family	: 6
  model		: 37
  model name	: Intel(R) Core(TM) i7 CPU       M 620  @ 2.67GHz
  stepping	: 2
  cpu MHz		: 2660.279
  cache size	: 4096 KB
  physical id	: 0
  siblings	: 4
  core id		: 2
  cpu cores	: 2
  apicid		: 4
  initial apicid	: 4
  fpu		: yes
  fpu_exception	: yes
  cpuid level	: 11
  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 rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 popcnt aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid
  bogomips	: 5322.63
  clflush size	: 64
  cache_alignment	: 64
  address sizes	: 36 bits physical, 48 bits virtual
  power management:
  
  processor	: 3
  vendor_id	: GenuineIntel
  cpu family	: 6
  model		: 37
  model name	: Intel(R) Core(TM) i7 CPU       M 620  @ 2.67GHz
  stepping	: 2
  cpu MHz		: 2660.279
  cache size	: 4096 KB
  physical id	: 0
  siblings	: 4
  core id		: 2
  cpu cores	: 2
  apicid		: 5
  initial apicid	: 5
  fpu		: yes
  fpu_exception	: yes
  cpuid level	: 11
  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 rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 popcnt aes lahf_lm ida arat dts tpr_shadow vnmi flexpriority ept vpid
  bogomips	: 5322.63
  clflush size	: 64
  cache_alignment	: 64
  address sizes	: 36 bits physical, 48 bits virtual
  power management:
  
----- /proc/cpuinfo end -----
>> memory.1: main memory size
  kcore mem:  0x7fffffe00000
  klog mem 0: 0x0
  klog mem 1: 0x0
  klog mem:   0x0
  bios mem:   0x0
  meminfo:    0x1eaf13000
>> pci.1: sysfs drivers
----- sysfs driver list (id 0x7f6c41fa071edc06) -----
          vesafb: /devices/platform/vesafb.0
      serial8250: /devices/platform/serial8250
           i8042: /devices/platform/i8042
         vboxdrv: /devices/platform/vboxdrv.0
          pcspkr: /devices/platform/pcspkr
          pcspkr: module = pcspkr
        iTCO_wdt: module = iTCO_wdt
        iTCO_wdt: /devices/platform/iTCO_wdt
   thinkpad_acpi: module = thinkpad_acpi
   thinkpad_acpi: /devices/platform/thinkpad_acpi
  thinkpad_hwmon: module = thinkpad_acpi
  thinkpad_hwmon: /devices/platform/thinkpad_hwmon
          serial: /devices/pci0000:00/0000:00:16.3
            ahci: /devices/pci0000:00/0000:00:1f.2
            ahci: module = ahci
      i801_smbus: /devices/pci0000:00/0000:00:1f.3
      i801_smbus: module = i2c_i801
   agpgart-intel: module = intel_agp
          shpchp: module = shpchp
       intel ips: /devices/pci0000:00/0000:00:1f.6
       intel ips: module = intel_ips
          e1000e: /devices/pci0000:00/0000:00:19.0
          e1000e: module = e1000e
        ehci_hcd: /devices/pci0000:00/0000:00:1a.0
        ehci_hcd: /devices/pci0000:00/0000:00:1d.0
        ehci_hcd: module = ehci_hcd
       sdhci-pci: /devices/pci0000:00/0000:00:1c.4/0000:0d:00.0
       sdhci-pci: module = sdhci_pci
   firewire_ohci: /devices/pci0000:00/0000:00:1c.4/0000:0d:00.3
   firewire_ohci: module = firewire_ohci
          iwlagn: /devices/pci0000:00/0000:00:1c.1/0000:03:00.0
          iwlagn: module = iwlagn
       HDA Intel: /devices/pci0000:00/0000:00:1b.0
       HDA Intel: /devices/pci0000:00/0000:00:01.0/0000:01:00.1
       HDA Intel: module = snd_hda_intel
          nvidia: /devices/pci0000:00/0000:00:01.0/0000:01:00.0
          nvidia: module = nvidia
              ec: /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0a/PNP0C09:00
           power: /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0a/PNP0C09:00/LNXPOWER:00
        pci_root: /devices/LNXSYSTM:00/device:00/PNP0A03:00
        pci_root: /devices/LNXSYSTM:00/device:00/PNP0A08:00
        pci_link: /devices/LNXSYSTM:00/device:00/PNP0C0F:00
        pci_link: /devices/LNXSYSTM:00/device:00/PNP0C0F:01
        pci_link: /devices/LNXSYSTM:00/device:00/PNP0C0F:02
        pci_link: /devices/LNXSYSTM:00/device:00/PNP0C0F:03
        pci_link: /devices/LNXSYSTM:00/device:00/PNP0C0F:04
        pci_link: /devices/LNXSYSTM:00/device:00/PNP0C0F:05
        pci_link: /devices/LNXSYSTM:00/device:00/PNP0C0F:06
        pci_link: /devices/LNXSYSTM:00/device:00/PNP0C0F:07
         thermal: /devices/LNXSYSTM:00/device:38/LNXTHERM:00
         battery: /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0a/PNP0C09:00/PNP0C0A:00
              ac: /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0a/PNP0C09:00/ACPI0003:00
          button: /devices/LNXSYSTM:00/device:00/PNP0C0D:00
          button: /devices/LNXSYSTM:00/device:00/PNP0C0E:00
          button: /devices/LNXSYSTM:00/LNXPWRBN:00
       processor: /devices/LNXSYSTM:00/LNXCPU:00
       processor: /devices/LNXSYSTM:00/LNXCPU:01
       processor: /devices/LNXSYSTM:00/LNXCPU:02
       processor: /devices/LNXSYSTM:00/LNXCPU:03
       processor: /devices/LNXSYSTM:00/LNXCPU:04
       processor: /devices/LNXSYSTM:00/LNXCPU:05
       processor: /devices/LNXSYSTM:00/LNXCPU:06
       processor: /devices/LNXSYSTM:00/LNXCPU:07
             wmi: /devices/LNXSYSTM:00/device:00/PNP0A08:00/PNP0C14:00
             wmi: /devices/LNXSYSTM:00/device:00/PNP0C14:01
           video: /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0b/LNXVIDEO:01
 thinkpad_hotkey: /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0a/PNP0C09:00/IBM0068:00
NVIDIA ACPI Video Driver: /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00
          system: /devices/pnp0/00:00
          system: /devices/pnp0/00:03
       i8042 kbd: /devices/pnp0/00:09
       i8042 aux: /devices/pnp0/00:0a
        rtc_cmos: /devices/pnp0/00:08
         tpm_tis: /devices/pnp0/00:0b
           atkbd: /devices/platform/i8042/serio0
       serio_raw: module = serio_raw
         psmouse: module = psmouse
         psmouse: /devices/platform/i8042/serio1
         psmouse: /devices/platform/i8042/serio1/serio2
              sd: /devices/pci0000:00/0000:00:1f.2/host0/target0:0:0/0:0:0:0
              sr: /devices/pci0000:00/0000:00:1f.2/host1/target1:0:0/1:0:0:0
           dummy: module = i2c_core
           usbfs: module = usbcore
             hub: module = usbcore
             hub: /devices/pci0000:00/0000:00:1a.0/usb1/1-0:1.0
             hub: /devices/pci0000:00/0000:00:1d.0/usb2/2-0:1.0
             hub: /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1:1.0
             hub: /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0
             usb: module = usbcore
             usb: /devices/pci0000:00/0000:00:1a.0/usb1
             usb: /devices/pci0000:00/0000:00:1d.0/usb2
             usb: /devices/pci0000:00/0000:00:1a.0/usb1/1-1
             usb: /devices/pci0000:00/0000:00:1d.0/usb2/2-1
             usb: /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3
             usb: /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4
             usb: /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6
             usb: /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5
           btusb: /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0
           btusb: /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.1
           btusb: module = btusb
        uvcvideo: /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0
        uvcvideo: /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.1
        uvcvideo: module = uvcvideo
   snd-usb-audio: module = snd_usb_audio
             uas: module = uas
     usb-storage: module = usb_storage
----- sysfs driver list end -----
>> pci.2: get sysfs pci data
  pci device: name = 0000:ff:00.0
    path = /devices/pci0000:ff/0000:ff:00.0
    modalias = "pci:v00008086d00002C62sv000017AAsd00002196bc06sc00i00"
    class = 0x60000
    vendor = 0x8086
    device = 0x2c62
    subvendor = 0x17aa
    subdevice = 0x2196
    irq = 0
    config[64]
  pci device: name = 0000:ff:00.1
    path = /devices/pci0000:ff/0000:ff:00.1
    modalias = "pci:v00008086d00002D01sv000017AAsd00002196bc06sc00i00"
    class = 0x60000
    vendor = 0x8086
    device = 0x2d01
    subvendor = 0x17aa
    subdevice = 0x2196
    irq = 0
    config[64]
  pci device: name = 0000:ff:02.0
    path = /devices/pci0000:ff/0000:ff:02.0
    modalias = "pci:v00008086d00002D10sv000017AAsd00002196bc06sc00i00"
    class = 0x60000
    vendor = 0x8086
    device = 0x2d10
    subvendor = 0x17aa
    subdevice = 0x2196
    irq = 0
    config[64]
  pci device: name = 0000:ff:02.1
    path = /devices/pci0000:ff/0000:ff:02.1
    modalias = "pci:v00008086d00002D11sv000017AAsd00002196bc06sc00i00"
    class = 0x60000
    vendor = 0x8086
    device = 0x2d11
    subvendor = 0x17aa
    subdevice = 0x2196
    irq = 0
    config[64]
  pci device: name = 0000:ff:02.2
    path = /devices/pci0000:ff/0000:ff:02.2
    modalias = "pci:v00008086d00002D12sv000017AAsd00002196bc06sc00i00"
    class = 0x60000
    vendor = 0x8086
    device = 0x2d12
    subvendor = 0x17aa
    subdevice = 0x2196
    irq = 0
    config[64]
  pci device: name = 0000:ff:02.3
    path = /devices/pci0000:ff/0000:ff:02.3
    modalias = "pci:v00008086d00002D13sv000017AAsd00002196bc06sc00i00"
    class = 0x60000
    vendor = 0x8086
    device = 0x2d13
    subvendor = 0x17aa
    subdevice = 0x2196
    irq = 0
    config[64]
  pci device: name = 0000:00:00.0
    path = /devices/pci0000:00/0000:00:00.0
    modalias = "pci:v00008086d00000044sv000017AAsd00002193bc06sc00i00"
    class = 0x60000
    vendor = 0x8086
    device = 0x44
    subvendor = 0x17aa
    subdevice = 0x2193
    irq = 0
    config[64]
  pci device: name = 0000:00:01.0
    path = /devices/pci0000:00/0000:00:01.0
    modalias = "pci:v00008086d00000045sv000017AAsd00002194bc06sc04i00"
    class = 0x60400
    vendor = 0x8086
    device = 0x45
    subvendor = 0x17aa
    subdevice = 0x2194
    irq = 16
    config[64]
  pci device: name = 0000:00:16.0
    path = /devices/pci0000:00/0000:00:16.0
    modalias = "pci:v00008086d00003B64sv000017AAsd0000215Fbc07sc80i00"
    class = 0x78000
    vendor = 0x8086
    device = 0x3b64
    subvendor = 0x17aa
    subdevice = 0x215f
    irq = 11
    res[0] = 0xf2427800 0xf242780f 0x140204
    config[64]
  pci device: name = 0000:00:16.3
    path = /devices/pci0000:00/0000:00:16.3
    modalias = "pci:v00008086d00003B67sv000017AAsd00002162bc07sc00i02"
    class = 0x70002
    vendor = 0x8086
    device = 0x3b67
    subvendor = 0x17aa
    subdevice = 0x2162
    irq = 17
    res[0] = 0x1800 0x1807 0x40101
    res[1] = 0xf2424000 0xf2424fff 0x40200
    config[64]
  pci device: name = 0000:00:19.0
    path = /devices/pci0000:00/0000:00:19.0
    modalias = "pci:v00008086d000010EAsv000017AAsd00002153bc02sc00i00"
    class = 0x20000
    vendor = 0x8086
    device = 0x10ea
    subvendor = 0x17aa
    subdevice = 0x2153
    irq = 41
    res[0] = 0xf2400000 0xf241ffff 0x40200
    res[1] = 0xf2425000 0xf2425fff 0x40200
    res[2] = 0x1820 0x183f 0x40101
    config[64]
  pci device: name = 0000:00:1a.0
    path = /devices/pci0000:00/0000:00:1a.0
    modalias = "pci:v00008086d00003B3Csv000017AAsd00002163bc0Csc03i20"
    class = 0xc0320
    vendor = 0x8086
    device = 0x3b3c
    subvendor = 0x17aa
    subdevice = 0x2163
    irq = 23
    res[0] = 0xf2428000 0xf24283ff 0x40200
    config[64]
  pci device: name = 0000:00:1b.0
    path = /devices/pci0000:00/0000:00:1b.0
    modalias = "pci:v00008086d00003B56sv000017AAsd0000215Ebc04sc03i00"
    class = 0x40300
    vendor = 0x8086
    device = 0x3b56
    subvendor = 0x17aa
    subdevice = 0x215e
    irq = 44
    res[0] = 0xf2420000 0xf2423fff 0x140204
    config[64]
  pci device: name = 0000:00:1c.0
    path = /devices/pci0000:00/0000:00:1c.0
    modalias = "pci:v00008086d00003B42sv000017AAsd00002164bc06sc04i00"
    class = 0x60400
    vendor = 0x8086
    device = 0x3b42
    subvendor = 0x17aa
    subdevice = 0x2164
    irq = 20
    config[64]
  pci device: name = 0000:00:1c.1
    path = /devices/pci0000:00/0000:00:1c.1
    modalias = "pci:v00008086d00003B44sv000017AAsd00002164bc06sc04i00"
    class = 0x60400
    vendor = 0x8086
    device = 0x3b44
    subvendor = 0x17aa
    subdevice = 0x2164
    irq = 21
    config[64]
  pci device: name = 0000:00:1c.3
    path = /devices/pci0000:00/0000:00:1c.3
    modalias = "pci:v00008086d00003B48sv000017AAsd00002164bc06sc04i00"
    class = 0x60400
    vendor = 0x8086
    device = 0x3b48
    subvendor = 0x17aa
    subdevice = 0x2164
    irq = 23
    config[64]
  pci device: name = 0000:00:1c.4
    path = /devices/pci0000:00/0000:00:1c.4
    modalias = "pci:v00008086d00003B4Asv000017AAsd00002164bc06sc04i00"
    class = 0x60400
    vendor = 0x8086
    device = 0x3b4a
    subvendor = 0x17aa
    subdevice = 0x2164
    irq = 20
    config[64]
  pci device: name = 0000:00:1d.0
    path = /devices/pci0000:00/0000:00:1d.0
    modalias = "pci:v00008086d00003B34sv000017AAsd00002163bc0Csc03i20"
    class = 0xc0320
    vendor = 0x8086
    device = 0x3b34
    subvendor = 0x17aa
    subdevice = 0x2163
    irq = 19
    res[0] = 0xf2428400 0xf24287ff 0x40200
    config[64]
  pci device: name = 0000:00:1e.0
    path = /devices/pci0000:00/0000:00:1e.0
    modalias = "pci:v00008086d00002448sv000017AAsd00002165bc06sc04i01"
    class = 0x60401
    vendor = 0x8086
    device = 0x2448
    subvendor = 0x17aa
    subdevice = 0x2165
    irq = 0
    config[64]
  pci device: name = 0000:00:1f.0
    path = /devices/pci0000:00/0000:00:1f.0
    modalias = "pci:v00008086d00003B07sv000017AAsd00002166bc06sc01i00"
    class = 0x60100
    vendor = 0x8086
    device = 0x3b07
    subvendor = 0x17aa
    subdevice = 0x2166
    irq = 0
    config[64]
  pci device: name = 0000:00:1f.2
    path = /devices/pci0000:00/0000:00:1f.2
    modalias = "pci:v00008086d00003B2Fsv000017AAsd00002168bc01sc06i01"
    class = 0x10601
    vendor = 0x8086
    device = 0x3b2f
    subvendor = 0x17aa
    subdevice = 0x2168
    irq = 40
    res[0] = 0x1818 0x181f 0x40101
    res[1] = 0x180c 0x180f 0x40101
    res[2] = 0x1810 0x1817 0x40101
    res[3] = 0x1808 0x180b 0x40101
    res[4] = 0x1840 0x185f 0x40101
    res[5] = 0xf2427000 0xf24277ff 0x40200
    config[64]
  pci device: name = 0000:00:1f.3
    path = /devices/pci0000:00/0000:00:1f.3
    modalias = "pci:v00008086d00003B30sv000017AAsd00002167bc0Csc05i00"
    class = 0xc0500
    vendor = 0x8086
    device = 0x3b30
    subvendor = 0x17aa
    subdevice = 0x2167
    irq = 23
    res[0] = 0xf2428800 0xf24288ff 0x140204
    res[4] = 0x1860 0x187f 0x40101
    config[64]
  pci device: name = 0000:00:1f.6
    path = /devices/pci0000:00/0000:00:1f.6
    modalias = "pci:v00008086d00003B32sv000017AAsd00002190bc11sc80i00"
    class = 0x118000
    vendor = 0x8086
    device = 0x3b32
    subvendor = 0x17aa
    subdevice = 0x2190
    irq = 19
    res[0] = 0xf2426000 0xf2426fff 0x140204
    config[64]
  pci device: name = 0000:01:00.0
    path = /devices/pci0000:00/0000:00:01.0/0000:01:00.0
    modalias = "pci:v000010DEd00000A6Csv000017AAsd00002142bc03sc00i00"
    class = 0x30000
    vendor = 0x10de
    device = 0xa6c
    subvendor = 0x17aa
    subdevice = 0x2142
    irq = 16
    res[0] = 0xcc000000 0xccffffff 0x40200
    res[1] = 0xd0000000 0xdfffffff 0x14220c
    res[3] = 0xce000000 0xcfffffff 0x14220c
    res[5] = 0x2000 0x207f 0x40101
    res[6] = 0xcd000000 0xcd07ffff 0x4e202
    config[64]
  pci device: name = 0000:01:00.1
    path = /devices/pci0000:00/0000:00:01.0/0000:01:00.1
    modalias = "pci:v000010DEd00000BE3sv000017AAsd0000218Fbc04sc03i00"
    class = 0x40300
    vendor = 0x10de
    device = 0xbe3
    subvendor = 0x17aa
    subdevice = 0x218f
    irq = 45
    res[0] = 0xcdefc000 0xcdefffff 0x40200
    config[64]
  pci device: name = 0000:03:00.0
    path = /devices/pci0000:00/0000:00:1c.1/0000:03:00.0
    modalias = "pci:v00008086d00004238sv00008086sd00001111bc02sc80i00"
    class = 0x28000
    vendor = 0x8086
    device = 0x4238
    subvendor = 0x8086
    subdevice = 0x1111
    irq = 43
    res[0] = 0xf2000000 0xf2001fff 0x140204
    config[64]
  pci device: name = 0000:0d:00.0
    path = /devices/pci0000:00/0000:00:1c.4/0000:0d:00.0
    modalias = "pci:v00001180d0000E822sv000017AAsd00002133bc08sc05i00"
    class = 0x80500
    vendor = 0x1180
    device = 0xe822
    subvendor = 0x17aa
    subdevice = 0x2133
    irq = 16
    res[0] = 0xf2100000 0xf21000ff 0x40200
    config[64]
  pci device: name = 0000:0d:00.1
    path = /devices/pci0000:00/0000:00:1c.4/0000:0d:00.1
    modalias = "pci:v00001180d0000E230sv000017AAsd00002134bc08sc80i00"
    class = 0x88000
    vendor = 0x1180
    device = 0xe230
    subvendor = 0x17aa
    subdevice = 0x2134
    irq = 11
    res[0] = 0xf2100400 0xf21004ff 0x40200
    config[64]
  pci device: name = 0000:0d:00.3
    path = /devices/pci0000:00/0000:00:1c.4/0000:0d:00.3
    modalias = "pci:v00001180d0000E832sv000017AAsd00002136bc0Csc00i10"
    class = 0xc0010
    vendor = 0x1180
    device = 0xe832
    subvendor = 0x17aa
    subdevice = 0x2136
    irq = 42
    res[0] = 0xf2100800 0xf2100fff 0x40200
    config[64]
---------- PCI raw data ----------
bus ff, slot 00, func 0, vend:dev:s_vend:s_dev:rev 8086:2c62:17aa:2196:02
class 06, sub_class 00 prog_if 00, hdr 0, flags <>, irq 0
  00: 86 80 62 2c 06 00 00 00 02 00 00 06 00 00 80 00  "..b,............"
  10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 96 21  "...............!"
  30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"

bus ff, slot 00, func 1, vend:dev:s_vend:s_dev:rev 8086:2d01:17aa:2196:02
class 06, sub_class 00 prog_if 00, hdr 0, flags <>, irq 0
  00: 86 80 01 2d 06 00 00 00 02 00 00 06 00 00 80 00  "...-............"
  10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 96 21  "...............!"
  30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"

bus ff, slot 02, func 0, vend:dev:s_vend:s_dev:rev 8086:2d10:17aa:2196:02
class 06, sub_class 00 prog_if 00, hdr 0, flags <>, irq 0
  00: 86 80 10 2d 06 00 00 00 02 00 00 06 00 00 80 00  "...-............"
  10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 96 21  "...............!"
  30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"

bus ff, slot 02, func 1, vend:dev:s_vend:s_dev:rev 8086:2d11:17aa:2196:02
class 06, sub_class 00 prog_if 00, hdr 0, flags <>, irq 0
  00: 86 80 11 2d 06 00 00 00 02 00 00 06 00 00 80 00  "...-............"
  10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 96 21  "...............!"
  30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"

bus ff, slot 02, func 2, vend:dev:s_vend:s_dev:rev 8086:2d12:17aa:2196:02
class 06, sub_class 00 prog_if 00, hdr 0, flags <>, irq 0
  00: 86 80 12 2d 06 00 00 00 02 00 00 06 00 00 80 00  "...-............"
  10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 96 21  "...............!"
  30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"

bus ff, slot 02, func 3, vend:dev:s_vend:s_dev:rev 8086:2d13:17aa:2196:02
class 06, sub_class 00 prog_if 00, hdr 0, flags <>, irq 0
  00: 86 80 13 2d 06 00 00 00 02 00 00 06 00 00 80 00  "...-............"
  10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 96 21  "...............!"
  30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"

bus 00, slot 00, func 0, vend:dev:s_vend:s_dev:rev 8086:0044:17aa:2193:02
class 06, sub_class 00 prog_if 00, hdr 0, flags <>, irq 0
  00: 86 80 44 00 06 00 90 20 02 00 00 06 00 00 00 00  "..D.... ........"
  10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 93 21  "...............!"
  30: 00 00 00 00 e0 00 00 00 00 00 00 00 00 00 00 00  "................"

bus 00->01, slot 01, func 0, vend:dev:s_vend:s_dev:rev 8086:0045:17aa:2194:02
class 06, sub_class 04 prog_if 00, hdr 1, flags <>, irq 16
  00: 86 80 45 00 07 01 10 00 02 00 04 06 10 00 01 00  "..E............."
  10: 00 00 00 00 00 00 00 00 00 01 01 00 20 20 00 20  "............  . "
  20: 00 cc e0 cd 01 ce f1 df 00 00 00 00 00 00 00 00  "................"
  30: 00 00 00 00 88 00 00 00 00 00 00 00 0b 01 1a 00  "................"

bus 00, slot 16, func 0, vend:dev:s_vend:s_dev:rev 8086:3b64:17aa:215f:06
class 07, sub_class 80 prog_if 00, hdr 0, flags <>, irq 11
  addr0 f2427800, size 00000010
  00: 86 80 64 3b 06 00 18 00 06 00 80 07 00 00 80 00  "..d;............"
  10: 04 78 42 f2 00 00 00 00 00 00 00 00 00 00 00 00  ".xB............."
  20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 5f 21  ".............._!"
  30: 00 00 00 00 50 00 00 00 00 00 00 00 0b 01 00 00  "....P..........."

bus 00, slot 16, func 3, vend:dev:s_vend:s_dev:rev 8086:3b67:17aa:2162:06
class 07, sub_class 00 prog_if 02, hdr 0, flags <>, irq 17
  addr0 00001800, size 00000008
  addr1 f2424000, size 00001000
  00: 86 80 67 3b 03 00 b0 00 06 02 00 07 00 00 00 00  "..g;............"
  10: 01 18 00 00 00 40 42 f2 00 00 00 00 00 00 00 00  ".....@B........."
  20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 62 21  "..............b!"
  30: 00 00 00 00 c8 00 00 00 00 00 00 00 0b 02 00 00  "................"

bus 00, slot 19, func 0, vend:dev:s_vend:s_dev:rev 8086:10ea:17aa:2153:06
class 02, sub_class 00 prog_if 00, hdr 0, flags <>, irq 41
  addr0 f2400000, size 00020000
  addr1 f2425000, size 00001000
  addr2 00001820, size 00000020
  00: 86 80 ea 10 07 05 10 00 06 00 00 02 00 00 00 00  "................"
  10: 00 00 40 f2 00 50 42 f2 21 18 00 00 00 00 00 00  "..@..PB.!......."
  20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 53 21  "..............S!"
  30: 00 00 00 00 c8 00 00 00 00 00 00 00 0b 01 00 00  "................"

bus 00, slot 1a, func 0, vend:dev:s_vend:s_dev:rev 8086:3b3c:17aa:2163:06
class 0c, sub_class 03 prog_if 20, hdr 0, flags <>, irq 23
  addr0 f2428000, size 00000400
  00: 86 80 3c 3b 06 01 90 02 06 20 03 0c 00 00 00 00  "..<;..... ......"
  10: 00 80 42 f2 00 00 00 00 00 00 00 00 00 00 00 00  "..B............."
  20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 63 21  "..............c!"
  30: 00 00 00 00 50 00 00 00 00 00 00 00 0b 04 00 00  "....P..........."

bus 00, slot 1b, func 0, vend:dev:s_vend:s_dev:rev 8086:3b56:17aa:215e:06
class 04, sub_class 03 prog_if 00, hdr 0, flags <>, irq 44
  addr0 f2420000, size 00004000
  00: 86 80 56 3b 06 05 10 00 06 00 03 04 10 00 00 00  "..V;............"
  10: 04 00 42 f2 00 00 00 00 00 00 00 00 00 00 00 00  "..B............."
  20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 5e 21  "..............^!"
  30: 00 00 00 00 50 00 00 00 00 00 00 00 0b 02 00 00  "....P..........."

bus 00->02, slot 1c, func 0, vend:dev:s_vend:s_dev:rev 8086:3b42:17aa:2164:06
class 06, sub_class 04 prog_if 00, hdr 1, flags <>, irq 20
  00: 86 80 42 3b 07 01 10 00 06 00 04 06 10 00 81 00  "..B;............"
  10: 00 00 00 00 00 00 00 00 00 02 02 00 f0 00 00 20  "............... "
  20: f0 ff 00 00 f1 ff 01 00 00 00 00 00 00 00 00 00  "................"
  30: 00 00 00 00 40 00 00 00 00 00 00 00 0b 01 04 00  "....@..........."

bus 00->03, slot 1c, func 1, vend:dev:s_vend:s_dev:rev 8086:3b44:17aa:2164:06
class 06, sub_class 04 prog_if 00, hdr 1, flags <>, irq 21
  00: 86 80 44 3b 07 01 10 00 06 00 04 06 10 00 81 00  "..D;............"
  10: 00 00 00 00 00 00 00 00 00 03 03 00 f0 00 00 20  "............... "
  20: 00 f2 00 f2 f1 ff 01 00 00 00 00 00 00 00 00 00  "................"
  30: 00 00 00 00 40 00 00 00 00 00 00 00 0b 02 04 00  "....@..........."

bus 00->05, slot 1c, func 3, vend:dev:s_vend:s_dev:rev 8086:3b48:17aa:2164:06
class 06, sub_class 04 prog_if 00, hdr 1, flags <>, irq 23
  00: 86 80 48 3b 07 01 10 00 06 00 04 06 10 00 81 00  "..H;............"
  10: 00 00 00 00 00 00 00 00 00 05 0c 00 30 30 00 20  "............00. "
  20: 00 f0 f0 f1 51 f2 51 f2 00 00 00 00 00 00 00 00  "....Q.Q........."
  30: 00 00 00 00 40 00 00 00 00 00 00 00 0b 04 04 00  "....@..........."

bus 00->0d, slot 1c, func 4, vend:dev:s_vend:s_dev:rev 8086:3b4a:17aa:2164:06
class 06, sub_class 04 prog_if 00, hdr 1, flags <>, irq 20
  00: 86 80 4a 3b 07 01 10 00 06 00 04 06 10 00 81 00  "..J;............"
  10: 00 00 00 00 00 00 00 00 00 0d 0d 00 f0 00 00 20  "............... "
  20: 10 f2 10 f2 f1 ff 01 00 00 00 00 00 00 00 00 00  "................"
  30: 00 00 00 00 40 00 00 00 00 00 00 00 0b 01 04 00  "....@..........."

bus 00, slot 1d, func 0, vend:dev:s_vend:s_dev:rev 8086:3b34:17aa:2163:06
class 0c, sub_class 03 prog_if 20, hdr 0, flags <>, irq 19
  addr0 f2428400, size 00000400
  00: 86 80 34 3b 06 01 90 02 06 20 03 0c 00 00 00 00  "..4;..... ......"
  10: 00 84 42 f2 00 00 00 00 00 00 00 00 00 00 00 00  "..B............."
  20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 63 21  "..............c!"
  30: 00 00 00 00 50 00 00 00 00 00 00 00 0b 04 00 00  "....P..........."

bus 00->0e, slot 1e, func 0, vend:dev:s_vend:s_dev:rev 8086:2448:17aa:2165:a6
class 06, sub_class 04 prog_if 01, hdr 1, flags <>, irq 0
  00: 86 80 48 24 07 01 10 00 a6 01 04 06 00 00 01 00  "..H$............"
  10: 00 00 00 00 00 00 00 00 00 0e 0e 00 f0 00 80 22  "...............""
  20: f0 ff 00 00 f1 ff 01 00 00 00 00 00 00 00 00 00  "................"
  30: 00 00 00 00 50 00 00 00 00 00 00 00 ff 00 04 00  "....P..........."

bus 00, slot 1f, func 0, vend:dev:s_vend:s_dev:rev 8086:3b07:17aa:2166:06
class 06, sub_class 01 prog_if 00, hdr 0, flags <>, irq 0
  00: 86 80 07 3b 07 00 10 02 06 00 01 06 00 00 80 00  "...;............"
  10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 66 21  "..............f!"
  30: 00 00 00 00 e0 00 00 00 00 00 00 00 00 00 00 00  "................"

bus 00, slot 1f, func 2, vend:dev:s_vend:s_dev:rev 8086:3b2f:17aa:2168:06
class 01, sub_class 06 prog_if 01, hdr 0, flags <>, irq 40
  addr0 00001818, size 00000008
  addr1 0000180c, size 00000004
  addr2 00001810, size 00000008
  addr3 00001808, size 00000004
  addr4 00001840, size 00000020
  addr5 f2427000, size 00000800
  00: 86 80 2f 3b 07 04 b0 02 06 01 06 01 00 00 00 00  "../;............"
  10: 19 18 00 00 0d 18 00 00 11 18 00 00 09 18 00 00  "................"
  20: 41 18 00 00 00 70 42 f2 00 00 00 00 aa 17 68 21  "A....pB.......h!"
  30: 00 00 00 00 80 00 00 00 00 00 00 00 0b 02 00 00  "................"

bus 00, slot 1f, func 3, vend:dev:s_vend:s_dev:rev 8086:3b30:17aa:2167:06
class 0c, sub_class 05 prog_if 00, hdr 0, flags <>, irq 23
  addr0 f2428800, size 00000100
  addr4 00001860, size 00000020
  00: 86 80 30 3b 03 01 80 02 06 00 05 0c 00 00 00 00  "..0;............"
  10: 04 88 42 f2 00 00 00 00 00 00 00 00 00 00 00 00  "..B............."
  20: 61 18 00 00 00 00 00 00 00 00 00 00 aa 17 67 21  "a.............g!"
  30: 00 00 00 00 00 00 00 00 00 00 00 00 0b 01 00 00  "................"

bus 00, slot 1f, func 6, vend:dev:s_vend:s_dev:rev 8086:3b32:17aa:2190:06
class 11, sub_class 80 prog_if 00, hdr 0, flags <>, irq 19
  addr0 f2426000, size 00001000
  00: 86 80 32 3b 02 00 10 00 06 00 80 11 00 00 00 00  "..2;............"
  10: 04 60 42 f2 00 00 00 00 00 00 00 00 00 00 00 00  ".`B............."
  20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 90 21  "...............!"
  30: 00 00 00 00 50 00 00 00 00 00 00 00 0b 04 00 00  "....P..........."

bus 01, slot 00, func 0, vend:dev:s_vend:s_dev:rev 10de:0a6c:17aa:2142:a2
class 03, sub_class 00 prog_if 00, hdr 0, flags <>, irq 16
  addr0 cc000000, size 01000000
  addr1 d0000000, size 10000000
  addr3 ce000000, size 02000000
  addr5 00002000, size 00000080
  00: de 10 6c 0a 07 00 10 00 a2 00 00 03 00 00 80 00  "..l............."
  10: 00 00 00 cc 0c 00 00 d0 00 00 00 00 0c 00 00 ce  "................"
  20: 00 00 00 00 01 20 00 00 00 00 00 00 aa 17 42 21  "..... ........B!"
  30: 00 00 00 00 60 00 00 00 00 00 00 00 0b 01 00 00  "....`..........."

bus 01, slot 00, func 1, vend:dev:s_vend:s_dev:rev 10de:0be3:17aa:218f:a1
class 04, sub_class 03 prog_if 00, hdr 0, flags <>, irq 45
  addr0 cdefc000, size 00004000
  00: de 10 e3 0b 06 05 10 00 a1 00 03 04 10 00 80 00  "................"
  10: 00 c0 ef cd 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 8f 21  "...............!"
  30: 00 00 00 00 60 00 00 00 00 00 00 00 0b 01 00 00  "....`..........."

bus 03, slot 00, func 0, vend:dev:s_vend:s_dev:rev 8086:4238:8086:1111:35
class 02, sub_class 80 prog_if 00, hdr 0, flags <>, irq 43
  addr0 f2000000, size 00002000
  00: 86 80 38 42 06 01 10 00 35 00 80 02 10 00 00 00  "..8B....5......."
  10: 04 00 00 f2 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  20: 00 00 00 00 00 00 00 00 00 00 00 00 86 80 11 11  "................"
  30: 00 00 00 00 c8 00 00 00 00 00 00 00 0b 01 00 00  "................"

bus 0d, slot 00, func 0, vend:dev:s_vend:s_dev:rev 1180:e822:17aa:2133:01
class 08, sub_class 05 prog_if 00, hdr 0, flags <>, irq 16
  addr0 f2100000, size 00000100
  00: 80 11 22 e8 06 01 10 00 01 00 05 08 10 00 80 00  ".."............."
  10: 00 00 10 f2 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 33 21  "..............3!"
  30: 00 00 00 00 50 00 00 00 00 00 00 00 0b 01 00 00  "....P..........."

bus 0d, slot 00, func 1, vend:dev:s_vend:s_dev:rev 1180:e230:17aa:2134:01
class 08, sub_class 80 prog_if 00, hdr 0, flags <>, irq 11
  addr0 f2100400, size 00000100
  00: 80 11 30 e2 06 01 10 00 01 00 80 08 10 00 80 00  "..0............."
  10: 00 04 10 f2 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 34 21  "..............4!"
  30: 00 00 00 00 50 00 00 00 00 00 00 00 0b 02 00 00  "....P..........."

bus 0d, slot 00, func 3, vend:dev:s_vend:s_dev:rev 1180:e832:17aa:2136:01
class 0c, sub_class 00 prog_if 10, hdr 0, flags <>, irq 42
  addr0 f2100800, size 00000800
  00: 80 11 32 e8 06 05 10 00 01 10 00 0c 10 00 80 00  "..2............."
  10: 00 08 10 f2 00 00 00 00 00 00 00 00 00 00 00 00  "................"
  20: 00 00 00 00 00 00 00 00 00 00 00 00 aa 17 36 21  "..............6!"
  30: 00 00 00 00 50 00 00 00 00 00 00 00 0b 04 00 00  "....P..........."
---------- PCI raw data end ----------
>> pci.4: build list
>> pci.3: macio
sysfs: no such bus: macio
>> pci.4: vio
sysfs: no such bus: vio
>> pci.5: xen
sysfs: no such bus: xen
>> pci.6: ps3
sysfs: no such bus: ps3_system_bus
>> pci.7: platform
  platform device: name = dock.0
    path = /devices/platform/dock.0
    type = "platform:dock"
  platform device: sf_eth_net = (null) sf_eth_dev = (nil)
  platform device: name = dock.1
    path = /devices/platform/dock.1
    type = "platform:dock"
  platform device: sf_eth_net = (null) sf_eth_dev = (nil)
  platform device: name = pcspkr
    path = /devices/platform/pcspkr
    type = "platform:pcspkr"
  platform device: sf_eth_net = (null) sf_eth_dev = (nil)
  platform device: name = vesafb.0
    path = /devices/platform/vesafb.0
    type = "platform:vesafb"
  platform device: sf_eth_net = (null) sf_eth_dev = (nil)
  platform device: name = serial8250
    path = /devices/platform/serial8250
    type = "platform:serial8250"
  platform device: sf_eth_net = (null) sf_eth_dev = (nil)
  platform device: name = i8042
    path = /devices/platform/i8042
    type = "platform:i8042"
  platform device: sf_eth_net = (null) sf_eth_dev = (nil)
  platform device: name = vboxdrv.0
    path = /devices/platform/vboxdrv.0
    type = "platform:vboxdrv"
  platform device: sf_eth_net = (null) sf_eth_dev = (nil)
  platform device: name = iTCO_wdt
    path = /devices/platform/iTCO_wdt
    type = "platform:iTCO_wdt"
  platform device: sf_eth_net = (null) sf_eth_dev = (nil)
  platform device: name = thinkpad_acpi
    path = /devices/platform/thinkpad_acpi
    type = "platform:thinkpad_acpi"
  platform device: sf_eth_net = (null) sf_eth_dev = (nil)
  platform device: name = thinkpad_hwmon
    path = /devices/platform/thinkpad_hwmon
    type = "platform:thinkpad_hwmon"
  platform device: sf_eth_net = (null) sf_eth_dev = (nil)
  platform device: name = regulatory.0
    path = /devices/platform/regulatory.0
    type = "platform:regulatory"
  platform device: sf_eth_net = (null) sf_eth_dev = (nil)
>> pci.8: of_platform
sysfs: no such bus: of_platform
>> pci.9: vm
sysfs: no such bus: vm
>> pci.10: virtio
sysfs: no such bus: virtio
>> pci.11: ibmebus
sysfs: no such bus: ibmebus
>> monitor.1: ddc
>> monitor.2: bios
>> monitor.3: pci
>> monitor.4: internal db
>> monitor.5: prom
>> pcmcia.1: sysfs drivers
>> pcmcia.2: pcmcia
sysfs: no such bus: pcmcia
>> pcmcia.3: pcmcia ctrl
sysfs: no such class: pcmcia_socket
>> serial.1: read info
----- serial info -----
----- serial info end -----
>> serial.2: build list
>> misc.5: misc data
----- misc resources -----
i/o:0 0x0000 - 0x0cf7 (0xcf8) "PCI Bus 0000:00"
i/o:1 0x0000 - 0x001f (0x20) "dma1"
i/o:1 0x0020 - 0x0021 (0x02) "pic1"
i/o:0 0x0040 - 0x0043 (0x04) "timer0"
i/o:0 0x0050 - 0x0053 (0x04) "timer1"
i/o:1 0x0060 - 0x0060 (0x01) "keyboard"
i/o:0 0x0062 - 0x0062 (0x01) "EC data"
i/o:1 0x0064 - 0x0064 (0x01) "keyboard"
i/o:0 0x0066 - 0x0066 (0x01) "EC cmd"
i/o:0 0x0070 - 0x0071 (0x02) "rtc0"
i/o:1 0x0080 - 0x008f (0x10) "dma page reg"
i/o:1 0x00a0 - 0x00a1 (0x02) "pic2"
i/o:1 0x00c0 - 0x00df (0x20) "dma2"
i/o:1 0x00f0 - 0x00ff (0x10) "fpu"
i/o:1 0x03c0 - 0x03df (0x20) "vesafb"
i/o:0 0x0800 - 0x080f (0x10) "pnp 00:03"
i/o:0 0x0cf8 - 0x0cff (0x08) "PCI conf1"
i/o:0 0x0d00 - 0xffff (0xf300) "PCI Bus 0000:00"
i/o:0 0x1000 - 0x107f (0x80) "pnp 00:03"
i/o:0 0x1000 - 0x1003 (0x04) "ACPI PM1a_EVT_BLK"
i/o:0 0x1004 - 0x1005 (0x02) "ACPI PM1a_CNT_BLK"
i/o:0 0x1008 - 0x100b (0x04) "ACPI PM_TMR"
i/o:0 0x1010 - 0x1015 (0x06) "ACPI CPU throttle"
i/o:0 0x1020 - 0x102f (0x10) "ACPI GPE0_BLK"
i/o:0 0x1030 - 0x1033 (0x04) "iTCO_wdt"
i/o:0 0x1050 - 0x1050 (0x01) "ACPI PM2_CNT_BLK"
i/o:0 0x1060 - 0x107f (0x20) "iTCO_wdt"
i/o:0 0x1180 - 0x11ff (0x80) "pnp 00:03"
i/o:0 0x15e0 - 0x15ef (0x10) "pnp 00:03"
i/o:0 0x1600 - 0x1641 (0x42) "pnp 00:03"
i/o:0 0x164e - 0x164f (0x02) "pnp 00:03"
i/o:0 0x1800 - 0x1807 (0x08) "0000:00:16.3"
i/o:1 0x1800 - 0x1807 (0x08) "serial"
i/o:0 0x1808 - 0x180b (0x04) "0000:00:1f.2"
i/o:0 0x1808 - 0x180b (0x04) "ahci"
i/o:0 0x180c - 0x180f (0x04) "0000:00:1f.2"
i/o:0 0x180c - 0x180f (0x04) "ahci"
i/o:0 0x1810 - 0x1817 (0x08) "0000:00:1f.2"
i/o:0 0x1810 - 0x1817 (0x08) "ahci"
i/o:0 0x1818 - 0x181f (0x08) "0000:00:1f.2"
i/o:0 0x1818 - 0x181f (0x08) "ahci"
i/o:0 0x1820 - 0x183f (0x20) "0000:00:19.0"
i/o:0 0x1840 - 0x185f (0x20) "0000:00:1f.2"
i/o:0 0x1840 - 0x185f (0x20) "ahci"
i/o:0 0x1860 - 0x187f (0x20) "0000:00:1f.3"
i/o:0 0x1860 - 0x187f (0x20) "i801_smbus"
i/o:0 0x2000 - 0x2fff (0x1000) "PCI Bus 0000:01"
i/o:0 0x2000 - 0x207f (0x80) "0000:01:00.0"
i/o:0 0x3000 - 0x3fff (0x1000) "PCI Bus 0000:05"
irq:1  0 (     1441) "timer"
irq:0  1 (    56819) "i8042"
irq:0  8 (     4528) "rtc0"
irq:0  9 (   833249) "acpi"
irq:0 12 ( 10932756) "i8042"
irq:0 16 (  3289666) "mmc0" "nvidia"
irq:0 19 (  2428250) "ips" "ehci_hcd:usb2"
irq:0 23 (      491) "ehci_hcd:usb1"
irq:0 40 (  4043844) "ahci"
irq:0 42 (     6524) "firewire_ohci"
irq:0 43 ( 23158985) "iwlagn"
irq:0 44 ( 16732163) "hda_intel"
irq:0 45 (        1) "hda_intel"
dma:1 4 "cascade"
----- misc resources end -----
>> parallel.1: pp mod
----- exec: "/sbin/modprobe parport_pc" -----
  FATAL: Error inserting parport_pc (/lib/modules/2.6.37-ARCH/kernel/drivers/parport/parport_pc.ko.gz): Operation not permitted
----- return code: ? -----
----- exec: "/sbin/modprobe lp" -----
  FATAL: Error inserting lp (/lib/modules/2.6.37-ARCH/kernel/drivers/char/lp.ko.gz): Operation not permitted
----- return code: ? -----
>> parallel.2.1: lp read info
>> parallel.2.2: lp read info
>> parallel.2.3: lp read info
----- parallel info -----
----- parallel info end -----
>> block.1: block modules
----- exec: "/sbin/modprobe ide-cd_mod " -----
  FATAL: Error inserting ide_cd_mod (/lib/modules/2.6.37-ARCH/kernel/drivers/ide/ide-cd_mod.ko.gz): Operation not permitted
----- return code: ? -----
----- exec: "/sbin/modprobe ide-disk " -----
  FATAL: Error inserting ide_gd_mod (/lib/modules/2.6.37-ARCH/kernel/drivers/ide/ide-gd_mod.ko.gz): Operation not permitted
----- return code: ? -----
----- exec: "/sbin/modprobe st " -----
  FATAL: Error inserting st (/lib/modules/2.6.37-ARCH/kernel/drivers/scsi/st.ko.gz): Operation not permitted
----- return code: ? -----
>> block.2: sysfs drivers
>> block.3: cdrom
----- /proc/sys/dev/cdrom/info -----
drive name:		sr0
drive speed:		24
drive # of slots:	1
Can close tray:		1
Can open tray:		1
Can lock tray:		1
Can change speed:	1
Can select disk:	0
Can read multisession:	1
Can read MCN:		1
Reports media changed:	1
Can play audio:		1
Can write CD-R:		1
Can write CD-RW:	1
Can read DVD:		1
Can write DVD-R:	1
Can write DVD-RAM:	1
Can read MRW:		1
Can write MRW:		1
Can write RAM:		1
----- /proc/sys/dev/cdrom/info end -----
>> block.4: partition
----- /proc/partitions -----
     8        0  488386584 sda
     8        1     104391 sda1
     8        2    1028160 sda2
     8        3   51207187 sda3
     8        4  436044262 sda4
----- /proc/partitions end -----
disks:
  sda
partitions:
  sda1
  sda2
  sda3
  sda4
>> block.5: get sysfs block dev data
-----  lsscsi -----
-----  lsscsi end -----
  block: name = sda, path = /class/block/sda
    dev = 8:0
    range = 16
    block device: bus = scsi, bus_id = 0:0:0:0 driver = sd
      path = /devices/pci0000:00/0000:00:1f.2/host0/target0:0:0/0:0:0:0
    vendor = ATA
    model = HITACHI HTS72505
    rev = PC4Z
    type = 0
>> block.5: /dev/sda
  block: name = sda1, path = /class/block/sda1
    dev = 8:1
  block: name = sda2, path = /class/block/sda2
    dev = 8:2
  block: name = sda3, path = /class/block/sda3
    dev = 8:3
  block: name = sda4, path = /class/block/sda4
    dev = 8:4
  block: name = sr0, path = /class/block/sr0
    dev = 11:0
    range = 1
    block device: bus = scsi, bus_id = 1:0:0:0 driver = sr
      path = /devices/pci0000:00/0000:00:1f.2/host1/target1:0:0/1:0:0:0
    vendor = HL-DT-ST
    model = DVDRAM GU10N
    rev = MX05
    type = 5
>> block.5: /dev/sr0
>> block.5.1: /dev/sr0 cache
  scsi cache: 0x00
  cdrom caps(/dev/sr0): 0x3bfbef
  dvd caps(/dev/sr0): 0x2f
>> scsi.1: scsi modules
>> scsi.2: scsi tape
sysfs: no such class: scsi_tape
>> scsi.3: scsi generic
  scsi: name = sg0, path = /class/scsi_generic/sg0
    dev = 21:0
    scsi device: bus_id = 0:0:0:0 driver = sd
      path = /devices/pci0000:00/0000:00:1f.2/host0/target0:0:0/0:0:0:0
  scsi: name = sg1, path = /class/scsi_generic/sg1
    dev = 21:1
    scsi device: bus_id = 1:0:0:0 driver = sr
      path = /devices/pci0000:00/0000:00:1f.2/host1/target1:0:0/1:0:0:0
>> usb.1: sysfs drivers
>> usb.2: usb
  usb dev: /devices/pci0000:00/0000:00:1a.0/usb1
  usb dev: /devices/pci0000:00/0000:00:1d.0/usb2
  usb dev: /devices/pci0000:00/0000:00:1a.0/usb1/1-1
  usb dev: /devices/pci0000:00/0000:00:1d.0/usb2/2-1
  usb dev: /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3
  usb dev: /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4
  usb dev: /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6
  usb dev: /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5
  usb device: name = usb1
    path = /devices/pci0000:00/0000:00:1a.0/usb1
  usb device: name = 1-0:1.0
    path = /devices/pci0000:00/0000:00:1a.0/usb1/1-0:1.0
    modalias = "usb:v1D6Bp0002d0206dc09dsc00dp00ic09isc00ip00"
    bInterfaceNumber = 0
    bInterfaceClass = 9
    bInterfaceSubClass = 0
    bInterfaceProtocol = 0
    if: 1-0:1.0 @ /devices/pci0000:00/0000:00:1a.0/usb1
    bDeviceClass = 9
    bDeviceSubClass = 0
    bDeviceProtocol = 0
    idVendor = 0x1d6b
    idProduct = 0x0002
    manufacturer = "Linux 2.6.37-ARCH ehci_hcd"
    product = "EHCI Host Controller"
    serial = "0000:00:1a.0"
    bcdDevice = 0206
    speed = "480"
  usb device: name = usb2
    path = /devices/pci0000:00/0000:00:1d.0/usb2
  usb device: name = 2-0:1.0
    path = /devices/pci0000:00/0000:00:1d.0/usb2/2-0:1.0
    modalias = "usb:v1D6Bp0002d0206dc09dsc00dp00ic09isc00ip00"
    bInterfaceNumber = 0
    bInterfaceClass = 9
    bInterfaceSubClass = 0
    bInterfaceProtocol = 0
    if: 2-0:1.0 @ /devices/pci0000:00/0000:00:1d.0/usb2
    bDeviceClass = 9
    bDeviceSubClass = 0
    bDeviceProtocol = 0
    idVendor = 0x1d6b
    idProduct = 0x0002
    manufacturer = "Linux 2.6.37-ARCH ehci_hcd"
    product = "EHCI Host Controller"
    serial = "0000:00:1d.0"
    bcdDevice = 0206
    speed = "480"
  usb device: name = 1-1
    path = /devices/pci0000:00/0000:00:1a.0/usb1/1-1
  usb device: name = 1-1:1.0
    path = /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1:1.0
    modalias = "usb:v8087p0020d0000dc09dsc00dp01ic09isc00ip00"
    bInterfaceNumber = 0
    bInterfaceClass = 9
    bInterfaceSubClass = 0
    bInterfaceProtocol = 0
    if: 1-1:1.0 @ /devices/pci0000:00/0000:00:1a.0/usb1/1-1
    bDeviceClass = 9
    bDeviceSubClass = 0
    bDeviceProtocol = 1
    idVendor = 0x8087
    idProduct = 0x0020
    bcdDevice = 0000
    speed = "480"
  usb device: name = 2-1
    path = /devices/pci0000:00/0000:00:1d.0/usb2/2-1
  usb device: name = 2-1:1.0
    path = /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1:1.0
    modalias = "usb:v8087p0020d0000dc09dsc00dp01ic09isc00ip00"
    bInterfaceNumber = 0
    bInterfaceClass = 9
    bInterfaceSubClass = 0
    bInterfaceProtocol = 0
    if: 2-1:1.0 @ /devices/pci0000:00/0000:00:1d.0/usb2/2-1
    bDeviceClass = 9
    bDeviceSubClass = 0
    bDeviceProtocol = 1
    idVendor = 0x8087
    idProduct = 0x0020
    bcdDevice = 0000
    speed = "480"
  usb device: name = 1-1.3
    path = /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3
  usb device: name = 1-1.3:1.0
    path = /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0
    modalias = "usb:v147Ep2016d0002dc00dsc00dp00icFFisc00ip00"
    bInterfaceNumber = 0
    bInterfaceClass = 255
    bInterfaceSubClass = 0
    bInterfaceProtocol = 0
    if: 1-1.3:1.0 @ /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3
    bDeviceClass = 0
    bDeviceSubClass = 0
    bDeviceProtocol = 0
    idVendor = 0x147e
    idProduct = 0x2016
    manufacturer = "UPEK"
    product = "Biometric Coprocessor"
    bcdDevice = 0002
    speed = "12"
  usb device: name = 1-1.4
    path = /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4
  usb device: name = 1-1.4:1.0
    path = /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0
    modalias = "usb:v0A5Cp217Fd0360dcE0dsc01dp01icE0isc01ip01"
    bInterfaceNumber = 0
    bInterfaceClass = 224
    bInterfaceSubClass = 1
    bInterfaceProtocol = 1
    if: 1-1.4:1.0 @ /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4
    bDeviceClass = 224
    bDeviceSubClass = 1
    bDeviceProtocol = 1
    idVendor = 0x0a5c
    idProduct = 0x217f
    manufacturer = "Broadcom Corp"
    product = "Broadcom Bluetooth Device"
    serial = "70F39532FFFD"
    bcdDevice = 0360
    speed = "12"
  usb device: name = 1-1.4:1.1
    path = /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.1
    modalias = "usb:v0A5Cp217Fd0360dcE0dsc01dp01icE0isc01ip01"
    bInterfaceNumber = 1
    bInterfaceClass = 224
    bInterfaceSubClass = 1
    bInterfaceProtocol = 1
    if: 1-1.4:1.1 @ /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4
    bDeviceClass = 224
    bDeviceSubClass = 1
    bDeviceProtocol = 1
    idVendor = 0x0a5c
    idProduct = 0x217f
    manufacturer = "Broadcom Corp"
    product = "Broadcom Bluetooth Device"
    serial = "70F39532FFFD"
    bcdDevice = 0360
    speed = "12"
  usb device: name = 1-1.4:1.2
    path = /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.2
    modalias = "usb:v0A5Cp217Fd0360dcE0dsc01dp01icFFiscFFipFF"
    bInterfaceNumber = 2
    bInterfaceClass = 255
    bInterfaceSubClass = 255
    bInterfaceProtocol = 255
    if: 1-1.4:1.2 @ /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4
    bDeviceClass = 224
    bDeviceSubClass = 1
    bDeviceProtocol = 1
    idVendor = 0x0a5c
    idProduct = 0x217f
    manufacturer = "Broadcom Corp"
    product = "Broadcom Bluetooth Device"
    serial = "70F39532FFFD"
    bcdDevice = 0360
    speed = "12"
  usb device: name = 1-1.4:1.3
    path = /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.3
    modalias = "usb:v0A5Cp217Fd0360dcE0dsc01dp01icFEisc01ip01"
    bInterfaceNumber = 3
    bInterfaceClass = 254
    bInterfaceSubClass = 1
    bInterfaceProtocol = 1
    if: 1-1.4:1.3 @ /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4
    bDeviceClass = 224
    bDeviceSubClass = 1
    bDeviceProtocol = 1
    idVendor = 0x0a5c
    idProduct = 0x217f
    manufacturer = "Broadcom Corp"
    product = "Broadcom Bluetooth Device"
    serial = "70F39532FFFD"
    bcdDevice = 0360
    speed = "12"
  usb device: name = 1-1.6
    path = /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6
  usb device: name = 1-1.6:1.0
    path = /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0
    modalias = "usb:v17EFp480Fd2345dcEFdsc02dp01ic0Eisc01ip00"
    bInterfaceNumber = 0
    bInterfaceClass = 14
    bInterfaceSubClass = 1
    bInterfaceProtocol = 0
    if: 1-1.6:1.0 @ /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6
    bDeviceClass = 239
    bDeviceSubClass = 2
    bDeviceProtocol = 1
    idVendor = 0x17ef
    idProduct = 0x480f
    manufacturer = "Chicony Electronics Co., Ltd."
    product = "Integrated Camera"
    bcdDevice = 2345
    speed = "480"
  usb device: name = 1-1.6:1.1
    path = /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.1
    modalias = "usb:v17EFp480Fd2345dcEFdsc02dp01ic0Eisc02ip00"
    bInterfaceNumber = 1
    bInterfaceClass = 14
    bInterfaceSubClass = 2
    bInterfaceProtocol = 0
    if: 1-1.6:1.1 @ /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6
    bDeviceClass = 239
    bDeviceSubClass = 2
    bDeviceProtocol = 1
    idVendor = 0x17ef
    idProduct = 0x480f
    manufacturer = "Chicony Electronics Co., Ltd."
    product = "Integrated Camera"
    bcdDevice = 2345
    speed = "480"
  usb device: name = 2-1.5
    path = /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5
  usb device: name = 2-1.5:1.0
    path = /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5/2-1.5:1.0
    modalias = "usb:v17EFp1003d0100dc00dsc00dp00ic0Bisc00ip00"
    bInterfaceNumber = 0
    bInterfaceClass = 11
    bInterfaceSubClass = 0
    bInterfaceProtocol = 0
    if: 2-1.5:1.0 @ /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5
    bDeviceClass = 0
    bDeviceSubClass = 0
    bDeviceProtocol = 0
    idVendor = 0x17ef
    idProduct = 0x1003
    manufacturer = "Lenovo"
    product = "Integrated Smart Card Reader"
    bcdDevice = 0100
    speed = "12"
removed: /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.1
removed: /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.2
removed: /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.3
removed: /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.1
>> usb.3.1: joydev mod
>> usb.3.2: evdev mod
>> usb.3.3: input
  input: name = mice, path = /devices/virtual/input/mice
    dev = 13:63
  input: name = input0, path = /devices/platform/i8042/serio0/input/input0
    no dev - ignored
  input: name = input1, path = /devices/platform/pcspkr/input/input1
    no dev - ignored
  input: name = event0, path = /devices/platform/i8042/serio0/input/input0/event0
    dev = 13:64
    input device: bus = serio, bus_id = serio0 driver = atkbd
      path = /devices/platform/i8042/serio0
  input: name = event1, path = /devices/platform/pcspkr/input/input1/event1
    dev = 13:65
    input device: bus = platform, bus_id = pcspkr driver = pcspkr
      path = /devices/platform/pcspkr
  input: name = input2, path = /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
    no dev - ignored
  input: name = event2, path = /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2/event2
    dev = 13:66
    input device: bus = acpi, bus_id = PNP0C0D:00 driver = button
      path = /devices/LNXSYSTM:00/device:00/PNP0C0D:00
  input: name = input3, path = /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3
    no dev - ignored
  input: name = event3, path = /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3/event3
    dev = 13:67
    input device: bus = acpi, bus_id = PNP0C0E:00 driver = button
      path = /devices/LNXSYSTM:00/device:00/PNP0C0E:00
  input: name = input4, path = /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    no dev - ignored
  input: name = event4, path = /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event4
    dev = 13:68
    input device: bus = acpi, bus_id = LNXPWRBN:00 driver = button
      path = /devices/LNXSYSTM:00/LNXPWRBN:00
  input: name = input5, path = /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0b/LNXVIDEO:01/input/input5
    no dev - ignored
  input: name = event5, path = /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0b/LNXVIDEO:01/input/input5/event5
    dev = 13:69
    input device: bus = acpi, bus_id = LNXVIDEO:01 driver = video
      path = /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0b/LNXVIDEO:01
  input: name = input6, path = /devices/platform/thinkpad_acpi/input/input6
    no dev - ignored
  input: name = event6, path = /devices/platform/thinkpad_acpi/input/input6/event6
    dev = 13:70
    input device: bus = platform, bus_id = thinkpad_acpi driver = thinkpad_acpi
      path = /devices/platform/thinkpad_acpi
  input: name = input7, path = /devices/platform/i8042/serio1/input/input7
    no dev - ignored
  input: name = mouse0, path = /devices/platform/i8042/serio1/input/input7/mouse0
    dev = 13:32
    input device: bus = serio, bus_id = serio1 driver = psmouse
      path = /devices/platform/i8042/serio1
  input: name = event7, path = /devices/platform/i8042/serio1/input/input7/event7
    dev = 13:71
    input device: bus = serio, bus_id = serio1 driver = psmouse
      path = /devices/platform/i8042/serio1
  input: name = input8, path = /devices/pci0000:00/0000:00:1b.0/input/input8
    no dev - ignored
  input: name = event8, path = /devices/pci0000:00/0000:00:1b.0/input/input8/event8
    dev = 13:72
    input device: bus = pci, bus_id = 0000:00:1b.0 driver = HDA Intel
      path = /devices/pci0000:00/0000:00:1b.0
  input: name = input9, path = /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0/input/input9
    no dev - ignored
  input: name = event9, path = /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0/input/input9/event9
    dev = 13:73
    input device: bus = usb, bus_id = 1-1.6:1.0 driver = uvcvideo
      path = /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0
  input: name = input10, path = /devices/platform/i8042/serio1/serio2/input/input10
    no dev - ignored
  input: name = mouse1, path = /devices/platform/i8042/serio1/serio2/input/input10/mouse1
    dev = 13:33
    input device: bus = serio, bus_id = serio2 driver = psmouse
      path = /devices/platform/i8042/serio1/serio2
  input: name = event10, path = /devices/platform/i8042/serio1/serio2/input/input10/event10
    dev = 13:74
    input device: bus = serio, bus_id = serio2 driver = psmouse
      path = /devices/platform/i8042/serio1/serio2
>> usb.3.4: lp
sysfs: no such class: usb
>> usb.3.5: serial
>> edd.1: edd mod
----- exec: "/sbin/modprobe edd " -----
  FATAL: Error inserting edd (/lib/modules/2.6.37-ARCH/kernel/drivers/firmware/edd.ko.gz): Operation not permitted
----- return code: ? -----
>> edd.2: edd info
>> modem.1: serial
******  started child process 4595 (15s/120s)  ******
******  stopped child process 4595 (120s)  ******
>> mouse.2: serial
******  started child process 4596 (20s/20s)  ******
******  stopped child process 4596 (20s)  ******
>> input.1: joydev mod
>> input.1.1: evdev mod
>> input.2: input
----- /proc/bus/input/devices -----
  I: Bus=0011 Vendor=0001 Product=0001 Version=ab54
  N: Name="AT Translated Set 2 keyboard"
  P: Phys=isa0060/serio0/input0
  S: Sysfs=/devices/platform/i8042/serio0/input/input0
  U: Uniq=
  H: Handlers=kbd event0 
  B: EV=120013
  B: KEY=402000000 3803078f800d001 feffffdfffefffff fffffffffffffffe
  B: MSC=10
  B: LED=7
  
  I: Bus=0010 Vendor=001f Product=0001 Version=0100
  N: Name="PC Speaker"
  P: Phys=isa0061/input0
  S: Sysfs=/devices/platform/pcspkr/input/input1
  U: Uniq=
  H: Handlers=kbd event1 
  B: EV=40001
  B: SND=6
  
  I: Bus=0019 Vendor=0000 Product=0005 Version=0000
  N: Name="Lid Switch"
  P: Phys=PNP0C0D/button/input0
  S: Sysfs=/devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input2
  U: Uniq=
  H: Handlers=event2 
  B: EV=21
  B: SW=1
  
  I: Bus=0019 Vendor=0000 Product=0003 Version=0000
  N: Name="Sleep Button"
  P: Phys=PNP0C0E/button/input0
  S: Sysfs=/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input3
  U: Uniq=
  H: Handlers=kbd event3 
  B: EV=3
  B: KEY=4000 0 0
  
  I: Bus=0019 Vendor=0000 Product=0001 Version=0000
  N: Name="Power Button"
  P: Phys=LNXPWRBN/button/input0
  S: Sysfs=/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
  U: Uniq=
  H: Handlers=kbd event4 
  B: EV=3
  B: KEY=10000000000000 0
  
  I: Bus=0019 Vendor=0000 Product=0006 Version=0000
  N: Name="Video Bus"
  P: Phys=LNXVIDEO/video/input0
  S: Sysfs=/devices/LNXSYSTM:00/device:00/PNP0A08:00/device:0b/LNXVIDEO:01/input/input5
  U: Uniq=
  H: Handlers=kbd event5 
  B: EV=3
  B: KEY=3e000b00000000 0 0 0
  
  I: Bus=0019 Vendor=17aa Product=5054 Version=4101
  N: Name="ThinkPad Extra Buttons"
  P: Phys=thinkpad_acpi/input0
  S: Sysfs=/devices/platform/thinkpad_acpi/input/input6
  U: Uniq=
  H: Handlers=kbd event6 rfkill 
  B: EV=33
  B: KEY=18040000 0 10000000000000 0 1501b00102005 1104000 e000000000000 0
  B: MSC=10
  B: SW=8
  
  I: Bus=0011 Vendor=0002 Product=0007 Version=01b1
  N: Name="SynPS/2 Synaptics TouchPad"
  P: Phys=isa0060/serio1/input0
  S: Sysfs=/devices/platform/i8042/serio1/input/input7
  U: Uniq=
  H: Handlers=mouse0 event7 
  B: EV=b
  B: KEY=420 30000 0 0 0 0
  B: ABS=11000003
  
  I: Bus=0001 Vendor=14f1 Product=5069 Version=0001
  N: Name="HDA Digital PCBeep"
  P: Phys=card0/codec#0/beep0
  S: Sysfs=/devices/pci0000:00/0000:00:1b.0/input/input8
  U: Uniq=
  H: Handlers=kbd event8 
  B: EV=40001
  B: SND=6
  
  I: Bus=0003 Vendor=17ef Product=480f Version=2345
  N: Name="Integrated Camera"
  P: Phys=usb-0000:00:1a.0-1.6/button
  S: Sysfs=/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0/input/input9
  U: Uniq=
  H: Handlers=kbd event9 
  B: EV=3
  B: KEY=100000 0 0 0
  
  I: Bus=0011 Vendor=0002 Product=000a Version=0000
  N: Name="TPPS/2 IBM TrackPoint"
  P: Phys=synaptics-pt/serio0/input0
  S: Sysfs=/devices/platform/i8042/serio1/serio2/input/input10
  U: Uniq=
  H: Handlers=mouse1 event10 
  B: EV=7
  B: KEY=70000 0 0 0 0
  B: REL=3
  
----- /proc/bus/input/devices end -----
bus = 17, name = AT Translated Set 2 keyboard
  handlers = kbd event0
  key = 000000040200000003803078f800d001feffffdfffeffffffffffffffffffffe
  mouse buttons = 0
  mouse wheels = 0
bus = 16, name = PC Speaker
  handlers = kbd event1
  mouse buttons = 0
  mouse wheels = 0
bus = 25, name = Lid Switch
  handlers = event2
  mouse buttons = 0
  mouse wheels = 0
bus = 25, name = Sleep Button
  handlers = kbd event3
  key = 000000000000400000000000000000000000000000000000
  mouse buttons = 0
  mouse wheels = 0
bus = 25, name = Power Button
  handlers = kbd event4
  key = 00100000000000000000000000000000
  mouse buttons = 0
  mouse wheels = 0
bus = 25, name = Video Bus
  handlers = kbd event5
  key = 003e000b00000000000000000000000000000000000000000000000000000000
  mouse buttons = 0
  mouse wheels = 0
bus = 25, name = ThinkPad Extra Buttons
  handlers = kbd event6 rfkill
  key = 00000000180400000000000000000000001000000000000000000000000000000001501b001020050000000001104000000e0000000000000000000000000000
  mouse buttons = 0
  mouse wheels = 0
bus = 17, name = SynPS/2 Synaptics TouchPad
  handlers = mouse0 event7
  key = 000000000000042000000000000300000000000000000000000000000000000000000000000000000000000000000000
  abs = 0000000011000003
  mouse buttons = 2
  mouse wheels = 0
bus = 1, name = HDA Digital PCBeep
  handlers = kbd event


Create a new paste based on this one


Comments: