File: ChangeLog

package info (click to toggle)
discover-data 2.2008.06.25
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 3,636 kB
  • ctags: 95
  • sloc: xml: 41,774; perl: 712; python: 662; makefile: 208; sh: 86; awk: 24
file content (986 lines) | stat: -rw-r--r-- 24,904 bytes parent folder | download | duplicates (7)
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
2003-02-05 12:56  branden

	* debian/changelog: * Bump date on new (forthcoming) version.  *
	Insert entry from Petter Reinholdtsen's NMU.

2003-02-05 12:56  branden

	* debian/rules: Incorporate udeb support (at present, for the old
	Discover 1.x lists only) courtesy of Petter Reinholdtsen, tweaked
	for the new requirements of discover-data 2.x.
	
	* Add makefile variables PACKAGE, VERSION, and UFILENAME.  * Update
	list of phony targets.
	
	(clean): invoke now-existing upstream clean rule
	
	(install): invoke upstream install-udeb rule
	
	(binary-indep):   + add dependency on discover-data-udeb rule	+
	limit operation of most dh_* commands to discover-data	   package,
	excluding the udeb
	
	(discover-data-udeb): new rule to construct the udeb
	
	(binary): new rule depends on binary-indep

2003-02-05 12:52  branden

	* debian/control: Incorporate udeb support (at present, for the old
	Discover 1.x lists only) courtesy of Petter Reinholdtsen, tweaked
	for the new requirements of discover-data 2.x.
	
	* Add new stanza for discover-data-udeb.

