summaryrefslogtreecommitdiffstats
path: root/ChangeLog
blob: 40d3344185266b14d47ce7456b56cf1f827ad3d7 (plain)
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
2003-03-28 17:47  Frederic Lepied <flepied@mandrakesoft.com>

	* ldetect-lst.spec: 0.1.7-12mdk

2003-03-28 17:46  Frederic Lepied <flepied@mandrakesoft.com>

	* lst/Cards+: activated 3D on i830, i845, i85x and i865

2003-03-27 14:58  Gwenole Beauchesne <gbeauchesne@mandrakesoft.com>

	* ldetect-lst.spec: 0.1.4-20mdk

2003-03-27 14:55  Gwenole Beauchesne <gbeauchesne@mandrakesoft.com>

	* lst/pcitable: Add newer AMD-81111 USB Controller

2003-03-27 14:53  Gwenole Beauchesne <gbeauchesne@mandrakesoft.com>

	* lst/pcitable: Suggest "usb-ohci" for AMD-8111 USB

2003-03-27 14:43  Gwenole Beauchesne <gbeauchesne@mandrakesoft.com>

	* lst/pcitable: Suggest "usb-ohci" for AMD-8111 USB

2003-03-27 14:15  Gwenole Beauchesne <gbeauchesne@mandrakesoft.com>

	* lst/pcitable: Add BCM >= 5704 cards ("bcm5700" driver)

2003-03-27 14:07  Gwenole Beauchesne <gbeauchesne@mandrakesoft.com>

	* lst/pcitable: Add Adaptec U320 cards ("aic79xx" driver)

2003-03-27 14:04  Gwenole Beauchesne <gbeauchesne@mandrakesoft.com>

	* Makefile: Add support for standard rpm and localrpm targets from
	HEAD

2003-03-27 14:03  Gwenole Beauchesne <gbeauchesne@mandrakesoft.com>

	* lst/pcitable: Merge in AMD K8 pci.ids

2003-03-25 15:52  Frederic Lepied <flepied@mandrakesoft.com>

	* ldetect-lst.spec: 0.1.7-11mdk

2003-03-25 15:43  adelorbeau

	* lst/pcitable: Correction for the intel sound card

2003-03-20 21:12  adelorbeau

	* ldetect-lst.spec: Forgot to change the version tag

2003-03-20 20:35  adelorbeau

	* ldetect-lst.spec: New package for the intel sound card.

2003-03-20 20:32  adelorbeau

	* lst/pcitable: Move an intel sound card from i810_rng to
	i810_audio because rng do not work very well with this sound card.

2003-03-20 17:49  Fançois Pons <fpons@mandrakesoft.com>

	* lst/Cards+: Added card SiS 650 for planel sucking.

2003-03-19 22:09  Frederic Lepied <flepied@mandrakesoft.com>

	* Makefile, ldetect-lst.spec: added support for standard rpm and
	localrpm targets.

2003-03-18 13:41  Nicolas Planel <nplanel@mandrakesoft.com>

	* lst/pcitable: Fix sis usb2 module name and graphics card name

2003-03-12 19:13  Pixel <pixel@mandrakesoft.com>

	* lst/usbtable, ldetect-lst.spec: add a MemoryStick reader and a
	usb floppy drive from ghibo

2003-03-11 15:57  Frederic Lepied <flepied@mandrakesoft.com>

	* lst/pcitable: corrected tabulation

2003-03-11 15:25  Frederic Lepied <flepied@mandrakesoft.com>

	* ldetect-lst.spec: 0.1.7-8mdk

2003-03-11 15:25  Frederic Lepied <flepied@mandrakesoft.com>

	* lst/pcitable: nForce2 net => nvnet

2003-03-10 15:27  Frederic Lepied <flepied@mandrakesoft.com>

	* ldetect-lst.spec: 0.1.7-8mdk

2003-03-10 15:23  Frederic Lepied <flepied@mandrakesoft.com>

	* lst/Cards+: NForce works with nv driver now

2003-03-06 18:36  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* ldetect-lst.spec: 0.1.7-7mdk

2003-03-06 14:24  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/usbtable: fix some webcam description in harddrake2

2003-03-05 15:16  Frederic Lepied <flepied@mandrakesoft.com>

	* ldetect-lst.spec: 0.1.7-6mdk

2003-03-05 15:07  Frederic Lepied <flepied@mandrakesoft.com>

	* lst/usbtable: tagged hisax_st5481 as ISDN

2003-03-04 11:57  Frederic Lepied <flepied@mandrakesoft.com>

	* lst/pcitable: integrated NVidia ids from XFree 4.3

2003-02-28 21:19  adelorbeau

	* lst/pcitable: Modifie the 3c920 Tornado to use the module 3c90x
	(added in the last kernel)

2003-02-28 14:27  Fançois Pons <fpons@mandrakesoft.com>

	* ldetect-lst.spec, lst/pcitable: added support for ltmodem

2003-02-27 20:15  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec: updated pcitable (pci.ids, redhat pcitable,
	modules.pcimap, http://www.yourvote.com/pci/vendors.txt)

2003-02-27 18:26  Pixel <pixel@mandrakesoft.com>

	* convert/merge2pcitable.pl: skip module pci from modules.pcimap

2003-02-27 18:24  Pixel <pixel@mandrakesoft.com>

	* convert/README.pcitable: cleanup of modules.* extraction

2003-02-27 17:56  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: merge with 2.4.21.0.pre4.10mdk modules.pcimap

2003-02-27 17:51  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: merge with hwdata-0.75

2003-02-27 17:50  Pixel <pixel@mandrakesoft.com>

	* lst/Cards+: add "NVIDIA GeForce FX (generic)"

2003-02-27 17:39  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: update with http://www.yourvote.com/pci/vendors.txt

2003-02-27 17:36  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: merge with latest pci.ids

2003-02-27 17:36  Pixel <pixel@mandrakesoft.com>

	* lst/Cards+: add "SiS" generic card

2003-02-25 14:00  Pixel <pixel@mandrakesoft.com>

	* lst/MonitorsDB: add one

2003-02-19 19:42  Pixel <pixel@mandrakesoft.com>

	* lst/MonitorsDB: add some more (from Christophe Combelles)

2003-02-19 19:16  Pixel <pixel@mandrakesoft.com>

	* lst/MonitorsDB: some monitors (from Christophe Combelles)

2003-02-18 23:25  Stefan Siegel <siegel@linux-mandrake.com>

	* lst/pcitable: added 0x8086 0x1960 0x0e11 0xc000 "Compaq Computer
	Corporation|Remote Insight Controller"

2003-02-17 06:14  tkamppeter

	* ldetect-lst.spec: 0.1.7-3mdk

2003-02-15 00:55  tkamppeter

	* lst/: ScannerDB, scannerconfigs: Added some missing drivrs to
	ScannerDB, Updates for SANE patches.

2003-02-15 00:28  adelorbeau

	* lst/pcitable: Correction ohci => ehci

2003-02-13 10:26  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* ldetect-lst.spec: 0.1.7-2mdk

2003-02-13 10:25  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* Makefile: make log computation faster, do incremental log

2003-02-13 03:34  tkamppeter

	* lst/: Makefile, ScannerDB, scannerconfigs: Restructured and
	updated ScannerDB. For easy, fully automatic generation of
	ScannerDB with Scannerdrake added scannerconfigs file which
	contains the lines to put into the config files
	(/etc/sane.d/*.conf) of the scanner drivers. Now Scannerdrake
	should be able to set up nearly every SANE-supported scanner.

2003-02-12 17:29  Frederic Lepied <flepied@mandrakesoft.com>

	* ldetect-lst.spec: 0.1.7-1mdk

2003-02-12 17:15  adelorbeau

	* lst/pcitable: Add intel USB controller

2003-02-10 23:16  adelorbeau

	* lst/pcitable: Add bcm4400 and bcm5700 for two network cards.

2003-02-10 15:46  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: fix #286

2003-02-06 17:55  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: fix bug #1322

2003-02-06 16:18  Frederic Lepied <flepied@mandrakesoft.com>

	* lst/: Cards+, pcitable: added Intel 865 entry

2003-02-05 13:58  Pixel <pixel@mandrakesoft.com>

	* lst/: Cards+, pcitable: add Intel(R) 852GM/855GM

2003-02-01 21:31  Pixel <pixel@mandrakesoft.com>

	* lst/usbtable: add a memory stick (bug #798)

2003-01-30 12:05  Guillaume Cottenceau <gc@mandrakesoft.com>

	* lst/MonitorsDB: adding LG StudioWorks 995E thx to Jure Repinc
	<jlp@holodeck1.com>

2003-01-29 09:38  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/ScannerDB: typo fix from the communauty (fix "unknown line
	1574 ( #for hardware detection)")

2003-01-28 12:09  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* ldetect-lst.spec: 0.1.6-1mdk

2003-01-28 09:41  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: i810_audio and snd-intel8x0 only handle
	0x10de:0x01b1 as a sound card.	0x10de:0x01b0 is *not* a sound card
	but a sub device of the sound card exported as a pci function in
	the same way most btxxx tv cards export their sound subdevice as a
	separate pci function.
	
	this fix the "detect two sound cards" on nforce2 chips

2003-01-27 22:49  Guillaume Cottenceau <gc@mandrakesoft.com>

	* lst/MonitorsDB: Iiyama HM704UTC, Diamondtron thx to Danny Tholen
	<danny@mailmij.org>

2003-01-26 16:28  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: add various (thanks to Thomas Backlund)

2003-01-25 23:27  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: add a "PCI Bridge" entry (thanks to Quel Qun)

2003-01-25 21:46  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: add network card (thanks to Thomas Backlund)

2003-01-25 15:54  Pixel <pixel@mandrakesoft.com>

	* lst/MonitorsDB: cf bug #927

2003-01-22 21:04  Guillaume Cottenceau <gc@mandrakesoft.com>

	* lst/MonitorsDB: add Samsung SyncMaster 955DF from Rolf Pedersen
	<rolfpedersen@mindspring.com>

2003-01-22 21:03  Guillaume Cottenceau <gc@mandrakesoft.com>

	* lst/MonitorsDB: add Belinea 101536 from Pascal
	<pascalc6@wanadoo.fr>

2003-01-22 21:02  Guillaume Cottenceau <gc@mandrakesoft.com>

	* lst/MonitorsDB: add Belinea 101525 thx to Pascal Cavy
	<pascal@vmfacility.fr>

2003-01-22 12:55  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec, lst/Cards+: use option ForceInit for
	Savage/IX-MV (see bug #730)

2003-01-22 00:44  Pixel <pixel@mandrakesoft.com>

	* Makefile: help people not forgetting to commit

2003-01-22 00:42  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec, lst/usbtable: add a mouse in usbtable

2003-01-12 15:38  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec: o lst/pcitable: - merge with modules.pcimap
	from kernel 2.4.21.pre2.1mdk-1-1mdk - merge with
	http://www.yourvote.com/pci/vendors.txt - merge with pci.ids -
	merge with redhat's hwdata 0.62   (Radeon 9000, Radeon Mobility
	9000 and Radeon 9700 use "Card:ATI Radeon"   until someone finds
	they need a special entry in Cards+ (as for redhat, they   specify
	the CHIPSET, why?)) o lst/usbtable: - merge with usb.ids,v 1.111 -
	merge with modules.usbmap from kernel 2.4.21.pre2.1mdk-1-1mdk

2003-01-12 15:37  Pixel <pixel@mandrakesoft.com>

	* lst/Makefile: cleanup .pcitable and .usbtable

2003-01-12 15:29  Pixel <pixel@mandrakesoft.com>

	* lst/usbtable: merge with usb.ids,v 1.111 2003/01/02

2003-01-12 15:28  Pixel <pixel@mandrakesoft.com>

	* convert/README.pcitable: add example to update usbtable from
	usbutils

2003-01-12 15:26  Pixel <pixel@mandrakesoft.com>

	* lst/usbtable: merge with modules.usbmap from kernel
	2.4.21.pre2.1mdk-1-1mdk

2003-01-12 15:24  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: merge with modules.pcimap from kernel
	2.4.21.pre2.1mdk-1-1mdk

2003-01-12 15:16  Pixel <pixel@mandrakesoft.com>

	* convert/README.pcitable: fix typo

2003-01-12 15:15  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: merge with http://www.yourvote.com/pci/vendors.txt

2003-01-12 15:08  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: i don't know what "Secondary" video cards, so be on
	the safe side and use "unknown"

2003-01-12 15:02  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: merge with pci.ids (version Sat 2003-01-04
	11:00:02)

2003-01-12 14:53  Pixel <pixel@mandrakesoft.com>

	* convert/merge2pcitable.pl: cleanup class AMD

2003-01-12 14:46  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: - merge with redhat's hwdata 0.62 (redhat 8.1 beta1
	phoebe) - Radeon 9000, Radeon Mobility 9000 and Radeon 9700 use
	"Card:ATI Radeon" until someone finds they need a special entry in
	Cards+ (as for redhat, they specify the CHIPSET, why?)

2003-01-12 14:40  Pixel <pixel@mandrakesoft.com>

	* convert/merge2pcitable.pl: update "known errors in redhat's
	pcitable"

2003-01-12 14:33  Pixel <pixel@mandrakesoft.com>

	* convert/merge2pcitable.pl: don't be too strict with redhat
	pcitable

2003-01-12 14:25  Pixel <pixel@mandrakesoft.com>

	* lst/MonitorsDB: merge with redhat's hwdata 0.62 (redhat 8.1 beta1
	phoebe), including sorting entries

2002-12-19 23:44  Pablo Saratxaga <pablo@mandrakesoft.com>

	* lst/MonitorsDB: Added Iiyama MF-8115 model; normalized a bit the
	text strings of Iiyama models

2002-12-17 12:42  Stew Benedict <sbenedict@mandrakesoft.com>

	* lst/MonitorsDB: New Apple TiBook display

2002-12-04 21:20  Nicolas Planel <nplanel@mandrakesoft.com>

	* lst/pcitable: Add ID for megaraid module, new Perc Card  (from
	version 1.18d)

2002-12-03 15:24  Nicolas Planel <nplanel@mandrakesoft.com>

	* lst/pcitable: Add ID for bcm5700 (Gigabit ethernet card)

2002-11-25 17:58  Nicolas Planel <nplanel@mandrakesoft.com>

	* lst/pcitable: snd-via8233 renamed snd-via82xx (alsa-rc6)

2002-11-25 17:53  Nicolas Planel <nplanel@mandrakesoft.com>

	* lst/pcitable: Fix order

2002-11-25 17:47  Nicolas Planel <nplanel@mandrakesoft.com>

	* lst/usbtable: 
	Add ID 0x1110/0x900f 0x1110/0x9010 for Sagem Fast 800 ADSL modem

2002-11-05 01:10  Stefan Siegel <siegel@linux-mandrake.com>

	* lst/pcitable: added correct kernel module (0x11c1 0x5811)

2002-11-04 23:59  Stefan Siegel <siegel@linux-mandrake.com>

	* lst/pcitable: added 2 new devices

2002-10-28 18:50  Damien Chaumette <dchaumette@mandrakesoft.com>

	* lst/pcitable: change Hsf & Hcf winmodems modules names from
	"Bad:..." to "H[c,s]f:..."

2002-10-28 13:40  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: add new driver from alsa cvs

2002-10-24 14:17  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: switch to e100 for 0x8086:0x1229 (0x8086:0x000a)
	since eepro100 seems very buggy and often failed to open the link

2002-10-23 17:18  Damien Chaumette <dchaumette@mandrakesoft.com>

	* lst/pcitable: add KT400 CPU to PCI Bridge VT8377 add KT400's
	PCI-to-PCI Bridge (AGP)

2002-10-21 17:40  Frederic Lepied <flepied@mandrakesoft.com>

	* ldetect-lst.spec: 0.1.4-19mdk

2002-10-21 17:35  Frederic Lepied <flepied@mandrakesoft.com>

	* lst/pcitable: added missing savage id

2002-10-15 09:35  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/usbtable: add support for usb video devices (florent
	beranger)

2002-10-11 18:59  Damien Chaumette <dchaumette@mandrakesoft.com>

	* lst/pcitable: fix typo

2002-10-10 19:59  Yves Duret <yduret@mandrakesoft.com>

	* lst/ScannerDB: fix some Hewlett-Packard scanner from niash
	backend

2002-10-10 11:52  Damien Chaumette <dchaumette@mandrakesoft.com>

	* lst/pcitable: move HSF/HCF modems module from "unknown" to
	"Bad:www.linmodems.org"

2002-10-02 13:36  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec: add "PreReq: perl-base" (so that
	update-ldetect-lst works)

2002-10-01 20:56  Guillaume Cottenceau <gc@mandrakesoft.com>

	* lst/pcitable: change 0x8086 0x1059 from eepro100 to e100 per
	suggestion of cory.meisch@hp.com

2002-09-18 02:05  Nicolas Planel <nplanel@mandrakesoft.com>

	* lst/pcitable: Fix some errors ... :(

2002-09-18 01:53  Nicolas Planel <nplanel@mandrakesoft.com>

	* lst/pcitable: Add new ID from modules.pcimap

2002-09-18 01:02  Nicolas Planel <nplanel@mandrakesoft.com>

	* lst/pcitable: Add nForce2 ID

2002-09-17 17:40  Fançois Pons <fpons@mandrakesoft.com>

	* ldetect-lst.spec, lst/pcitable: added missing G450 DualHead.

2002-09-12 15:14  Pixel <pixel@mandrakesoft.com>

	* lst/Cards+: fix typo

2002-09-12 15:00  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: add a dvb and a saa7134 cards

2002-09-12 14:27  Damien Chaumette <dchaumette@mandrakesoft.com>

	* ldetect-lst.spec: 17mdk

2002-09-12 12:27  Pixel <pixel@mandrakesoft.com>

	* lst/: Cards+, pcitable: add "sw_cursor" for card S3
	Inc.|86C270-294 Savage/IX-MV [DISPLAY_VGA] (vendor:5333 device:8c12
	subv:1179 subd:0001) as reported:
	
	> christoph.blume@gmx.de writes:
	>
	> > in RC2 I have following Problems. I must edit my XF86Config
	> > File and set the "sw_cursor" Option for my graphic card. In
	> > MDK 8.2 I can choose this during the installation, i think
	> > this feature is good for beginners.
	>
	> [...]
	>
	> > My Computer is an Toshiba Satellite Pro 4310, Celeron 600,
	> > 13"DSTN Display (800x600) and a Savage Graphics Chip.

2002-09-12 12:26  Pixel <pixel@mandrakesoft.com>

	* lst/usbtable: add some removable entries

2002-09-09 17:46  Damien Chaumette <dchaumette@mandrakesoft.com>

	* lst/pcitable: - move last ISDN cards to "ISDN:module_name" syntax

2002-09-06 17:05  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: add ohci1394 driver to a few ohci controller on
	fred request

2002-09-06 14:18  Nicolas Planel <nplanel@mandrakesoft.com>

	* lst/pcitable: Fixing 0x1028/0x000a name s/Si/Di/ (reported by
	Dell)

2002-09-05 18:10  Fançois Pons <fpons@mandrakesoft.com>

	* ldetect-lst.spec, lst/Cards+, lst/pcitable: fix for GeForce NV25
	now using fbdev or nvidia instead of nv.

2002-09-05 16:32  Fançois Pons <fpons@mandrakesoft.com>

	* lst/: Cards+, pcitable: GeForce4 0x10de/0x0250 only works with
	fbdev

2002-09-05 16:16  Guillaume Cottenceau <gc@mandrakesoft.com>

	* lst/pcitable: fix nplanel boulet * 2, only one TAB between fields

2002-09-05 16:10  Guillaume Cottenceau <gc@mandrakesoft.com>

	* lst/pcitable: fix planel bouletrie (duplicate entry..)

2002-09-05 16:05  Guillaume Cottenceau <gc@mandrakesoft.com>

	* ldetect-lst.spec: [no log message]

2002-09-03 13:09  Frederic Lepied <flepied@mandrakesoft.com>

	* lst/pcitable: corrected GeForce4 Ti4600 description

2002-09-02 10:12  Erwan Velu <erwan@mandrakesoft.com>

	* lst/pcitable: Adding firewire module for vaio

2002-08-29 16:50  Nicolas Planel <nplanel@mandrakesoft.com>

	* lst/pcitable: Add new ID for qla2200 driver 0x1077/0x1216

2002-08-29 16:37  Nicolas Planel <nplanel@mandrakesoft.com>

	* lst/pcitable: Add new ID 0x10ec/0x8169 : Realtek Gigabit ethernet
	adapter RTL8169

2002-08-29 15:38  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: add new sound driver

2002-08-29 00:29  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec, convert/usb-removables.pl, lst/usbtable: - add
	"Removable:floppy", "Removable:memory_card", "Removable:camera" -
	usb-removables.pl is useful to update usbtable Removable:xxx based
	on device descriptions

2002-08-28 17:21  Frederic Lepied <flepied@mandrakesoft.com>

	* lst/pcitable: added r128 from HP

2002-08-27 00:35  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec, lst/pcitable, lst/usbtable: - fix syntax error
	in usbtable (and prevent this to happen again)

2002-08-27 00:34  Pixel <pixel@mandrakesoft.com>

	* convert/merge2pcitable.pl: enhance error detection (too many
	double quotes)

2002-08-26 23:49  Stefan Siegel <siegel@linux-mandrake.com>

	* lst/pcitable: added another "ohci1394" card

2002-08-26 09:10  Pablo Saratxaga <pablo@mandrakesoft.com>

	* lst/MonitorsDB: Added 4 monitors

2002-08-26 05:01  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* ldetect-lst.spec: 0.1.4-12mdk

2002-08-26 00:16  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/usbtable: add dc100 webcam

2002-08-26 00:12  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: add new modem

2002-08-26 00:10  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/usbtable: add unknwon hub

2002-08-26 00:07  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/isatable: add unknown modem

2002-08-26 00:04  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/usbtable: add:   o ATI|USB Cable 205   o CCYU
	TECHNOLOGY|EasyDisk Portable Device   o
	Datafab/Unknown|Datafab-based Reader   o
	Datafab/Unknown|Datafab-based Reader   o EagleTec|External Hard
	Disk   o In-System Design|Portable USB Harddrive V2   o In-System
	Design|Portable USB Harddrive V2   o In-System Design|USB Storage
	Adapter V2   o JMTek|USBDrive	o Minds@Work|Digital Wallet   o
	SanDisk Corp.|ImageMate SDDR-12   o Sony Corp.|PEG Mass Storage   o
	Sony Corp.|Portable USB Harddrive V2
	
	- use usb-storage:   o Datafab Systems Inc.|Simple Technologies
	Flash Card Reader"   o Datafab Systems, Inc.|USB to CompactFlash +
	SmartMedia Combo (LC1)"   o Casio Computer Co., Ltd.|QV-8000SX
	Digicam"   o Freecom/Memorex|USB-IDE/BBQ Series 100 CD-R/RW"   o
	Hagiwara Sys-Com|FlashGate"   o Hagiwara Sys-Com|FlashGate
	SmartMedia Card Reader"   o In-System Design|USB/IDE Bridge
	(ATA/ATAPI)"   o LaCie|HardDrive"   o Linksys Inc.|SCM eUSB
	SmartMedia Card Reader / Camedia MAUSB-2"   o Microtech|CameraMate
	(DPCM_USB)"   o Microtech|SCSI-DB25 SCSI Bridge [shuttle]"   o
	Microtech|SCSI-HD50 SCSI Bridge [shuttle]"   o Minolta|Dimage S304"
	  o Minolta|Dimage S304"   o PNY/Datafab|PNY/Datafab CompactFlash &
	SmartMedia Card Reader"   o SanDisk Corp.|Compact Flash Reader /
	ImageMate SDDR-05a"   o SanDisk Corp.|SDDR-09-01 ImageMate
	SmartMedia Reader"   o SanDisk Corp.|SDDR-31 ImageMate CompactFlash
	Reader / ImageMate SDDR-31"   o SIIG/Datafab|SIIG/Datafab Memory
	Stick+CompactFlash & SmartMedia Card Reader/Writer [eusb]"   o
	Simple Tech/Datafab|Simple Tech/Datafab CompactFlash  & SmartMedia
	Card Reader"   o Sony Corp.|DSC-S30/S70/S75/505V/F505/F707
	Cybershot Digital Camera",   o Sony Corp.|MemoryStick MSC-U01N
	Reader"   o Sony Corp.|MSAC-US1 MemoryStick Reader"   o Sony
	Corp.|NW-MS7 Walkman MemoryStick Reader"   o Sony Corp.|Sony
	HandyCam MemoryStick Reader"   o Y-E Data, Inc.|FlashBuster-U"

2002-08-25 22:38  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/usbtable: -add :	 o Frontier Labs|Nex II Digital   o
	Hitachi|DVD-CAM DZ-MV100A Camcorder   o Iomega|USB Clik! 40   o
	Panasonic|LS-120 Camera   o Shuttle Technology Inc.|eUSB ATA/ATAPI
	Adapter   o Shuttle Technology Inc.|eUSB CompactFlash Adapter	o
	Shuttle Technology Inc.|eUSCSI Bridge	o Shuttle Technology
	Inc.|eUSCSI Bridge - bettter description for:	o ScanLogic
	Corp.|SL11R-IDE [IDE Bridge] - use usb-storage for:   o Belkin
	Components|SCSI Adapter   o Fuji Photo Film Co., Ltd.|FinePix 4700
	Zoom / FinePix 1400 Zoom digital camrea   o Shuttle Technology
	Inc.|CD-RW Devicee   o Shuttle Technology Inc.|eUSB MultiMedia Card
	Reader / eUSB MMC Adapter   o Shuttle Technology Inc.|eUSB
	SmartMedia Card Reader / ImageMate SDDR09   o Shuttle Technology
	Inc.|E-USCSI Bridge   o Shuttle Technology Inc.|Hifd

2002-08-25 22:11  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/usbtable: add: - Lexar|Jumpshot USB CF Reader -
	SIIG|CompactFlash Card Reader

2002-08-25 21:51  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/usbtable: - add:	 o Mitsumi|USB FDD   o
	Hewlett-Packard|CD-Writer Plus CD-4e"	o Microtech|CameraMate
	(DPCM_USB)   o Frontier Labs|Nex II Digital   o OCTAL,
	S.A.|PCBIT-USB ISDN Adapter" - handle with usb-storage :   o
	Mitsumi|CD-R/RW Drive"	 o Hewlett-Packard|CD-Writer Plus"   o
	Hewlett-Packard|CD-Writer Plus 8200e/Mesa"   o ScanLogic Corp.|IDE
	Bridge" - add name to unknown scanner: "Trust|Flat scan USB 1920t
	flat scan USB 19200

2002-08-25 21:48  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/isatable: add a new modem

2002-08-25 21:37  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/usbtable: hp 8200e cd burner works with usb-storage

2002-08-25 21:30  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcmciatable: add PCMCIA Compaq iPAQ

2002-08-25 21:21  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/isatable: add Apache A56SP-HCF modem

2002-08-25 21:17  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: add intel modem 536EP v.92

2002-08-25 21:11  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/usbtable: add Motorota Surfboard 4200 cable modem

2002-08-22 18:01  Damien Chaumette <dchaumette@mandrakesoft.com>

	* lst/pcitable: add Nforce Ethernet Controler

2002-08-22 15:45  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec, lst/usbtable: use "Mouse:USB|Microsoft
	Explorer" for those mice

2002-08-21 20:38  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec: add Url (thanks to Yura Gusev)

2002-08-21 18:10  Nicolas Planel <nplanel@mandrakesoft.com>

	* lst/pcitable: Fix Firewire modules (unknown => ohci1394) on
	Audigy interface (Working now) 0x1102/0x4001

2002-08-20 21:32  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* Makefile: default RPM to ~/rpm as i did in ldetect

2002-08-20 21:31  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* ldetect-lst.spec: 0.1.4-10mdk

2002-08-20 21:31  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* Makefile: split rpm target into rpm and srpm target as i did for
	ldetect

2002-08-20 17:54  tkamppeter

	* lst/usbtable: s/Seiko Epson/Epson/ ("Seiko" confuses the users).

2002-08-20 17:26  tkamppeter

	* lst/usbtable: s/Epson/Seiko Epson/ (to match with names in
	ScannerDB).

2002-08-20 12:06  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* ldetect-lst.spec: 0.1.4-9mdk

2002-08-20 12:04  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/usbtable: fix broken stuff comitted by till

2002-08-20 02:19  tkamppeter

	* lst/ScannerDB: Added new Epson models to scanner database for
	scannerdrake.

2002-08-20 00:14  tkamppeter

	* lst/usbtable: Added new scanner models: Epson Perfection 660,
	1660 Photo, 2400 Photo Added photo card readers of Epson Stylus
	Photo 915/915 Changed comment of USB vendor 0x04b8 model 0x0005 to
	"Epson Corp.|USB Printer", nearly all Epson printers have this ID
	pair, so no program should report "Epson Stylus Color 760" then.

2002-08-18 22:26  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/isatable: 2 unknown cards were in fact "Media Vision"
	(reported by Danny Tholen <danny at mailmij dot org >)

2002-08-17 14:31  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec, lst/Cards+, lst/pcitable: G550 *are* DualHead

2002-08-15 22:43  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: while updating from alsa-0.9 rc1 to rc2, i miss one
	new supported card

2002-08-15 22:28  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/isatable: - resync with alsa-driver-0.9rc3 - s/snd-card/snd -
	snd-dt0197h is snd-dt019x now

2002-08-15 22:19  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: resync with alsa-driver-0.9rc3

2002-08-13 17:36  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec, lst/Cards+, lst/pcitable: - add entry "Intel
	845" using driver i810 (fix bug #60) - use accel for SiS 86C326
	(tested on a box here)

2002-08-08 20:40  Pixel <pixel@mandrakesoft.com>

	* lst/MonitorsDB: add a Philips monitor (given by Frederik Himpe)

2002-08-08 01:38  Pixel <pixel@mandrakesoft.com>

	* Makefile, lst/Makefile: stricter checks

2002-08-08 01:37  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: merge with hwdata-0.36-1

2002-08-08 01:36  Pixel <pixel@mandrakesoft.com>

	* convert/verify_Cards.pl: adapt to new Xconfig::card

2002-08-08 01:32  Pixel <pixel@mandrakesoft.com>

	* lst/usbtable: normalize

2002-08-08 01:21  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: normalize

2002-08-07 13:07  Pixel <pixel@mandrakesoft.com>

	* lst/MonitorsDB: update with redhat's hwdata-0.36-1

2002-08-06 17:38  Pixel <pixel@mandrakesoft.com>

	* lst/usbtable: fix typo (s/0xa518/0x0518/) for ov518

2002-08-06 17:11  Pixel <pixel@mandrakesoft.com>

	* lst/usbtable: add ov518

2002-08-06 17:06  Pixel <pixel@mandrakesoft.com>

	* lst/: pcitable, usbtable: rename "Seiko Epson" in "Epson"

2002-08-06 17:05  Pixel <pixel@mandrakesoft.com>

	* lst/MonitorsDB: replace "Laptop Display Panel" with "Flat Panel"

2002-08-06 15:26  Gwenole Beauchesne <gbeauchesne@mandrakesoft.com>

	* ldetect-lst.spec: 0.1.4-6mdk

2002-08-06 15:22  Gwenole Beauchesne <gbeauchesne@mandrakesoft.com>

	* Makefile: Add changelog rule to use cvs2cl for ChangeLog file,
	much nicer

2002-08-06 12:42  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: fix vendor for a megaraid (s/Dell/AMI/)

2002-08-05 22:09  Juan Quintela <quintela@mandrakesoft.com>

	* lst/pcitable: bcm5700 is story.  Great live to tg3

2002-08-02 12:00  Pixel <pixel@mandrakesoft.com>

	* lst/Cards+: add XaaNoPixmapCache for i815 too (per Mattias
	Dahlberg request)

2002-08-01 12:20  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: switch Danny Tholen sound card from oss to alsa

2002-08-01 00:29  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec, lst/Cards+, lst/pcitable: Cards+ & pcitable:
	add "ATI Rage 128 TVout" with flag FB_TVOUT

2002-07-29 17:46  Nicolas Planel <nplanel@mandrakesoft.com>

	* lst/pcitable: Add and fix name for via-rhine module
	(0x3065,0x3106,0x3053)

2002-07-28 23:58  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec, convert/Cards2CardsNames.pl,
	convert/README.pcitable, lst/.cvsignore, lst/Cards+, lst/Makefile,
	lst/pcitable: - drop CardsNames (not used anymore by drakx) -
	Cards+: add Option "XaaNoPixmapCache" for i810 as suggested on
	cooker. 	   to be removed when the kernel works ok  - Cards+
	(and pcitable): to cleanup the tree in XFdrake	 - remove
	"Spacewalker HOT", "Octek", "Creative Blaster Exxtreme",    
	"Atrend", "ATrend", "SPEA", "Spider", "Actix", "Canopus", "Cardex" 
	   entries   - remove "Generic VGA compatible" and entries using it
	  - remove "Unsupported VGA compatible"   - replace "SMI" by
	"Silicon Motion"   - replace "ELSA" by "Elsa"	- replace "LeadTek"
	by "Leadtek"

2002-07-26 12:23  Erwan Velu <erwan@mandrakesoft.com>

	* lst/pcitable: Changing spaces to tabs for nvidia entries

2002-07-26 11:37  Erwan Velu <erwan@mandrakesoft.com>

	* lst/: Cards+, pcitable: Fixing NVIDIA Geforce 4 entries

2002-07-25 15:18  Nicolas Planel <nplanel@mandrakesoft.com>

	* lst/pcitable: Add ID (9904) (990a) for 3Com card supported in the
	kernel but not in pcitable ! fix module name for 990[2-4] 990[8-a]
	=> module name : 3c990

2002-07-21 23:18  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec: - pcitable	 - bttc -> bttv (typo fix)   -
	snd-cs461x -> snd-cs46xx (since snd-cs461x doesn't exist)   - fix
	many typos (please use make test!!)   - all new rh id're merged
	(titi)	 - new eepro100 IDs (nplanel)	- new Promise 20276
	(nplanel)

2002-07-21 23:18  Pixel <pixel@mandrakesoft.com>

	* convert/verify_Cards.pl: adapt to new Xconfigurator.pm

2002-07-21 23:10  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: - bttc -> bttv (typo fix) - snd-cs461x ->
	snd-cs46xx (since snd-cs461x doesn't exist) - fix many typos
	(please use make test!!)

2002-07-20 19:56  Pixel <pixel@mandrakesoft.com>

	* lst/Cards+: add Option "sw_cursor" for S3 Trio3D and SiS 6326

2002-07-20 18:49  Nicolas Planel <nplanel@mandrakesoft.com>

	* lst/pcitable: Add new eepro100 ID from Intel ICH4 Spec
	(0x103b,0x103c)

2002-07-20 12:12  Pixel <pixel@mandrakesoft.com>

	* lst/Cards+: - cleanup the comment at beginning - drop entries
	using any of RAMDAC CLOCKCHIP DACSPEED (obsolete stuff)

2002-07-19 14:48  Nicolas Planel <nplanel@mandrakesoft.com>

	* lst/pcitable: Another ID for eepro100 NIC (8086/103a)

2002-07-19 13:46  Nicolas Planel <nplanel@mandrakesoft.com>

	* lst/pcitable: 
	
	Add ID for new Promise 20276 Fix VT8235 USB2.0 name

2002-07-18 17:40  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: more vendors sanitazation

2002-07-18 17:26  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: - all new rh id're merged - normalize amd|compacq
	vendors name

2002-07-18 17:11  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: - add more cards from rh - one unknown card use
	8139too now - normalize some vendor names which've different
	versions

2002-07-17 23:42  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec, lst/Cards+, lst/pcitable: - pcitable: update
	with www.begent.co.uk/pcids.htm   especially interesting are the
	G200,G400,G450 multi head categorisation - Cards+: new entries for
	DualHead & QuadHead matrox

2002-07-17 23:41  Pixel <pixel@mandrakesoft.com>

	* convert/: README.pcitable, merge2pcitable.pl: special option for
	watching subids, but beware of it!

2002-07-17 23:26  Pixel <pixel@mandrakesoft.com>

	* convert/: README.pcitable, merge2pcitable.pl: add handling for
	pci ids from http://www.begent.co.uk/pcids.htm

2002-07-17 23:25  Pixel <pixel@mandrakesoft.com>

	* lst/MonitorsDB: cleanup generic monitors

2002-07-17 22:46  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: normalize and drop unneeded use of subids

2002-07-17 22:05  Pixel <pixel@mandrakesoft.com>

	* convert/.cvsignore: [no log message]

2002-07-17 22:04  Pixel <pixel@mandrakesoft.com>

	* convert/Makefile: (clean): more cleanup

2002-07-17 22:04  Pixel <pixel@mandrakesoft.com>

	* convert/: Makefile, README.pcitable, xf86PciInfo2pcitable.c,
	xf86str.h: - drop getting info from XFree86 (XFree now uses
	http://pciids.sourceforge.net/) - nicer getting of kernel's info

2002-07-17 15:25  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/usbtable: fill empty string for visor from what real device
	reported (aka fix "pixel think the (null) bug is still there when
	it isn't"

2002-07-17 14:51  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec: - Cards+ + pcitable:   - add "ATI Radeon 8500"
	with no DRI_GLX   - add "SiS 6326 no_accel" with Option "no_accel" 
	 - add "NeoMagic 128XD" with special XaaNoScanline* options   - add
	"NeoMagic MagicMedia 256XL+" with Option "sw_cursor"   - add
	NEEDVIDEORAM for cards corresponding to /86c368|S3
	Inc|Tseng.*ET6\d00/	(hoping it will work: since the regexp was
	broken, it was never done.	 (it was applied on the module
	field of pcitable, instead of the description))    - remove CHIPSET
	except for cards which had needChipset	  - add UTAH_GLX,
	UTAH_GLX_EXPERIMENTAL	   (which card have them come from
	Xconfigurator.pm)    - add BAD_FB_RESTORE & BAD_FB_RESTORE_XF3

2002-07-17 14:50  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: - use new "SiS 6326 no_accel" - use new "NeoMagic
	128XD" - use new "Card:MagicMedia 256XL+" - use "Card:ATI Mach64
	Utah" for mach64 cards Utah-aware - use a special entry for Radeon
	8500

2002-07-17 14:49  Pixel <pixel@mandrakesoft.com>

	* lst/Cards+: - add "ATI Radeon 8500" with no DRI_GLX - add "SiS
	6326 no_accel" with Option "no_accel" - add "NeoMagic 128XD" with
	special XaaNoScanline* options - add "NeoMagic MagicMedia 256XL+"
	with Option "sw_cursor" - add NEEDVIDEORAM for cards corresponding
	to /86c368|S3 Inc|Tseng.*ET6\d00/   (hoping it will work: since the
	regexp was broken, it was never done.	  (it was applied on the
	module field of pcitable, instead of the description))	- remove
	CHIPSET except for cards which had needChipset - add UTAH_GLX,
	UTAH_GLX_EXPERIMENTAL	(which card have them come from
	Xconfigurator.pm) - add BAD_FB_RESTORE & BAD_FB_RESTORE_XF3

2002-07-17 14:46  Pixel <pixel@mandrakesoft.com>

	* lst/Makefile: add checking Cards+ in "make check"

2002-07-15 17:54  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: rh 7.3 beta merge, step 2 (66% done)

2002-07-15 17:20  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: rh b7.3 merge, first step (33% done)

2002-07-15 16:46  Pixel <pixel@mandrakesoft.com>

	* convert/merge2pcitable.pl: handle buggy redhat pcitable

2002-07-10 14:13  Erwan Velu <erwan@mandrakesoft.com>

	* lst/pcitable: adding 176 for geforce 4

2002-07-08 11:34  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: s/snd-card/snd/g

2002-07-07 13:39  Pixel <pixel@mandrakesoft.com>

	* lst/MonitorsDB: merge with redhat hwdata-0.32

2002-06-26 15:54  Gwenole Beauchesne <gbeauchesne@mandrakesoft.com>

	* lst/pcitable: - Merge AMD-8111 pci.ids from upstream pci.ids

2002-06-21 13:47  Gwenole Beauchesne <gbeauchesne@mandrakesoft.com>

	* ldetect-lst.spec, lst/pcitable: - Add more nForce things from
	Damien

2002-06-19 10:55  Guillaume Cottenceau <gc@mandrakesoft.com>

	* lst/pcitable: s/de4x5/tulip/ thanks to juan

2002-06-05 14:51  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: restore via8233 sound support

2002-05-24 11:36  Fançois Pons <fpons@mandrakesoft.com>

	* lst/pcitable: added 0x8086 0x1039

2002-05-16 17:01  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: change one cirrus from oss to alsa as alsa seems to
	be better for this one

2002-05-06 20:49  Pixel <pixel@mandrakesoft.com>

	* AUTHORS: [no log message]

2002-04-25 19:38  Fançois Pons <fpons@mandrakesoft.com>

	* ldetect-lst.spec: HP sync.

2002-04-25 19:37  Fançois Pons <fpons@mandrakesoft.com>

	* lst/usbtable: added HP wheel mouse and keyboard (need
	consolidation).

2002-04-25 19:36  Fançois Pons <fpons@mandrakesoft.com>

	* lst/pcitable: sync with HP stuff.

2002-04-07 22:11  Yves Duret <yduret@mandrakesoft.com>

	* lst/ScannerDB: added Agfa Snapscan Touch and fixed HP 2200c entry
	(unsupported both)

2002-03-21 13:56  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* ldetect-lst.spec: Provides: hwdata for newer kudzu

2002-03-14 18:44  Fançois Pons <fpons@mandrakesoft.com>

	* lst/pcitable: fixes ? in description (by titi)

2002-03-14 18:37  Fançois Pons <fpons@mandrakesoft.com>

	* ldetect-lst.spec, convert/merge2pcitable.pl: fixes for new
	release.

2002-03-14 18:32  Fançois Pons <fpons@mandrakesoft.com>

	* lst/: pcitable, usbtable: fix doubles.

2002-03-14 18:01  Fançois Pons <fpons@mandrakesoft.com>

	* lst/pcitable: fix titi sucking

2002-03-14 18:00  Erwan Velu <erwan@mandrakesoft.com>

	* lst/pcitable: Fixing wrong module for xircom pcmcia combo card

2002-03-14 17:57  Fançois Pons <fpons@mandrakesoft.com>

	* convert/merge2pcitable.pl: added check for verifying if a missing
	quote has been put on module or description.

2002-03-14 17:23  Erwan Velu <erwan@mandrakesoft.com>

	* lst/pcitable: Fixing SB Audigy processor and game port

2002-03-14 12:51  Yves Duret <yduret@mandrakesoft.com>

	* lst/ScannerDB: microtekX6 does not have Vendor string in scsi
	ids. (scisi over usb)

2002-03-13 12:26  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: disable snd-card-via8233 support because of bugs

2002-03-10 16:22  Yves Duret <yduret@mandrakesoft.com>

	* lst/ScannerDB: added ASK DEVICE

2002-03-05 21:44  Guillaume Cottenceau <gc@mandrakesoft.com>

	* lst/pcitable: seems that 0x1013 0x1100 "Cirrus Logic|CL 6729"
	uses oldskool i82365 rather than yenta_socket :-(

2002-03-05 12:45  Chmouel Boudjnah <chmouel@mandrakesoft.com>

	* lst/pcitable: Add USB2.0 Controller

2002-03-04 10:53  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: switch a card from alsa to oss

2002-03-04 08:59  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/usbtable: add an usb mouse (Andreas Simon)

2002-03-01 16:28  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* ldetect-lst.spec: changelog

2002-03-01 16:23  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: - 1 new card - 3 old card that hadn't any modules
	have one now - fix one typo (s!snd-es1938!snd-card-es1938)

2002-03-01 16:01  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/isatable: final batch of sb isapnp cards (alsa merge has been
	completed)

2002-03-01 15:50  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/isatable: final batch of cs423x isapnp cards

2002-03-01 15:17  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/isatable: as usual, more isapnp cards...

2002-03-01 14:49  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/isatable: new sound cards

2002-03-01 14:44  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/isatable: many new isapnp cards

2002-03-01 14:00  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/isatable: update

2002-03-01 13:52  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* ldetect-lst.spec: update my changes

2002-03-01 13:51  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/isatable: - sort db - add new cards

2002-03-01 13:38  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: add one more joystick

2002-03-01 13:26  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* ldetect-lst.spec: add my changes

2002-03-01 13:15  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: - fix another typo - resort the db - add a new i810

2002-03-01 13:10  Pixel <pixel@mandrakesoft.com>

	* Makefile, convert/merge2pcitable.pl, lst/Makefile: add some
	better checking especially for titi. use "make check"!!

2002-03-01 13:05  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: - fix a typo - add 15 cards - update 1 description

2002-03-01 12:43  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec: various s3 changes (Erwan)

2002-02-28 12:17  Erwan Velu <erwan@mandrakesoft.com>

	* lst/pcitable: Modified s3 entries

2002-02-28 12:16  Erwan Velu <erwan@mandrakesoft.com>

	* lst/pcitable: modified S3 supersavage

2002-02-28 00:23  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* ldetect-lst.spec: yves fsckd in the royal way and forget to
	commit his spec changes in cvs whereas he bashed a few hours before
	trainee doing this :-(

2002-02-28 00:02  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* ldetect-lst.spec: new package release

2002-02-27 23:41  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* ldetect-lst.spec: update

2002-02-27 23:40  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* ldetect-lst.spec: update changelog

2002-02-27 23:32  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: - fix 10 incorrect TV card names - add 15 new TV
	cards

2002-02-27 20:32  Guillaume Cottenceau <gc@mandrakesoft.com>

	* lst/pcitable: remove duplicate entry (quintela sucks)

2002-02-27 20:31  Guillaume Cottenceau <gc@mandrakesoft.com>

	* lst/pcitable: be sure to have \t everywhere

2002-02-27 12:42  Guillaume Cottenceau <gc@mandrakesoft.com>

	* lst/pcitable: three other O2 Micro CardBus controllers

2002-02-23 14:34  Fançois Pons <fpons@mandrakesoft.com>

	* lst/Cards+: added SiS 640 in card supported by XFree 4.

2002-02-22 16:30  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: s/53c7,8xx/sym53c8xx/

2002-02-20 22:13  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec: lst/usbtable: add 3 mice

2002-02-20 22:13  Pixel <pixel@mandrakesoft.com>

	* lst/usbtable: add 3 mice

2002-02-18 18:28  Yves Duret <yduret@mandrakesoft.com>

	* lst/ScannerDB: fix Connectix entries (qcam server)

2002-02-18 18:24  Yves Duret <yduret@mandrakesoft.com>

	* lst/ScannerDB: added support for Hewlett-Packard OfficeJet series

2002-02-18 17:22  Yves Duret <yduret@mandrakesoft.com>

	* lst/ScannerDB: fix Bell and Howell entries

2002-02-18 15:09  Fançois Pons <fpons@mandrakesoft.com>

	* lst/Cards+: KYRO uses fbdev instead of vesa.

2002-02-18 10:04  Fançois Pons <fpons@mandrakesoft.com>

	* lst/Cards+: added GD5480 as working under XF 4.2 (Juan)

2002-02-18 03:07  Yves Duret <yduret@mandrakesoft.com>

	* lst/usbtable: sync with scanner.{c,h} version 0.47 from david
	nelson

2002-02-18 03:06  Yves Duret <yduret@mandrakesoft.com>

	* lst/ScannerDB: sync with sane 1.0.7

2002-02-18 02:41  Yves Duret <yduret@mandrakesoft.com>

	* lst/ScannerDB: ci before big merge

2002-02-18 00:53  Yves Duret <yduret@mandrakesoft.com>

	* lst/usbtable: - fix HP scanner entry. the trailing C need to be
	in CAPITAL letter. i say CAPITAL.  - added some HP models

2002-02-17 15:29  Yves Duret <yduret@mandrakesoft.com>

	* lst/: ScannerDB, usbtable: added more snapscan escanners + some
	add in usbtable (kbd..)

2002-02-17 13:43  Yves Duret <yduret@mandrakesoft.com>

	* lst/ScannerDB: mustek_pp updated

2002-02-17 02:55  Yves Duret <yduret@mandrakesoft.com>

	* lst/ScannerDB: one more HP escanner..

2002-02-17 02:18  Yves Duret <yduret@mandrakesoft.com>

	* lst/ScannerDB: some HP escanners added (but in UNSUPPORTED :(

2002-02-15 10:19  jquintela

	* lst/pcitable: use new qlogic drivers by default

2002-02-14 23:43  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec: - add BuildRequires: perl-MDK-Common - GeForce
	Integrated use fbdev driver instead of nv (freeze).

2002-02-14 12:06  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: s/cmpci/snd-card-cmipci/ since cmpci seems less
	ususable than ALSA.

2002-02-11 17:41  Fançois Pons <fpons@mandrakesoft.com>

	* lst/Cards+, lst/pcitable, ldetect-lst.spec: GeForce Integrated
	really prefer fbdev instead of nv (else freeze).

2002-02-11 17:03  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec, lst/Makefile: fix the comment for accessing the
	CVS version

2002-02-07 23:28  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec, update-ldetect-lst: upgrading the package
	should now work... using trigger :-(

2002-02-07 22:09  Pixel <pixel@mandrakesoft.com>

	* Makefile, Makefile.config, ldetect-lst.spec, update-ldetect-lst,
	lst/Makefile: adding update-ldetect-lst to take care of
	directorized pcitable/usbtable/...

2002-02-05 12:25  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec: fix usbtable merge with kernel usbmap

2002-02-05 12:24  Pixel <pixel@mandrakesoft.com>

	* lst/usbtable: fix merge kernel usbmap

2002-02-05 12:08  Yves Duret <yduret@mandrakesoft.com>

	* lst/ScannerDB: 1240U Photo

2002-02-05 12:07  Yves Duret <yduret@mandrakesoft.com>

	* lst/usbtable: 0x04b8	0x010b	"scanner"	"Seiko Epson
	Corp.|Perfection 1240U"

2002-02-05 11:51  Yves Duret <yduret@mandrakesoft.com>

	* lst/ScannerDB: fix pbs in HP scanner usb

2002-02-05 11:45  Yves Duret <yduret@mandrakesoft.com>

	* lst/ScannerDB: added BW4830Pro thx MdkForum

2002-01-30 20:27  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec: replace a de4x5 with tulip

2002-01-28 20:09  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: replaced de4x5 by tulip (asked by andre
	<andre@node1583e.a2000.nl> on cooker)

2002-01-28 01:18  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec, lst/pcitable, lst/usbtable: - pcitable: merge
	with redhat's pcitable, XFree86, vendors.txt, modules.pcimap -
	usbtable: merge with modules.usbmap, usb.ids

2002-01-28 01:16  Pixel <pixel@mandrakesoft.com>

	* convert/merge2pcitable.pl: read_pciids: make it more bullet proof

2002-01-28 00:21  Pixel <pixel@mandrakesoft.com>

	* convert/merge2pcitable.pl: keep bcm5700 module

2002-01-27 23:48  Pixel <pixel@mandrakesoft.com>

	* convert/merge2pcitable.pl: we now want yenta_socket

2002-01-25 16:36  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec, lst/pcitable: s/ncr53c8xx/sym53c8xx/

2002-01-22 16:40  Fançois Pons <fpons@mandrakesoft.com>

	* ldetect-lst.spec: 0.1.2-35mdk

2002-01-22 16:37  Fançois Pons <fpons@mandrakesoft.com>

	* lst/usbtable: fixed some typos (please do not use space for
	separator, use tab).

2002-01-22 16:35  Fançois Pons <fpons@mandrakesoft.com>

	* lst/pcitable: fixed typo at line 664.

2002-01-22 16:32  Fançois Pons <fpons@mandrakesoft.com>

	* lst/pcitable: small fixes for i830 agpgart reference (does we
	need that ?)

2002-01-22 16:29  Fançois Pons <fpons@mandrakesoft.com>

	* lst/Cards+: made trident driver available for card that (may?)
	support it, but keep UNSUPPORTED flag.

2002-01-22 16:25  Fançois Pons <fpons@mandrakesoft.com>

	* lst/Cards+: Rendition Verite 1000, 2x00 are supported by 4.2.0.

2002-01-22 16:23  Fançois Pons <fpons@mandrakesoft.com>

	* lst/pcitable: new entry for Card:NeoMagic MagicMedia
	(laptop/notebook) only supported by 4.2.0 (NM2230 and later).

2002-01-22 16:22  Fançois Pons <fpons@mandrakesoft.com>

	* lst/Cards+: Make some NeoMagic card running only 4.2.0.

2002-01-22 16:16  Fançois Pons <fpons@mandrakesoft.com>

	* lst/Cards+: cyrix driver stated as running (feedback wanted
	though)

2002-01-22 14:57  Fançois Pons <fpons@mandrakesoft.com>

	* lst/Cards+: Chips and Technologies card supported by XFree86
	4.2.0.

2002-01-22 14:54  Fançois Pons <fpons@mandrakesoft.com>

	* lst/Cards+: fixed an old ATI Mach8 card reference not marked as
	UNSUPPORTED (and should be).

2002-01-22 14:52  Fançois Pons <fpons@mandrakesoft.com>

	* lst/Cards+: added Ark Logic card support by XFree86 4.2.0 using
	ark driver.

2002-01-22 14:50  Fançois Pons <fpons@mandrakesoft.com>

	* lst/Cards+: added Card:AT25 only for XFree86 4.2.0.

2002-01-22 14:49  Fançois Pons <fpons@mandrakesoft.com>

	* lst/pcitable: added Alliance AT25 support.

2002-01-22 14:42  Fançois Pons <fpons@mandrakesoft.com>

	* lst/Cards+: SiS 300 is said to have problems with XFree 4.2.0.

2002-01-22 14:39  Fançois Pons <fpons@mandrakesoft.com>

	* lst/pcitable: Using new Card:3Dlabs Permedia4 (generic) for card
	not supported by XF3.3.6.

2002-01-22 14:39  Fançois Pons <fpons@mandrakesoft.com>

	* lst/Cards+: Create a 3DLabs Permedia4 (generic) card (not
	supported in 3.3.6)

2002-01-22 14:28  Fançois Pons <fpons@mandrakesoft.com>

	* lst/Cards+: marked all cards using 964, 968, Trio32, Trio64,
	Trio64V+, Trio64UV+, Aurora64V+, Trio64V2, Plato/PX as running with
	XFree 4.2.0.

2002-01-21 19:37  Fançois Pons <fpons@mandrakesoft.com>

	* lst/Cards+: added Card:Intel 830

2002-01-21 19:34  Fançois Pons <fpons@mandrakesoft.com>

	* lst/pcitable: Intel 830 support (with Card)

2002-01-21 19:24  Fançois Pons <fpons@mandrakesoft.com>

	* lst/Cards+: changed all S3 card to use DRIVER s3 but keep
	UNSUPPORTED flag, waiting for detailed documentation from XFree to
	choose the chipset supported.

2002-01-21 12:02  Guillaume Cottenceau <gc@mandrakesoft.com>

	* lst/Cards+: 86c968 seems to work with XF4/vesa rather than XF3/s3

2002-01-17 10:50  Erwan Velu <erwan@mandrakesoft.com>

	* lst/usbtable: Fixing usb table

2002-01-16 14:19  Erwan Velu <erwan@mandrakesoft.com>

	* lst/pcitable: Fixing & Adding Apple devices

2002-01-15 00:08  Guillaume Cottenceau <gc@mandrakesoft.com>

	* lst/pcitable: 0x106b 0x002: replace "sungem" with "gmac"   (Ian
	White <iwhite@victoria.tc.ca>) 0x104c 0x8020: use "ohci1394" (sub
	0x14db 0xf000)	 (Dave Seff <dseff1@nyc.rr.com>)

2002-01-14 14:02  Erwan Velu <erwan@mandrakesoft.com>

	* lst/pcitable: Adding VIA bridge

2002-01-14 10:27  Erwan Velu <erwan@mandrakesoft.com>

	* lst/pcitable: added some entries for i830 chipset

2002-01-12 20:46  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec: [no log message]

2002-01-12 18:48  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: fix bad spaces with tabulations

2002-01-04 11:38  Erwan Velu <erwan@mandrakesoft.com>

	* lst/pcitable: Fixing typo, missing tabs

2002-01-04 11:33  Erwan Velu <erwan@mandrakesoft.com>

	* lst/pcitable: Added some entries for Reliance Computer and Intel
	chipset

2001-12-28 10:35  Erwan Velu <erwan@mandrakesoft.com>

	* lst/pcitable: Adding module for 1022:7414

2001-12-18 18:07  Yves Duret <yduret@mandrakesoft.com>

	* lst/Makefile: fix scannerDB.gz creation..

2001-12-18 17:59  Yves Duret <yduret@mandrakesoft.com>

	* lst/usbtable: who is the mother fucker who used space instead of
	tab ?!

2001-12-18 17:56  Yves Duret <yduret@mandrakesoft.com>

	* lst/usbtable: fix typo

2001-12-18 17:53  Yves Duret <yduret@mandrakesoft.com>

	* lst/Makefile: compress scannerDB

2001-12-17 12:02  Erwan Velu <erwan@mandrakesoft.com>

	* lst/: pcitable, usbtable: Moving 1668:408 from PCI to USB table,

2001-12-17 11:57  Erwan Velu <erwan@mandrakesoft.com>

	* lst/usbtable: Updating USB table

2001-12-17 11:36  Erwan Velu <erwan@mandrakesoft.com>

	* lst/pcitable: Adding some descriptions to CMD Technology Devices

2001-12-14 17:08  Guillaume Cottenceau <gc@mandrakesoft.com>

	* lst/pcitable: i82365 -> yenta_socket

2001-12-11 14:48  Gwenole Beauchesne <gbeauchesne@mandrakesoft.com>

	* ldetect-lst.spec, lst/pcitable, lst/pcitable.ia64: - Add
	IBM|ServeRAID-4Lx and IBM|ServeRAID-4Mx PCI IDs - On IA-64, suggest
	"qlogicfc" for Q Logic { 2100, 2200 } cards, since we still don't
	use qla2200 v5.31 in main kernels

2001-12-04 15:03  Stew Benedict <sbenedict@mandrakesoft.com>

	* lst/pcitable: add module identifier ohci1394 to device 104c:8019
	Texas Instruments|TSB12LV23 OHCI Compliant IEEE-1394 Controller

2001-12-04 12:26  Guillaume Cottenceau <gc@mandrakesoft.com>

	* lst/MonitorsDB: add monitor from thomas poindessous
	<poinde_t@epita.fr>

2001-12-02 17:43  Guillaume Cottenceau <gc@mandrakesoft.com>

	* lst/MonitorsDB: add Goldstar LG StudioWorks77i provided by
	Mickael Bouillard <rylecqfd@hotmail.com>

2001-11-27 18:25  Yves Duret <yduret@mandrakesoft.com>

	* lst/ScannerDB: added Seiko Epson Corp.|Perfection 1650 Photo

2001-11-26 16:09  Dam's <damien@mandrakesoft.com>

	* lst/pcitable: typo

2001-11-26 16:07  Dam's <damien@mandrakesoft.com>

	* lst/pcitable: corrected cryo label added bewan adsl pci modem

2001-11-23 14:02  Stefan Siegel <siegel@linux-mandrake.com>

	* lst/pcitable: - 0x136b 0xff01 "Kawasaki Steel Corporation|MEYE
	Video Adapter" - 0x9004 0xffff "Unknown Vendor|AIC7xxx compatible
	SCSI controller" - 0x9005 0xffff "Unknown Vendor|AIC7xxx compatible
	SCSI controller"

2001-11-23 13:41  Stefan Siegel <siegel@linux-mandrake.com>

	* lst/usbtable: added driver for Samsung MPC-C30 USB webcam

2001-11-12 10:23  Yves Duret <yduret@mandrakesoft.com>

	* ldetect-lst.spec: -32mdk

2001-11-12 10:19  Yves Duret <yduret@mandrakesoft.com>

	* lst/ScannerDB: the really big heavy fat update

2001-10-16 16:11  Guillaume Cottenceau <gc@mandrakesoft.com>

	* lst/MonitorsDB: Dell 791 doesn't exist, this was a typo, this
	991.  Thanks to Alexander Kirillov <kirillov@math.sunysb.edu>.

2001-10-16 15:21  Erwan Velu <erwan@mandrakesoft.com>

	* lst/usbtable: Added Espon Perfection 1650 Photo Usb Scanner

2001-10-10 15:57  Yves Duret <yduret@mandrakesoft.com>

	* ldetect-lst.spec: -31 i saied !

2001-10-10 15:54  Yves Duret <yduret@mandrakesoft.com>

	* ldetect-lst.spec: -31mdk

2001-10-10 15:54  Yves Duret <yduret@mandrakesoft.com>

	* lst/Makefile: added ScannerDB in install

2001-10-10 14:38  Yves Duret <yduret@mandrakesoft.com>

	* lst/usbtable: added scanner entries

2001-10-10 14:34  Yves Duret <yduret@mandrakesoft.com>

	* lst/ScannerDB: first version

2001-10-09 11:05  Gwenole Beauchesne <gbeauchesne@mandrakesoft.com>

	* ldetect-lst.spec: - Now arch-dependant - Use "e100" on IA-64 for
	drivers = { 0x1229, 0x2449 }

2001-10-09 10:49  Gwenole Beauchesne <gbeauchesne@mandrakesoft.com>

	* lst/pcitable.ia64: - pcitable.ia64: New. Do use "e100" driver by
	default for devices = { 0x1229,   0x2449 }.

2001-10-08 18:36  Pixel <pixel@mandrakesoft.com>

	* lst/Makefile: add handling of pcitable.$(arch) and
	usbtable.$(arch) which overrides what's in pcitable/usbtable

2001-10-03 23:12  Pixel <pixel@mandrakesoft.com>

	* lst/MonitorsDB: add some Cybervision's (Jorg <jorgp@bartnet.net>)

2001-10-03 15:41  Erwan Velu <erwan@mandrakesoft.com>

	* lst/pcitable: Fixing lots of null entries such as 0x1023 0x1236
	"" using www.yourvote.com/pci

2001-10-02 20:33  Chmouel Boudjnah <chmouel@mandrakesoft.com>

	* convert/README.pcitable: add information about adress
	(http://www.yourvote.com/pci/vendors.txt) where to get pci device
	name

2001-10-02 20:19  Pixel <pixel@mandrakesoft.com>

	* convert/merge2pcitable.pl: (read_pciids): lowercase ids

2001-10-02 18:41  Yves Duret <yduret@mandrakesoft.com>

	* ldetect-lst.spec: -28mdk

2001-10-02 18:39  Yves Duret <yduret@mandrakesoft.com>

	* lst/usbtable: fix typos in usb scanner

2001-10-02 17:47  Chmouel Boudjnah <chmouel@mandrakesoft.com>

	* lst/pcitable: Add i830 USB Host (erwan)

2001-10-01 15:01  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: add hptraid

2001-10-01 14:38  Erwan Velu <erwan@mandrakesoft.com>

	* lst/pcitable: Added lots of intel devices and ATI Radeon mobility
	Fixing some empty devices

2001-09-26 15:59  Erwan Velu <erwan@mandrakesoft.com>

	* lst/pcitable: Correcting a typo on 1668/0408

2001-09-26 15:57  Erwan Velu <erwan@mandrakesoft.com>

	* lst/pcitable: Added 3Com V.90 Mini-PCI Modem (0x10b7/0x1007) &
	Actiontec WaveLan (0x1668/0x0408)

2001-09-25 14:13  Erwan Velu <erwan@mandrakesoft.com>

	* lst/pcitable: Adding and changing name of conexant winmodem id
	1815 & 1803

2001-09-24 17:50  Dam's <damien@mandrakesoft.com>

	* lst/pcitable: corrected isdn vendor id

2001-09-24 16:28  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec: [no log message]

2001-09-24 16:27  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: replace ns558 by emu10k1-gp (Planel Nicolas)

2001-09-21 16:40  Guillaume Cottenceau <gc@mandrakesoft.com>

	* ldetect-lst.spec: fuck the world

2001-09-21 16:39  Guillaume Cottenceau <gc@mandrakesoft.com>

	* ldetect-lst.spec: oups

2001-09-21 16:36  Fançois Pons <fpons@mandrakesoft.com>

	* ldetect-lst.spec, lst/pcitable: added GeForce3 missing pci id.

2001-09-20 22:12  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: remove (yet again) tulip for some DEC cards, and
	ensure the bug in redhat pcitable won't both us again

2001-09-20 13:09  Pixel <pixel@mandrakesoft.com>

	* convert/merge2pcitable.pl: remove (yet again) tulip for some DEC
	cards, and ensure the bug in redhat pcitable won't both us again

2001-09-19 17:19  Fançois Pons <fpons@mandrakesoft.com>

	* lst/Cards+: Rage 128 card are not supported by XF3.

2001-09-13 22:25  Frederic Lepied <flepied@mandrakesoft.com>

	* ldetect-lst.spec: 0.1.2-24mdk

2001-09-13 22:24  Frederic Lepied <flepied@mandrakesoft.com>

	* lst/usbtable: corrected wacom entries but wtf are these entries
	with vendor=0x0531 ?

2001-09-13 14:53  Stefan Siegel <siegel@linux-mandrake.com>

	* lst/usbtable: updates

2001-09-12 05:08  Frederic Lepied <flepied@mandrakesoft.com>

	* ldetect-lst.spec: 0.1.2-23mdk

2001-09-12 05:08  Frederic Lepied <flepied@mandrakesoft.com>

	* lst/Cards+: added matrox G550

2001-09-11 17:08  Frederic Lepied <flepied@mandrakesoft.com>

	* lst/pcitable: added matrox G550.

2001-09-10 18:00  Fançois Pons <fpons@mandrakesoft.com>

	* lst/pcitable: fixed suckings.

2001-09-10 16:58  Chmouel Boudjnah <chmouel@mandrakesoft.com>

	* lst/pcitable: Fix descriptions of some nvidia cards.

2001-09-08 12:06  Pixel <pixel@mandrakesoft.com>

	* lst/MonitorsDB: add Daytek Vista (from Greg Sarsons
	<gsarsons@home.com>)

2001-09-06 18:06  Chmouel Boudjnah <chmouel@mandrakesoft.com>

	* lst/pcitable: Add firewire controller.

2001-09-05 13:14  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec, lst/pcitable: replace AM53C974 with tmscsim

2001-09-05 12:50  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec: [no log message]

2001-09-05 12:48  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: merge with latest modules.pcimap

2001-09-05 12:31  Pixel <pixel@mandrakesoft.com>

	* lst/MonitorsDB: update with redhat's version

2001-09-03 04:43  Frederic Lepied <flepied@mandrakesoft.com>

	* lst/pcitable: added radeon qz

2001-09-03 00:29  Pixel <pixel@mandrakesoft.com>

	* lst/usbtable: merge with hwd

2001-09-03 00:23  Pixel <pixel@mandrakesoft.com>

	* convert/merge2pcitable.pl: add hwd merging

2001-09-03 00:17  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: small merge with hwd table

2001-09-01 09:27  Stefan Siegel <siegel@linux-mandrake.com>

	* lst/: isatable, usbtable: new devices added

2001-08-30 21:25  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec: [no log message]

2001-08-30 14:21  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: fix some bttv replaced by btaudio

2001-08-30 13:36  Pixel <pixel@mandrakesoft.com>

	* lst/usbtable: add some Logitech mice

2001-08-29 10:46  Fançois Pons <fpons@mandrakesoft.com>

	* ldetect-lst.spec, lst/Cards+: Matrox Millenium card are supported
	by XF4.

2001-08-29 04:07  Frederic Lepied <flepied@mandrakesoft.com>

	* ldetect-lst.spec: 0.1.2-19mdk

2001-08-28 22:03  Stew Benedict <sbenedict@mandrakesoft.com>

	* lst/MonitorsDB: entry for TiPowerBook - PPC

2001-08-27 16:00  Frederic Lepied <flepied@mandrakesoft.com>

	* lst/usbtable: oops corrected productid for wacoms.

2001-08-27 15:59  Frederic Lepied <flepied@mandrakesoft.com>

	* lst/usbtable: updated wacom ids.

2001-08-22 00:08  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec, convert/merge2pcitable.pl: [no log message]

2001-08-22 00:01  Pixel <pixel@mandrakesoft.com>

	* convert/README.pcitable: better error message

2001-08-22 00:00  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: merge with redhat

2001-08-22 00:00  Pixel <pixel@mandrakesoft.com>

	* lst/usbtable: adding an optical mouse

2001-08-20 18:45  Pixel <pixel@mandrakesoft.com>

	* lst/MonitorsDB: add Belinea monitors (thanks to Alex Hulse
	<axh0@aber.ac.uk>)

2001-08-16 11:34  Erwan Velu <erwan@mandrakesoft.com>

	* lst/Cards+: changed driver for Kyro series, the previous module
	works only for Dreamcast ! back to vesa mode !

2001-08-14 20:44  Stew Benedict <sbenedict@mandrakesoft.com>

	* lst/MonitorsDB: More Apple displays

2001-08-14 12:25  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: fix format pbs

2001-08-13 18:30  Pixel <pixel@mandrakesoft.com>

	* lst/Cards+: remove SERVER for "KYRO Series" as XF3 doesn't handle
	it

2001-08-13 18:25  Erwan Velu <erwan@mandrakesoft.com>

	* lst/: Cards+, pcitable: added Kyro video card familly, added also
	in Card+ (id 104a:0010)

2001-08-13 15:02  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: "Toshiba|Toshiba-4010CDT" is not a graphical card
	(?)

2001-08-13 15:02  Pixel <pixel@mandrakesoft.com>

	* lst/usbtable: merge with latest usb.ids

2001-08-13 11:10  Erwan Velu <erwan@mandrakesoft.com>

	* lst/pcitable: Adding IBM ServeRAID card 0x1014 0x01bd with ips

2001-08-06 11:55  Erwan Velu <erwan@mandrakesoft.com>

	* lst/pcitable: added ohci1394 for 104d:8039

2001-08-02 00:16  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: fix realtek description

2001-08-01 23:59  Guillaume Cottenceau <gc@mandrakesoft.com>

	* ldetect-lst.spec, lst/pcitable, lst/usbtable: merge with
	2.4.6-5mdk pcitable and usbtable

2001-07-31 18:37  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: dd studioDV from pinnacle

2001-07-30 15:25  Dam's <damien@mandrakesoft.com>

	* lst/pcitable: reverted fritz card support.

2001-07-30 13:50  Dam's <damien@mandrakesoft.com>

	* lst/pcitable: bad driver for new fritz! card

2001-07-30 13:23  Dam's <damien@mandrakesoft.com>

	* lst/pcitable: added new AVM fritz card

2001-07-26 14:53  Dam's <damien@mandrakesoft.com>

	* lst/pcitable: updated Sedbauer ISDN cards + firmware

2001-07-25 13:06  Dam's <damien@mandrakesoft.com>

	* lst/pcitable: updated ISDN detection.

2001-07-24 11:59  Stefan Siegel <siegel@linux-mandrake.com>

	* lst/pcitable: added Parallel controller: PCI device 1409:7268
	(Timedia Technology Co Ltd)

2001-07-20 04:05  Dam's <damien@mandrakesoft.com>

	* lst/pcitable: added ISDN card type in the pcitable itself.

2001-07-20 02:13  Dam's <damien@mandrakesoft.com>

	* lst/pcitable: ISDN concept

2001-07-18 12:42  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/isatable: fix cmi8330 detection

2001-07-05 13:28  Fançois Pons <fpons@mandrakesoft.com>

	* ldetect-lst.spec, lst/Cards+, lst/pcitable: SiS 300 card update.

2001-07-04 19:35  Fançois Pons <fpons@mandrakesoft.com>

	* ldetect-lst.spec: the 15mdk is going.

2001-07-04 19:33  Fançois Pons <fpons@mandrakesoft.com>

	* lst/Cards+: added VMware virtual cards.

2001-07-04 19:17  Fançois Pons <fpons@mandrakesoft.com>

	* lst/Cards+: added some more card, notably VMware and IMS one.

2001-07-04 19:13  Fançois Pons <fpons@mandrakesoft.com>

	* lst/pcitable: synced with XFree 4.1.0

2001-07-04 17:37  Yves Duret <yduret@mandrakesoft.com>

	* lst/usbtable: merged with kaweth.c from kernel 2.4.5

2001-07-04 16:59  Yves Duret <yduret@mandrakesoft.com>

	* lst/usbtable: updated with kernel 2.4.5

2001-06-25 14:07  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: fix a miro card name

2001-06-22 14:51  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* ldetect-lst.spec: add last changes

2001-06-22 14:48  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: es1370 doesn't work for "Ensoniq|ES1370 [AudioPCI]"
	(ID 0x12745000) replace it by "snd-card-ens1370" wich operates
	smoothly

2001-06-22 14:34  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: add a new Pinnacle PCTV

2001-06-22 13:38  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: add support for ALS4000

2001-06-15 17:41  Stefan Siegel <siegel@linux-mandrake.com>

	* lst/pcitable: fixed 0x8086 0x1229 driver

2001-06-14 20:05  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec: [no log message]

2001-06-14 15:18  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: merge with XF4.1

2001-06-05 15:40  Stew Benedict <sbenedict@mandrakesoft.com>

	* lst/pcitable: added module identifier to "Apple|Keylargo USB"

2001-05-23 13:40  Guillaume Cottenceau <gc@mandrakesoft.com>

	* lst/pcitable: DEC|DECchip 21152 seems to have been wrongly marked
	as a tulip ethernet adapter, but it seems to be a PCI bridge.
	Thanks to Gary Brack <gbrack@huey.jpl.nasa.gov>

2001-05-20 17:32  Stefan Siegel <siegel@linux-mandrake.com>

	* lst/: Makefile, isatable: moved isatable here from detect to have
	a unified database

2001-05-20 00:32  Stefan Siegel <siegel@linux-mandrake.com>

	* lst/: Makefile, pcmciatable: added pcmciatable (merge with
	HardDrake)

2001-05-03 15:33  Erwan Velu <erwan@mandrakesoft.com>

	* lst/pcitable: Adding module snd-card-via8233 for VIA-8233 chipset

2001-05-02 19:29  Chmouel Boudjnah <chmouel@mandrakesoft.com>

	* lst/pcitable: Change nm256 to nm256_audio.

2001-04-30 22:26  Guillaume Cottenceau <gc@mandrakesoft.com>

	* lst/pcitable: Fix aureal web site (#3299)

2001-04-26 15:25  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: add support for following tv cards :	- CyberMail
	AV  - Leadtek WinFast TV 2000	    - AG GMV1	    - I-O Data Co.
	GV-BCV4/PCI

2001-04-21 13:44  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: remove buggy entry (thanks to Andreas Voegele)

2001-04-15 01:19  Pixel <pixel@mandrakesoft.com>

	* lst/usbtable: add a Logitech mouse

2001-04-14 12:34  Stew Benedict <sbenedict@mandrakesoft.com>

	* lst/MonitorsDB: add Apple display entries to MonitorsDB

2001-04-10 22:49  Frederic Lepied <flepied@mandrakesoft.com>

	* ldetect-lst.spec: 0.1.2-13mdk

2001-04-10 22:48  Frederic Lepied <flepied@mandrakesoft.com>

	* lst/pcitable: added GeForce3 and CyberBlade/Xpm entries

2001-04-10 11:16  Fançois Pons <fpons@mandrakesoft.com>

	* ldetect-lst.spec: [no log message]

2001-04-10 11:15  Fançois Pons <fpons@mandrakesoft.com>

	* lst/pcitable: added Trident CyberBladeXP

2001-04-09 19:54  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec: new release

2001-04-09 19:54  Chmouel Boudjnah <chmouel@mandrakesoft.com>

	* lst/pcitable: Add ohci LUCENT host.

2001-04-09 13:57  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: add missing usb-uhci's and one usb-ohci

2001-04-05 00:42  Chmouel Boudjnah <chmouel@mandrakesoft.com>

	* lst/pcitable: Add i815e usb-uhci controller.

2001-04-04 15:47  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: add description for some cards

2001-04-04 14:13  Pixel <pixel@mandrakesoft.com>

	* lst/usbtable: merge with modules.usbmap

2001-04-04 14:09  Pixel <pixel@mandrakesoft.com>

	* convert/merge2pcitable.pl: add merge with modules.usbmap

2001-04-04 13:38  Pixel <pixel@mandrakesoft.com>

	* lst/usbtable: updated with modules.usbmap from the kernel

2001-04-03 13:41  Frederic Lepied <flepied@mandrakesoft.com>

	* lst/usbtable: added Flag:TV for Logitech QuickCam Express

2001-04-02 18:32  Dam's <damien@mandrakesoft.com>

	* lst/pcitable: ISDN description updated Olitec updated

2001-04-02 15:19  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: add Hauppauge WinTV/PVR

2001-03-30 12:32  Pixel <pixel@mandrakesoft.com>

	* lst/MonitorsDB: addition from "R.I.P. Deaddog"
	<maddog@linuxhall.org> on cooker

2001-03-28 11:47  Warly <warly@mandrakesoft.com>

	* lst/MonitorsDB: fix compudyne line

2001-03-24 19:18  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec: cleaned pcitable

2001-03-24 19:18  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: cleaned

2001-03-24 19:17  Pixel <pixel@mandrakesoft.com>

	* lst/usbtable: add floppy drive

2001-03-24 19:16  Pixel <pixel@mandrakesoft.com>

	* convert/merge2pcitable.pl: (cleanup_subids): cleanup

2001-03-23 18:11  Fançois Pons <fpons@mandrakesoft.com>

	* ldetect-lst.spec, lst/usbtable: USB Wacom driver set to
	Tablet:wacom

2001-03-23 12:15  Pixel <pixel@mandrakesoft.com>

	* convert/merge2pcitable.pl: (cleanup_subids): clean the
	unneeded/duplicated subids to keep pcitable clean (main source of
	dirtyness is modules.pcimap of the kernel)

2001-03-22 23:51  Thierry Vignaud <tvignaud@mandrakesoft.com>

	* lst/pcitable: new cards for bttv

2001-03-22 18:25  Pixel <pixel@mandrakesoft.com>

	* lst/MonitorsDB: add some CTX from cooker

2001-03-21 19:43  Fançois Pons <fpons@mandrakesoft.com>

	* ldetect-lst.spec, lst/pcitable: fixed Matrox G450 entries in
	pcitable relative to Cards+

2001-03-19 12:28  Pixel <pixel@mandrakesoft.com>

	* lst/Cards+: remove "DRIVER ati" for Mach32 cards:
	
	From: "Alaric Ravenhall" <alaricravenhall@hotmail.com> Subject:
	[Cooker] Beta 8.0 and ATI Mach 32, ESS solo-1 audiodrive -AA fonts
	in KDE To: cooker@linux-mandrake.com Date: Mon Mar 19 02:45:34 2001
	+0100 Reply-To: cooker@linux-mandrake.com
	
	Hi all.  I installed (two days ago) LM beta 8.0 from provided
	ISO's.	It looks pretty clean, I was impressed by the overall look
	and feel. Even though my fonts in Konq are messed up when viewing
	text files (maybe that's the antialiasing everyone has talked
	about.)They look fine in GNOME, however, which is too bad, because
	KDE is my preferred desktop.  At any rate, XFree86 4.02 (AND 4.01
	AND 4.0) do NOT like the venerable Mach32 by ATI. The Xserver dies
	when I try to 'test' it and it just lists my options I picked and
	'try some different parameters.' I went to X 3.3.6 (THANK YOU for
	putting it in the options) and X fires up fine.

2001-03-15 10:37  Fançois Pons <fpons@mandrakesoft.com>

	* ldetect-lst.spec, lst/Cards+, lst/pcitable: [no log message]

2001-03-13 19:21  Pixel <pixel@mandrakesoft.com>

	* ldetect-lst.spec: updated

2001-03-13 19:19  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: - add an dpt_i2o - lot of modif from jeff

2001-03-11 22:24  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: change the description for some 815e entries

2001-03-07 20:59  Dam's <damien@mandrakesoft.com>

	* lst/pcitable: removed bad isdn card

2001-03-07 20:54  Dam's <damien@mandrakesoft.com>

	* lst/pcitable: added one isdn card

2001-03-06 17:55  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: merge with /lib/modules/2.4.2-7mdk/modules.pcimap,
	anaconda-7.1-1.200102051925's pcitable, kudzu-0.92.1-1's pcitable

2001-03-06 17:54  Pixel <pixel@mandrakesoft.com>

	* convert/Makefile, ldetect-lst.spec: [no log message]

2001-03-06 17:46  Pixel <pixel@mandrakesoft.com>

	* convert/merge2pcitable.pl: for merging, auto-rename yenta_socket
	in i82365

2001-03-06 13:57  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: use e100 for 0x8086	0x1229

2001-02-21 16:32  Guillaume Cottenceau <gc@mandrakesoft.com>

	* lst/pcitable: 8129 chipset now use 8139too

2001-02-04 12:37  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: merge with rh

2001-02-04 12:36  Pixel <pixel@mandrakesoft.com>

	* convert/: README.pcitable, .cvsignore: [no log message]

2001-02-04 12:33  Pixel <pixel@mandrakesoft.com>

	* convert/README.pcitable: s/merge2pcitable/merge2pcitable.pl/

2001-02-04 12:30  Pixel <pixel@mandrakesoft.com>

	* convert/.cvsignore: [no log message]

2001-01-25 16:27  Guillaume Cottenceau <gc@mandrakesoft.com>

	* ldetect-lst.spec, lst/pcitable: snd-card-intel8x0 -> i810_audio

2001-01-25 15:08  Guillaume Cottenceau <gc@mandrakesoft.com>

	* ldetect-lst.spec: snapshot

2001-01-23 14:53  Guillaume Cottenceau <gc@mandrakesoft.com>

	* lst/pcitable: add tulip Bridgecom 10/100

2001-01-15 08:16  Chmouel Boudjnah <chmouel@mandrakesoft.com>

	* lst/pcitable: Use i810_audio instead of snd-card-intel8x0

2001-01-15 08:03  Chmouel Boudjnah <chmouel@mandrakesoft.com>

	* lst/pcitable: Add more intel-i810-audio ids.

2001-01-08 18:53  Guillaume Cottenceau <gc@mandrakesoft.com>

	* lst/pcitable: add network card for HP omnibook xe3

2000-12-21 16:19  Pixel <pixel@mandrakesoft.com>

	* Makefile, Makefile.config, ldetect-lst.spec: add
	ldetect-lst-devel

2000-12-21 15:57  Fançois Pons <fpons@mandrakesoft.com>

	* lst/Cards+: added i128 and siliconmotion driver entry.  updated
	SiS 620 support back with XF4.0.2.

2000-12-21 15:48  Pixel <pixel@mandrakesoft.com>

	* lst/pcitable: add new entries from XFree86-4.02

2000-12-19 15:08  Fançois Pons <fpons@mandrakesoft.com>

	* lst/pcitable: updated with new pci id provided by Erwan.

2000-12-19 15:08  Fançois Pons <fpons@mandrakesoft.com>

	* lst/Cards+: updated with savage driver, according to Erwan.

2000-12-18 14:08  Pixel <pixel@mandrakesoft.com>

	* .cvsignore, Makefile, Makefile.config, convert/Makefile,
	convert/merge2pcitable.pl, convert/verify_Cards.pl, lst/.cvsignore,
	lst/Makefile: add verif

2000-12-18 12:39  Pixel <pixel@mandrakesoft.com>

	* Cards+, Cards2CardsNames.pl, MonitorsDB, isdn.db, pcitable,
	usbtable: moved in dir lst

2000-12-16 19:26  Pixel <pixel@mandrakesoft.com>

	* Makefile, ldetect-lst.spec, usbtable, lst/usbtable: add usbtable

2000-12-16 15:11  Pixel <pixel@mandrakesoft.com>

	* convert/merge2pcitable.pl: small fixes add read_pcilst (alex's
	detect format)

2000-12-16 13:51  Pixel <pixel@mandrakesoft.com>

	* convert/merge2pcitable.pl: replace tabs in description with
	spaces for pciids import (otherwise ruins the format)

2000-12-16 00:54  Pixel <pixel@mandrakesoft.com>

	* README.pcitable, merge2pcitable, convert/Makefile,
	convert/README.pcitable, convert/merge2pcitable.pl,
	convert/xf86PciInfo2pcitable.c, convert/xf86str.h: move to convert
	directory the convert tools

2000-12-15 19:19  Pixel <pixel@mandrakesoft.com>

	* Makefile, ldetect-lst.spec: [no log message]

2000-12-15 17:38  Pixel <pixel@mandrakesoft.com>

	* .cvsignore, Cards2CardsNames.pl, Makefile, MonitorsDB, isdn.db,
	convert/Cards2CardsNames.pl, lst/MonitorsDB, lst/isdn.db: added

2000-12-15 17:03  Pixel <pixel@mandrakesoft.com>

	* Cards+, lst/Cards+: creation

2000-12-15 16:24  Pixel <pixel@mandrakesoft.com>

	* Makefile, ldetect-lst.spec: put the version in .spec too,
	otherwise can't use rpm C-c e :)

2000-12-15 15:45  Pixel <pixel@mandrakesoft.com>

	* Makefile: add comments to installed pcitable

2000-12-15 15:38  Pixel <pixel@mandrakesoft.com>

	* Makefile, README.pcitable, ldetect-lst.spec, merge2pcitable,
	pcitable, lst/pcitable: creation, now pcitable is standalone and
	its reference is HERE