2003-02-05 12:50  branden

	* Makefile: Incorporate udeb support (at present, for the old
	Discover 1.x lists only) courtesy of Petter Reinholdtsen, tweaked
	for the new requirements of discover-data 2.x.
	
	(shorthwlists): new rule to extract only Ethernet, CD-ROM, and	
	SCSI devices from the *.lst files (amusingly, this code  
	originally comes from PGI's stage0/mkinitrd)
	
	(install-udeb): new rule; installs the files of interest to the  
	udeb
	
	(clean): new rule to clean up the shortened hardware lists

2003-02-05 12:18  branden

	* merged vendor list.xls, merged_vendor_list.xls: Ugh! Spaces in
	filenames are horrible, ESPECIALLY in a CVS repo!
	
	Renamed this file to make it less dangerous.

2002-12-16 17:17  rdrake

	* usb-device.xml: Tiny editorial corrections.

2002-12-16 16:27  rdrake

	* debian/control: Tiny editorial corrections.

2002-12-16 16:15  rdrake

	* merged vendor list.xls, merged_vendor_list.xls: Excel list of
	vendors from three files:     pci-vendor.xml	 scsi-vendor.xml   
	 usb-vendor.xml
	
	Checking this in for safety.

2002-12-16 15:54  rdrake

	* README, pcmcia-vendor.xml: Tiny editorial corrections.

2002-12-13 09:58  rdrake

	* lst2xml: More slight fixes. Think this one's done now.

2002-12-11 17:05  rdrake

	* debian/: copyright, rules: Tiny editorial corrections.

2002-12-11 15:40  rdrake

	* pci-vendor.xml, scsi-vendor.xml, usb-vendor.xml: Last of the
	vendor list cleanups (I hope).

2002-12-10 18:50  rdrake

	* pci-vendor.xml, scsi-vendor.xml, usb-vendor.xml: More consistency
	corrections.

2002-12-10 17:42  rdrake

	* pci-vendor.xml, scsi-vendor.xml, usb-vendor.xml: More consistency
	cleanups.

2002-12-06 09:23  rdrake

	* pci-vendor.xml, scsi-vendor.xml, usb-vendor.xml: More consistency
	fixes.

2002-12-05 13:30  rdrake

	* lst2xml: Cleaning up a bit of offensive language.

2002-12-04 17:37  rdrake

	* pci-vendor.xml, scsi-vendor.xml, usb-vendor.xml: Fixing
	consistency problems.

2002-12-03 17:51  rdrake

	* pci-vendor.xml, scsi-vendor.xml, usb-vendor.xml: Streamlined
	punctuation and abbreviations.

2002-12-02 18:28  rdrake

	* pci-vendor.xml, usb-vendor.xml: Dumped a couple of apostrophes.

2002-12-02 18:20  rdrake

	* pci-vendor.xml: Streamlined punctuation.

2002-11-27 17:50  rdrake

	* pci-vendor.xml: Missed one.

2002-11-27 17:48  rdrake

	* pci-vendor.xml: Change ", Inc." to " Inc" in vendor list.

2002-11-27 17:29  rdrake

	* pci-vendor.xml: Spelling corrections.

2002-11-11 13:56  branden

	* pcmcia-vendor.xml: Fix misspelling of "Fujitsu".

2002-10-17 16:27  branden

	* ChangeLog: Update.

2002-10-17 16:27  branden

	* pci-device.xml, pci.lst: Add identification information for PCI
	8086:1131 ("Intel 82815 Chipset AGP Bridge").

2002-10-17 16:09  branden

	* ChangeLog: Updated.

2002-10-17 16:09  branden

	* pci-vendor.xml: Hmph.  jdaily forgot to change a bare ampersand
	to an entity.

2002-10-17 15:18  branden

	* ChangeLog: Updated.

2002-10-17 15:18  branden

	* debian/rules: Ship upstream ChangeLog in package.

2002-10-17 15:12  branden

	* ChangeLog: Update.

2002-10-17 15:12  branden

	* debian/changelog: Don't use Debian native format, because we have
	separate "upstream" and Debian changelogs.  *sigh*

2002-10-17 15:11  branden

	* ChangeLog: Updated.

2002-10-17 15:11  branden

	* ata-device.xml, ata-vendor.xml: Add some (more or less) dummy ATA
	device and vendor data until we have real ATA sysdeps to work with.

2002-10-17 13:55  branden

	* ChangeLog: Updated.

2002-10-17 13:55  branden

	* ata-busclass.xml: Add busclass id to Discover device type
	mappings for ATA bus.

2002-10-17 13:55  branden

	* scsi-busclass.xml: No leading zeroes in busclass id numbers.

2002-10-17 13:18  branden

	* ChangeLog: Updated.

2002-10-17 13:18  branden

	* list.xml: Refer to XML files in /usr/share/discover instead of
	/usr/local/share/discover.
	
	Going to have to be this way until we autoconfiscate this module.

2002-10-17 11:28  branden

	* debian/rules: Remove now-unneeded call to dh_movefiles.

2002-10-17 11:27  branden

	* ChangeLog, ChangeLog: Updated.

2002-10-17 11:27  branden

	* debian/rules: Whoops.  Fix DESTDIR to be correct for debhelper 4.

2002-10-17 11:26  branden

	* ChangeLog: Updated with cvs2cl.

2002-10-17 11:26  branden

	* debian/changelog: Updated, and merge together latest entry and
	the one before, for which no package was ever released.

2002-10-17 11:17  branden

	* Makefile: Bump $(MAJOR) to 2.

2002-10-17 11:15  branden

	* debian/control: Increment versioned dependency on debhelper to
	(>= 4.0).
	
	Bump Standards-Version to 3.5.7.
	
	Rewrite description to be accurate for Discover 2.x reality.

2002-10-17 11:15  branden

	* debian/rules: Bump DH_COMPAT level to 4.
	
	Provide a "binary-indep" rule, make "binary" depend on it, and mark
	"binary-indep" as .PHONY.

2002-10-17 11:14  branden

	* debian/discover-data.files: Remove this file; no longer needed
	thanks to debhelper 4.0.

2002-10-17 11:03  branden

	* debian/changelog: Fix missing line with name, email, date.

2002-10-17 11:02  branden

	* ChangeLog: Updated.

2002-10-17 11:02  branden

	* debian/changelog: Add entry for version 2.2002.10.17.

2002-10-17 10:50  branden

	* pci-device.xml, pci.lst: Add devices PCI 1000:{0030,062[12468]}. 
	All are LSI Logic SCSI controllers using the mptscsih module. 
	(Debian #164892)

2002-10-17 10:44  branden

	* pci-device.xml, pci.lst: Add 8086:1039 ("Intel 82559 Ethernet
	Adapter").  Same as 8086:1038. (Debian #164288)

2002-10-17 10:40  branden

	* pci-device.xml, pci.lst: Recognize PCI 15ad:0710 and fffe:0710
	("VMWare Virtual SVGA") as video/display devices, using the XFree86
	server and vmware driver.
	
	Add entry for 15ad:0405; as above.
	
	(Debian #164276)

2002-10-17 10:32  branden

	* pci-device.xml, pci.lst: PCI 8086:1209 ("Intel 82559ER") is an
	ethernet/network device using the eepro100 driver.  (Debian
	#163429)

2002-10-17 10:27  branden

	* debian/copyright: Updated licensing information on lst2xml.

2002-10-17 10:24  branden

	* COPYING: Noting in this module is licensed under the GNU GPL
	anymore, so this file goes away.

2002-10-17 10:23  branden

	* lst2xml: Changes to comments only.
	
	Updated comment synopsis, copyright notice, and author statement.
	
	Changed licensing from GNU GPL to MIT/X11 terms.

2002-10-15 15:05  jdaily

	* pci-vendor.xml: * Add some vendors found at
	http://home.worldonline.dk/finth/pciv.html * Fix some
	capitalization issues * Extend some vendor names to include
	alternatives

2002-10-14 15:56  jdaily

	* scsi-vendor.xml: * s/&/&/g
	
	What will this do to our comparison functions?	Dunno yet.

2002-10-14 15:52  jdaily

	* ata-busclass.xml: Remove busclass mappings until we know what the
	real busclasses look like.

2002-10-14 15:52  jdaily

	* ata-vendor.xml: Remove the generic vendor, leave this file empty.

2002-10-14 15:50  jdaily

	* scsi-device.xml, ata-device.xml: Remove busclass-based devices. 
	We'll leave this empty for someone else to fill in (or give us real
	data to fill with).

2002-10-14 15:49  jdaily

	* scsi-vendor.xml: * We now have real SCSI vendor data.

2002-10-11 15:10  bress

	* Makefile, list.xml: Update the install paths to
	/usr/local/share/discover instead of /usr/share/discover.

2002-10-08 14:17  branden

	* pci-busclass.xml: Update bus class translations based on pci.ids
	file.

2002-10-07 14:30  jdaily

	* scsi-device.xml: * Convert busclass strings to the proper numeric
	identifiers.

2002-10-07 13:21  bress

	* ata-busclass.xml, ata-device.xml, ata-vendor.xml,
	scsi-busclass.xml, scsi-device.xml, scsi-vendor.xml: Adding the xml
	files back in now that Discover is supporting them (Thanks John)

2002-10-07 08:10  bress

	* ata-busclass.xml, ata-device.xml, ata-vendor.xml,
	scsi-busclass.xml, scsi-device.xml, scsi-vendor.xml: Remove the ATA
	and SCSI bus files for Discover 2 release.  These file were very
	Linux specific and didn't actually contain any useful data.

2002-10-03 18:49  jdaily

	* pci-device.xml: * Insert a closing data tag, the lack of which
	cost me hours of pointless   debugging.  Thanks, Josh.

2002-09-27 17:38  jdaily

	* scsi-busclass.xml: Try to impose some sanity on the SCSI support.
	 Note that until the scsi sysdep is rewritten, discover won't work
	at all for that bus.

2002-09-25 17:01  branden

	* pcmcia-device.xml: Remove linux interface data stanzas that talk
	only about "unknown" modules.

2002-09-25 15:54  branden

	* pci-device.xml: Remove linux interface data stanzas that talk
	only about "unknown" modules.

2002-09-25 15:42  branden

	* lst2xml: Only write a closing </data> tag if $interface_type
	isn't "".

2002-09-25 15:38  branden

	* lst2xml: Doug pointed out that it's useless to write linux module
	data stanzas to the xml file if we're just going to say the module
	is "unknown".
	
	* Set $interface_type to "" if the module is "unknown".  * Only
	write a data element if $interface_type is not "".
	
	* Add vim modeline.  * Reindent MAIN.  Almost everything in it was
	needlessly   shifted one indent too far to the right.

2002-09-25 14:07  branden

	* pci-vendor.xml: Down case a couple of company names that were in
	screaming capitals.  (BROADCOM and CONEXANT)

2002-09-25 14:07  branden

	* pci-device.xml: Add entries for:
	
	NEC USB 2.0 Root Hub Conexant HSF 56k HSFi Modem Intel 82820 820
	(Camino 2) Chipset IDE controller Intel 82820 820 (Camino) Chipset
	ISA Bridge (ICH)

2002-09-25 13:38  branden

	* pci.lst: Down case a couple of company names that were in
	screaming capitals.

2002-09-25 13:37  branden

	* pci.lst: Add entries for:
	
	NEC USB 2.0 Root Hub Conexant HSF 56k HSFi Modem Intel 82820 820
	(Camino 2) Chipset IDE controller Intel 82820 820 (Camino) Chipset
	ISA Bridge (ICH)

2002-09-11 12:42  branden

	* pci-device.xml: For 1011:0009 (DECchip 21140 [FasterNet]), use
	"old_tulip" kernel module for Linux 2.2.x, and "tulip" for Linux
	2.4.x.	(Debian: #148974)

2002-09-11 12:33  branden

	* pci-device.xml: Added Linux kernel versioning info for RTL-8139
	cards; use the "rtl8139" module for 2.2.x kernels and "8139too" for
	2.4 kernels.  At long, long last...(Debian #109763)

2002-09-10 17:48  branden

	* pci-busclass.xml, pcmcia-busclass.xml, usb-busclass.xml: Resync
	with latest lst2xml.  "unknown" is not a Discover 2 device type;
	"miscellaneous" is.

2002-09-10 17:45  branden

	* ata-busclass.xml, scsi-busclass.xml: Use canonical Discover 2
	device types.

2002-09-10 17:44  branden

	* lst2xml: Map Discover 1's "unknown" device type to
	"miscellaneous".

2002-09-10 17:39  branden

	* debian/discover-data.files: Ship the new XML files in the Debian
	package.

2002-09-10 17:38  branden

	* README: The Discover DTD is not kept in the discover-data
	distribution, but in the main module.

2002-09-10 17:36  branden

	* usb-busclass.xml, usb-device.xml, usb-vendor.xml: Regenerated
	these files from most recent version of pci.lst.
	
	Also gets the results of vendor attribute relocation fix to
	lst2xml.

2002-09-10 17:34  branden

	* pci-busclass.xml, pci-device.xml, pci-vendor.xml: Regenerated
	these files from most recent version of pci.lst.  Also gets the
	results of vendor attribute relocation fix to lst2xml.

2002-09-10 17:32  branden

	* pcmcia.lst: Trash a spurious tab character.

2002-09-10 17:31  branden

	* lst2xml: When writing device elements, put the vendor attribute
	before the model attribute instead of way out at the end.  This
	makes the generated files more human-friendly for those used to
	dealing with vendor:model 0000:ffff style numeric IDs.

2002-09-10 17:30  branden

	* list.xml: Add actual location elements.  Should be good for
	production use on Debian systems.
	
	Add vim modeline.

2002-09-10 16:22  branden

	* Makefile: Ship the new PCMCIA XML data files.

2002-09-10 16:19  branden

	* pcmcia-busclass.xml, pcmcia-device.xml, pcmcia-vendor.xml: Add
	the PCMCIA bus data files.

2002-09-06 18:43  branden

	* debian/copyright: Add CVS keyword.

2002-09-06 18:42  branden

	* list.xml, pci-busclass.xml, pci-device.xml, pci-vendor.xml,
	pci.lst, pcmcia.lst, usb-busclass.xml, usb-device.xml,
	usb-vendor.xml, usb.lst: Add CVS keywords.

2002-09-06 18:35  branden

	* README, ata-busclass.xml, ata-device.xml, ata-vendor.xml,
	list.xml, lst2xml, pci-busclass.xml, pci-device.xml,
	pci-vendor.xml, scsi-busclass.xml, scsi-device.xml,
	scsi-vendor.xml, usb-busclass.xml, usb-device.xml, usb-vendor.xml:
	Wow, I did one of these without fucking up.
	
	(Move the Discover 2.x data stuff from the discover module to the
	discover-data module.)

2002-09-06 17:58  branden

	* Makefile: Don't mention discover.dtd; it will be part of the
	Discover 2.x library package.

2002-09-06 17:50  branden

	* ChangeLog, debian/changelog: Update changelogs.

2002-09-06 17:44  branden

	* Makefile: Ship new Discover 2.x data files and lst2xml conversion
	script.

2002-09-06 17:43  branden

	* COPYING: Add a copy of the GPL since this is a separate source
	distribution from Discover itself.

2002-09-06 17:40  branden

	* debian/rules: Tidy up the rules file of some redundancies I noted
	while giving bress a crash course in Debian packaging.

2002-09-06 17:40  branden

	* debian/copyright: Update copyright notice.

2002-09-05 17:06  branden

	* lst2xml: Update copyright and author notice.	Leaving this file
	GNU GPL licensed because it's going to be moved to the
	discover-data module which is not part of Discover proper (it's not
	needed except to migrate old .lst data).  We could BSD it, too, but
	until it's specifically discussed I'm leaving it as is.

2002-09-05 16:55  bress

	* pci-busclass.xml, pci-device.xml, pci-vendor.xml,
	usb-busclass.xml, usb-device.xml, usb-vendor.xml: Newly created XML
	data from lst2xml.  The data has been generated from the discover 1
	.lst files.

2002-09-05 16:42  bress

	* lst2xml: Newly converted data will now conform to the accepted
	standard for Discover.

2002-09-05 12:49  bress

	* lst2xml: Fixed the indenting throughout the file, twas horrible.

2002-09-04 13:59  jdaily

	* lst2xml: * Restructure XML data to match latest schema.

2002-08-21 14:11  branden

	* debian/changelog: Fix erroneous version number.

2002-08-21 14:10  branden

	* ChangeLog, ChangeLog: cvs2cl

2002-08-21 14:09  branden

	* debian/changelog: Updated.

2002-08-21 14:07  branden

	* pci.lst: Correct a duplicate entry and move another to its proper
	location, courtesy of Thomas Poindessous.  (Debian #155118)

2002-08-21 14:02  branden

	* ChangeLog: cvs2cl

2002-08-21 14:01  branden

	* ChangeLog, debian/changelog: Update upstream and Debian
	changelogs.

2002-08-21 13:55  branden

	* pci.lst: Correct a couple of erroneous device numbers,
	introducing support for 8086:2485 (Intel Corp. 82801CA/CAM AC'97
	Audio).  (Debian #157763)
	
	Also elaborate on description of 8086:2485 from the "AC'97 Audio"
	that was there before.

2002-08-19 10:34  branden

	* usb.lst: Added some USB jukebox-type devices courtesy of Linus
	Walleij.  (Debian #156453)

2002-05-31 16:52  branden

	* lst2xml: Add copyright boilerplates.

2002-05-29 09:20  jdaily

	* README: Eliminate the latest addition now that we have our own
	data files for testing.

2002-05-28 12:44  epg

	* scsi-busclass.xml: Resolve some XXX by marking them unknown.

2002-05-28 12:18  epg

	* ata-busclass.xml, ata-device.xml, ata-vendor.xml: Add ATA
	support.

2002-05-28 11:02  jdaily

	* README: Added a note indicating that the example .xml files in
	this directory are used by the test suite.

2002-05-24 01:42  epg

	* list.xml: New file.

2002-05-23 14:23  branden

	* debian/changelog: Updated.

2002-05-23 14:21  branden

	* ChangeLog, ChangeLog: cvs2cl

2002-05-23 14:20  branden

	* debian/changelog: Correct the spelling of Petter Reinholdtsen's
	name.

2002-05-23 14:20  branden

	* pci.lst: Updates to Apple Computer section.

2002-05-23 13:31  epg

	* pci.lst: Er, fix rev1.8 and rev1.9 *correctly*.  I just removed
	the lines in 1.9, like a fuckwit.  Now they're fixed.

2002-05-23 13:23  epg

	* pci.lst: Some devices were added in rev1.8 with the device class
	'audio' instead of 'sound'.  Fix this.

2002-05-22 16:42  epg

	* lst2xml: Put version attributes on xfree86 data.

2002-05-22 16:30  epg

	* lst2xml: Round two.  Help cperl-mode syntax-highlight what looks
	pretty straight-forward to me.	I hate computers.

2002-05-22 16:28  epg

	* lst2xml: Help cperl-mode syntax-highlight what looks pretty
	straight-forward to me.  I hate computers.

2002-05-21 19:42  epg

	* lst2xml: PCMCIA support.

2002-05-02 18:35  epg

	* scsi-busclass.xml, scsi-device.xml, scsi-vendor.xml: Add
	preliminary SCSI data.

2002-04-30 16:04  epg

	* lst2xml: Remove all tabs.

2002-04-30 15:39  epg

	* usb-busclass.xml, usb-device.xml, usb-vendor.xml: Generate.

2002-04-30 15:35  epg

	* lst2xml: (CLASSES): Add some new classes.
	
	(USB_CLASSES): Add USB support.
	
	Ignore devices in the old data we don't care about.

2002-04-29 22:01  epg

	* lst2xml: Whoops, left some debugging cruft in there.

2002-04-29 22:00  epg

	* lst2xml: Move the busclass stuff into a function (make_busclass)
	and move both functions below the CLASSES definitions.	Call
	make_busclass in the loop.

2002-04-29 21:47  epg

	* lst2xml: Move the busclass writing stuff under MAIN; it's going
	to use the new bus_upper variable, which comes from the
	command-line.  Get an uppercase version of the requested bus
	(formerly $hardware_type, now $bus).  Use that and eval to refer to
	the proper hash (for example, PCI_CLASSES).

2002-04-29 21:27  epg

	* lst2xml: s/NEW_CLASSES/PCI_CLASSES/ in preparation for writing
	files for the other busses.

2002-04-29 21:26  epg

	* lst2xml: s/$pciid/$id/ in the busclass section, in preparation
	for writing files for the other bus classes.

2002-04-29 15:24  branden

	* ChangeLog: cvs2cl

2002-04-29 15:24  branden

	* debian/changelog: Add note about 2.2.20 vs. 2.4.x module names.

2002-04-29 15:23  branden

	* debian/control: Updated extended description.

2002-04-29 15:16  branden

	* pci.lst, debian/changelog: Massive update based on a patch from
	Peter Reinholdtsen.
	
	216 new devices added to the database with kernel module or X
	server/driver information.
	
	Information updated for 25 existing devices.
	
	130 other new devices added to the database.

2002-04-29 14:58  epg

	* pci-busclass.xml: Regen.

2002-04-29 14:57  epg

	* lst2xml: (NEW_CLASSES): s/network /network/
	
	Also, in the section where we map between the old classes and the
	new, clean up the tests for missing data (it wasn't being
	completely tested and therefore reported errors incorrectly in some
	cases).

2002-04-29 14:17  epg

	* lst2xml: 'ethernet' becomes 'network' in the Brave New XML World.
	 Token-ring adapters and other such devices will also be subsumed
	under this class.

2002-04-29 13:27  branden

	* debian/: changelog, control: added Uploaders: field
	
	added mention of Linux kernel 2.2.20 specificity to package
	description

2002-04-29 13:25  branden

	* ChangeLog, debian/changelog: Welcome our friendly new "upstream"
	change log.

2002-04-29 13:21  branden

	* pci.lst: 1106:3058 uses the via82cxxx_audio.o module.  Addresses
	the only part of Debian #119449 that can be addressed by Discover
	1.x.  (The rest of the report is kernel 2.4-specific.)

2002-04-24 15:29  epg

	* pci-device.xml: Regen.

2002-04-24 15:29  epg

	* lst2xml: Alphabetize the attributes of the device elements in
	pci-device.xml.

2002-04-23 13:54  epg

	* pci-vendor.xml: Re-generate.

2002-04-23 13:20  epg

	* pci-busclass.xml, pci-device.xml, pci-vendor.xml: Re-generate.

2002-04-23 13:13  epg

	* lst2xml: Branden and i came to the CLASSES hash and renamed the
	keys to the new names.	Great, but the point of this file is to
	generate new stuff from old, we're dorks :-/.  So move the new
	stuff to NEW_CLASSES.  Generate pci-busclass.xml purely from
	NEW_CLASSES and use both CLASSES and NEW_CLASSES to convert from
	old data to new.
	
	Also go back to using the 'name' attribute in busclass_list and
	vendor_list, just because that's what the parsing code currently
	does.  Really need to make this stuff the contents of the elements
	eventually, IMNSHO.

2002-04-23 10:32  jdaily

	* pci-busclass.xml: Ditch pmc as per epg.

2002-04-19 15:30  epg

	* lst2xml: Remove pmc from CLASSES; discover need not concern
	itself with this stuff.

2002-04-19 14:57  branden

	* lst2xml: Resolve confusion about bus class numbers and how to use
	them.

2002-04-16 19:12  epg

	* pci-busclass.xml, pci-device.xml, pci-vendor.xml: Add example
	data files, generated from the example pci.lst.

2002-04-16 19:11  epg

	* lst2xml: Print the vendor element in the new way.

2002-04-16 19:00  epg

	* lst2xml: Print opening and closing sections on pci-busclass.xml.
	
	Rename the 'class' attributes of device_list and vendor_list to
	'bus'.

2002-04-16 18:56  epg

	* lst2xml: Forgot to print </data> instead of </interface> at the
	end of each item.

2002-04-16 18:46  epg

	* README: Describe this directory.

2002-04-16 18:43  epg

	* lst2xml: Add a conversion script based on some old cruft from
	John Daily.

2002-03-19 12:52  branden

	* debian/changelog: Changelog entry for new release.

2002-03-19 12:52  branden

	* debian/control: change Maintainer to Progeny Debian Packaging
	Team

2002-03-19 12:49  branden

	* pci.lst: Identify all devices using the i82365 module as being
	device type "bridge" instead of "unknown".

2002-03-08 14:12  branden

	* debian/changelog: New changelog entry for new package version.

2002-03-08 14:12  branden

	* pci.lst: Fix typo in module name.

2002-02-19 12:43  branden

	* debian/changelog: New changelog entry for new release.

2002-02-15 13:47  branden

	* pci.lst: Kernel 2.2.20 has the "sym53c8xx" driver, therefore:    
	    * Use this module, not "ncr53c8xx", for the Symbios/NCR 53c875,
		53c895a, and 53c1010 devices.
	
	Also, add Symbios/NCR 53c1010 66MHz Ultra3 SCSI Adapter device,
	using the sym53c8xx module.

2002-02-15 12:48  branden

	* debian/changelog: Resync with home-maintained version.

2002-02-15 12:47  branden

	* debian/copyright: Resynced with me home-maintained version:
	
	  * debian/copyright: s/libdiscover0-hwlists/discover-data/g

2002-02-15 12:47  branden

	* debian/control: Resync with my home-maintained version:
	
	  * debian/control: change Build-Depends to Build-Depends-Indep
	  * debian/control: added a touch more info to the extended
	description

2002-02-15 12:46  branden

	* pci.lst: Resync with changes I made while maintaining this
	package on my home box:
	
	Bug numbers are Debian BTS.
	
	    - added several new S3 graphics chipsets, including the
	"Twister K"
	      (thanks, Chris Lawrence) (Closes: #119372,#130799)
	    - added PCI ID for Hewlett-Packard NetRAID 2M card, which uses
	the AMI
	      MegaRAID chips (thanks, Dann Frazier) (Closes: #121496)
	    - added X server/driver information for i815 video chips
	(Closes: #130702)
	    - change SiS 630 chipsets from XF86_SVGA server to XFree86(sis)
	    - removed names of ALSA drivers, replaced with "unknown"
	      (Closes: #109762)
	    - updated 3Com vendor section (Closes: #112808)
	    - updated ATI vendor section

2002-01-18 01:20  dsp

	* Makefile, pci.lst, pcmcia.lst, usb.lst, debian/changelog,
	debian/control, debian/copyright, debian/discover-data.files,
	debian/rules:  - The Progeny CVS repository has undergone
	significant
	   renovation.	It is possible that paths or files previously
	   mentioned have changed locations or been removed altogether.

2001-08-17 15:19  branden

	* debian/changelog: Add version number.

2001-08-17 15:11  branden

	* debian/: changelog, control, copyright, discover-data.files,
	rules: Add debian package stuff.

2001-08-17 15:05  branden

	* Makefile, pci.lst, pcmcia.lst, usb.lst: New hardware list
	package.