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
|
discover-data (2.2013.01.13) unstable; urgency=medium
* Rewrite debian/rules using dh, keeping only a few directives.
* Rename debian/discover-data.bug into debian/discover-data.bug-script
so that it gets picked up by dh_bugfiles automatically.
* Delete debian/discover1-data.bug (binary package dropped in 2010).
-- Cyril Brulebois <kibi@debian.org> Sun, 09 Jan 2022 10:27:19 +0100
discover-data (2.2013.01.12) unstable; urgency=low
* Team upload.
[ Petter Reinholdtsen ]
* Update HW mappings for USB devices:
04d8:f8da: Install package colorhug-client from Debian 7 (Wheezy).
20df:0001: Install package ekeyd.
* Correct Vcs-Browser link in control file.
[ Samuel Thibault ]
* Update vcs links to git salsa
* control: Remove Otavio Salvador and Gaudenz Steinlin from uploaders
(Closes: 847267).
* Migrate to python3.
* control: Suggest python3.
* source/format: Set format to native.
-- Samuel Thibault <sthibault@debian.org> Sun, 31 Oct 2021 19:10:01 +0100
discover-data (2.2013.01.11+nmu1) unstable; urgency=medium
[ Holger Levsen ]
* Non maintainer upload by the Reproducible Builds team.
* Source upload to rebuild on buildd with .buildinfo files.
* Switch to python3. Closes: #967126
* Confirm using diffoscope that the janitor made changes below result in
sensible changes in the binaries being built.
* Drop Vcs- headers as they pointed to alioth/svn.
[ Debian Janitor ]
* Add missing debian/rules targets build-indep, build-arch.
* Bump debhelper from deprecated 8 to 12.
* Set debhelper-compat version in Build-Depends.
* Fix day-of-week for changelog entry 2.2007.03.22.
* Trim trailing whitespace.
-- Holger Levsen <holger@debian.org> Fri, 15 Jan 2021 20:05:45 +0100
discover-data (2.2013.01.11) unstable; urgency=low
* Update HW mappings for USB devices:
1130:0202: Install package pymissile.
091e:0003: Install packages gpsbabel, gpsbabel-gui, gpsman,
gpstrans, mkgmap, qlandkartegt, qlandkartegt-garmin
and viking.
04b4:fd10, 04b4:fd11, 04b4:fd12 and 04b4:fd13: Install sispmctl
(Closes: #697839)
* Revert changed input charmap for usb.ids from UTF-8 to ISO-8859-1.
It is not using the same charmap as pci.ids.
-- Petter Reinholdtsen <pere@debian.org> Fri, 11 Jan 2013 11:16:53 +0100
discover-data (2.2013.01.09) unstable; urgency=low
* Update HW mappings for PCI devices:
14e4:4320: Install b43-fwcutter to get required firmware.
1011:0019: Remove incorrect de4x5 kernel module, as discover is
not used for kernel module loading any more (Closes:
#394032).
1000:0030: Do not install package mpt-status, as the ID is used
in VMWare machines without RAID support (Closes: #618572).
* Update HW mappings for USB devices:
1050:0010: Install package yubikey-personalization.
0694:0001: Install package nqc.
0694:0002: Install package python-nxt, nbc and t2n.
* Adjust Makefile.update rule to update PCI entries, to make sure
pci.ids only contain ASCII characters.
* Correct input charmap for usb.ids from ISO-8859-1 to UTF-8.
* Update pci-vendors.xml and pci-devices.xml from
http://pciids.sourceforge.net/pci.ids.gz.
* Update usb-device.xml, usb-vendors.xml, usb.lst and usb-26.lst
from http://www.linux-usb.org/usb.ids (Closes: #672316).
* Update debhelper level from 4 to 8 to move to a supported debhelper
level. No changes needed.
-- Petter Reinholdtsen <pere@debian.org> Wed, 09 Jan 2013 14:03:51 +0100
discover-data (2.2010.10.18) unstable; urgency=low
* Update HW mappings for PCI devices:
8086:2592 and
8086:3582: do not install i810switch after Lenny. Based on
feedback from Julien Cristau
* Avoid changes made in last upload to keep lintian quiet that are
likely to make the release team reject this package for Squeeze:
- Undo debhelper compatibility level change (7 back to 4).
- Undo changes to get suggests on python.
-- Petter Reinholdtsen <pere@debian.org> Mon, 18 Oct 2010 19:28:31 +0200
discover-data (2.2010.10.14) unstable; urgency=low
* Update HW mappings for PCI devices:
8086:3582: install i810switch.
80ee:beef: Install virtualbox-ose-guest-x11.
Made ipw3945-source and ipw3945d package entries versioned to
Etch and earlier (Closes: #583993).
* Update HW mappings for USB devices:
04e8:323a: Install splix.
04e8:323b: Install splix.
04e8:323d: Install splix.
04e8:3242: Install splix.
04e8:324c: Install splix.
04e8:324d: Install splix.
04e8:325b: Install splix.
04e8:325f: Install splix.
04e8:3260: Install splix.
04e8:3268: Install splix.
04e8:3276: Install splix.
04e8:341b: Install splix.
04e8:3426: Install splix (Closes: #595100).
* Add depends on ${misc:Depends} to keep debhelper and lintian happy.
* Raise debhelper compatibility level from 4 to 7.
* Suggest python dependencies needed to update the data files. These
are only useful for the tools, and not needed for users of the data.
* Update standards-version from 3.8.4 3.9.1. No change needed.
-- Petter Reinholdtsen <pere@debian.org> Thu, 14 Oct 2010 23:07:42 +0200
discover-data (2.2010.06.05) unstable; urgency=low
* Update HW mappings for PCI devices:
8086:2592: Install i810switch on Lenny and later.
Made ipw3945-source package entries versioned to Lenny and earlier.
* Update HW mappings for USB devices:
04db:005b: Install argyll.
0670:0001: Install argyll.
0765:d020: Install argyll.
0765:d092: Install argyll.
0765:d094: Install argyll.
085c:0200: Install argyll.
085c:0300: Install argyll.
0971:2000: Install argyll.
0971:2001: Install argyll.
0971:2003: Install argyll.
0971:2005: Install argyll.
0971:2007: Install argyll (Closes: #583940).
* Update pci-vendors.xml, pci-devices.xml and pci.lst
from http://pciids.sourceforge.net/pci.ids.gz.
* Drop obsolete discover1-data binary package.
* Drop 'ignore' kernel module entries from the USB device list. The
kernel module list is not up to date, and it do not make sense to
list entries to ignore when an empty entry do the same.
* Extend pci-ids2xml to handle usb.ids too.
* Extend merge-device-xml to take file names on the command line.
* Extend Makefile.update to handle USB device updates too.
* Update usb-device.xml, usb-vendors.xml, usb.lst and usb-26.lst
from http://www.linux-usb.org/usb.ids.
-- Petter Reinholdtsen <pere@debian.org> Sat, 05 Jun 2010 13:58:40 +0200
discover-data (2.2010.04.07) unstable; urgency=low
* Update standards-version from 3.7.3 to 3.8.4. No changes needed.
* Add Vcs-Browser entry to control file.
* Update HW mappings for PCI devices:
1000:0030: Install mpt-status instead of non-existing mpt-utils.
* Fix merge-lst-to-xml which was broken with the patch applied
for bug #468624.
* Update pci-vendors.xml, pci-devices.xml and pci.lst
from http://pciids.sourceforge.net/pci.ids.gz.
-- Petter Reinholdtsen <pere@debian.org> Wed, 07 Apr 2010 20:54:51 +0200
discover-data (2.2009.12.19) unstable; urgency=low
* Acknowledge NMU.
* Update HW mappings for PCI devices:
14e44312: Install b43-fwcutter to get required firmware.
* Update pci-vendors.xml
from http://pciids.sourceforge.net/pci.ids.gz. Not updating
device list, as the scripts to do so now seem to be broken,
resulting in empty files.
-- Petter Reinholdtsen <pere@debian.org> Sat, 19 Dec 2009 20:08:51 +0100
discover-data (2.2008.06.25+nmu1) unstable; urgency=low
* Non-maintainer upload.
* Drop build-dep on python-xml (deprecated). Port the following Python
scripts to legacy python modules (Closes: #468624):
- reduce-xml (patch from Ben Hutchings)
- merge-lst-to-xml
-- Stefano Zacchiroli <zack@debian.org> Wed, 09 Sep 2009 13:01:23 +0200
discover-data (2.2008.06.25) unstable; urgency=low
* Update pci-devices.xml and pci.lst
from http://pciids.sourceforge.net/pci.ids.gz.
* Update HW mappings for PCI devices:
80862a03: intel X video driver (7.2->). Thanks to Dann Frazier
for this one.
80862592: Do not install 915resolution for Debian after v4.0.
80862772: The same (Closes: #464966).
-- Petter Reinholdtsen <pere@debian.org> Wed, 25 Jun 2008 22:42:23 +0200
discover-data (2.2008.01.12) unstable; urgency=low
[ Otavio Salvador ]
* Fix xml2lst script to don't break some entries between multiple lines
while reading.
[ Petter Reinholdtsen ]
* Make sure to regenerate *.lst files when the Makefile changes,
in case the kernel or X version number was changed.
* Update pci-devices.xml and pci.lst
from http://pciids.sourceforge.net/pci.ids.gz.
* Update README file to document how to update from pciids.sourceforge.net,
and to reflect the current status of the discover-data package.
* Update HW mappings for PCI devices:
80862592: debian package 915resolution.
10de0194: nv X video driver (7.2->). Thanks to Ubuntu for this one.
10de0400: nv X video driver (7.2->). Thanks to Ubuntu for this one.
10de0402: nv X video driver (7.2->). Thanks to Ubuntu for this one.
10de0404: nv X video driver (7.2->). Thanks to Ubuntu for this one.
10de0407: nv X video driver (7.2->). Thanks to Ubuntu for this one.
10de0409: nv X video driver (7.2->). Thanks to Ubuntu for this one.
10de040a: nv X video driver (7.2->). Thanks to Ubuntu for this one.
10de040b: nv X video driver (7.2->). Thanks to Ubuntu for this one.
10de040c: nv X video driver (7.2->). Thanks to Ubuntu for this one.
10de040d: nv X video driver (7.2->). Thanks to Ubuntu for this one.
10de040e: nv X video driver (7.2->). Thanks to Ubuntu for this one.
10de040f: nv X video driver (7.2->). Thanks to Ubuntu for this one.
10de0421: nv X video driver (7.2->). Thanks to Ubuntu for this one.
10de0422: nv X video driver (7.2->). Thanks to Ubuntu for this one.
10de0423: nv X video driver (7.2->). Thanks to Ubuntu for this one.
10de0425: nv X video driver (7.2->). Thanks to Ubuntu for this one.
10de0426: nv X video driver (7.2->). Thanks to Ubuntu for this one.
10de0427: nv X video driver (7.2->). Thanks to Ubuntu for this one.
10de0428: nv X video driver (7.2->). Thanks to Ubuntu for this one.
10de0429: nv X video driver (7.2->). Thanks to Ubuntu for this one.
10de042a: nv X video driver (7.2->). Thanks to Ubuntu for this one.
10de042b: nv X video driver (7.2->). Thanks to Ubuntu for this one.
10de042d: nv X video driver (7.2->). Thanks to Ubuntu for this one.
10de042f: nv X video driver (7.2->). Thanks to Ubuntu for this
one, modulo the apparent typo in their version.
80864229: debian packages ipw3945-source and ipw3945d.
* Update HW mapping for USB devices:
08ff2580: thinkfinger-tools package.
* Modify build rules for *.lst files to use X version 7.3 to match
the X.org packages in unstable.
* Updated standards-version from 3.7.2 to 3.7.3. No changes needed.
-- Petter Reinholdtsen <pere@debian.org> Sat, 12 Jan 2008 20:30:26 +0100
discover-data (2.2007.08.07) unstable; urgency=low
* Increase kernel version for *-26.lst from 2.6.17 to 2.6.21, to
match the version currently in unstable.
* Modify build rules for *.lst files to specify which X version to
use. Set the current version to 7.2 to match the X.org packages
in unstable.
* Update PCI X mapping for all cards supported by i810 to use the
intel driver from X version 7.2.
* Regenerate usb.lst, pci.lst and pci-26.lst from scratch to make
sure their content derives from content in the xml files. This
removed a lot of obsolete entries for non-existing kernel modules
and obsolete X servers.
* Update pci-devices.xml and pci.lst
from http://pciids.sourceforge.net/pci.ids.gz.
* Update HW mappings for PCI devices:
18140101: debian package rt2x00-source.
18140201: debian package rt2x00-source.
18140301: debian package rt2x00-source.
18140302: debian package rt2x00-source.
18140401: debian package rt2x00-source.
80864222: debian package ipw3945-source.
80864227: debian package ipw3945-source.
808629b2: intel X video driver (7.2->).
808629c2: intel X video driver (7.2->).
808629d2: intel X video driver (7.2->).
80862a02: intel X video driver (7.2->). Thanks to Ubuntu for
these four.
-- Petter Reinholdtsen <pere@debian.org> Tue, 7 Aug 2007 10:08:55 +0200
discover-data (2.2007.05.11) unstable; urgency=low
* Remove udeb build rules. This package is no longer used by
debian- installer.
* Move rules to generate *.lst from the *-device.xml files from
Makefile.update to Makefile, as it is part of the normal build
now. Create usb-busclass-v1.xml and pcmcia-busclass-v1.xml
to keep the old busclass information.
* Update usb-device.xml to match the original usb.lst.
* Update pci-devices.xml and pci.lst
from http://pciids.sourceforge.net/pci.ids.gz.
* Update HW mappings for PCI devices:
102b0522: bus class video.
10de0191: nv X video driver.
10de0193: nv X video driver.
10de019d: nv X video driver.
10de019e: nv X video driver. Thanks to Ubuntu for these five.
-- Petter Reinholdtsen <pere@debian.org> Fri, 11 May 2007 11:31:40 +0200
discover-data (2.2007.03.22) unstable; urgency=low
* debian/discover1-data.bug:
- Include the discover output for the command line used when
configuring X, to detect errors in that output.
- Include X server and module information for all devices detected.
* Update pci-devices.xml and pci.lst
from http://pciids.sourceforge.net/pci.ids.gz.
-- Petter Reinholdtsen <pere@debian.org> Thu, 22 Mar 2007 00:40:38 +0100
discover-data (2.2007.03.21) unstable; urgency=low
* Update pci-devices.xml and pci.lst
from http://pciids.sourceforge.net/pci.ids.gz.
* Update HW mappings for PCI devices:
102b0522: mga X driver. (Closes: #411020)
-- Petter Reinholdtsen <pere@debian.org> Wed, 21 Mar 2007 09:49:31 +0100
discover-data (2.2007.02.02) unstable; urgency=high
* Update pci-devices.xml and pci.lst
from http://pciids.sourceforge.net/pci.ids.gz.
* Revert changes to pci-busclass.xml, to make sure 'display' devices
are detected again when the X packages autodetect its
configuration. (Closes: #409101)
* Use new pci-busclass-v1.xml when generating discover v1 lst files,
to get the correct bus class names there.
* Add USB device 046d:c016 based on info in bug #409101.
-- Petter Reinholdtsen <pere@debian.org> Fri, 2 Feb 2007 23:10:30 +0100
discover-data (2.2007.01.21) unstable; urgency=low
* Update HW mappings for PCI devices:
10de0044, 10de0046, 10de0047, 10de0048, 10de0090, 10de0091,
10de0092, 10de0093, 10de0095, 10de0098, 10de0099, 10de009d,
10de00c3, 10de018c, 10de018d, 10de01d1, 10de01d3, 10de01d6,
10de01d7, 10de01d8, 10de01d9, 10de01da, 10de01db, 10de01dc,
10de01dd, 10de01de, 10de01df, 10de0218, 10de0240, 10de0241,
10de0242, 10de0244, 10de0247, 10de0290, 10de0291, 10de0292,
10de0298, 10de0299, 10de029a, 10de029b, 10de029c, 10de029e,
10de029f, 10de0391, 10de0392, 10de0393, 10de0394, 10de0395,
10de0397, 10de0398, 10de0399, 10de039a, 10de039b, 10de039c,
10de039e: nv X driver, based on the nv_driver.c source.
80863575: agpgart [2.4->2.6), intel-agp [2.6->) based on
currently loaded modules on a Thinkpad X30.
11063118: via X driver. Based on via_driver.c source.
-- Petter Reinholdtsen <pere@debian.org> Sun, 21 Jan 2007 16:24:28 +0100
discover-data (2.2007.01.20) unstable; urgency=low
[ Petter Reinholdtsen ]
* Mark all PCI devices using i2c-i801 as bustype 'bridge'.
* Replace '(lspci -n; lspci)|sort' in reportbug scripts and use
'lspci -nn' instead. This require pciutils >= 1:2.2.4, add
recommends to document this.
* Update the name of some busclasses in pci-busclass.xml to match
the pci.lst values.
* Add PCI busclass 0805 (Generic system peripheral) using
miscellaneous as the keyword used in pci.lst.
* Add video busclass to a few nvidia devices.
* Update pci-vendor.xml, pci-devices.xml, pci.lst and pci-26.lst
from http://pciids.sourceforge.net/pci.ids.gz.
* Update HW mappings for PCI devices:
8086:2653: ata_piix[2.6.15->) based on the new reportbug script
and my laptop.
10de029d: nv X driver. (Closes: #407138)
80862972,
80862982,
80862992 and
808629a2: i810 X driver, based on the i810_driver.c
source. (Closes: #407103)
-- Petter Reinholdtsen <pere@debian.org> Sat, 20 Jan 2007 13:28:15 +0100
discover-data (2.2006.12.28) unstable; urgency=low
[ Petter Reinholdtsen ]
* Update HW mappings for PCI devices:
10024b48 -> ati X driver. Thanks to Joerg from Kanotix.
10025b62 -> radeon to ati X driver. Thanks to Joerg from Kanotix.
[ Joshua Kwan ]
* Remove myself from Uploaders, I haven't the time to help out with this.
[ Christian Perrier ]
* Update HW mappings for PCI devices:
10de016a -> nv X driver. Thanks to Michael Josenhans and Frans Pop
Closes: #402459
53338d01 -> savage X driver. Thanks to Bernat Tallaferro
Closes: #403368
[ Petter Reinholdtsen ]
* Redo 10de016a in the correct file pci-device.xml to make sure pci.lst
still can be generated from it.
* Update pci-devices.xml, pci.lst and pci-26.lst from
http://pciids.sourceforge.net/pci.ids.gz.
* Update HW mappings for PCI devices:
1077:2100 and
1077:2200: debian package qla2x00-source (Closes: #398071)
80861049 8086104a 8086104b 8086104c 8086104d 80861060
8086107d 8086107e 8086107f 80861096 80861098 80861099
808610a4 808610b5 808610b9 808610ba 808610bb 808610bc
808610c4 808610c5: e1000[2.6->).
* Make sure all devices supported by kernel module e1000 is listed
in pci-device.xml. Flag all as working from version 2.6->.
(Closes: #403876)
* Extend reportbug scripts with code from Auke Kok to list which PCI
device is used by which kernel module. See bug #403876 for the
original. Updated the discover1-data script to match the
discover-data script.
-- Petter Reinholdtsen <pere@debian.org> Thu, 28 Dec 2006 00:11:17 +0100
discover-data (2.2006.10.29) unstable; urgency=low
* Switch to native version number, to make it easier to build
from svn. The debian package is the native version anyway.
* Update busclass to 'ethernet' for all PCI devices using the bnx2
kernel module.
* Update HW mappings for PCI devices:
11426422 -> XF86_SVGA -> vesa X driver for X v4. Thanks to
Konstantions Margaritas for the tip.
* Update pci-devices.xml, pci.lst and pci-26.lst from
http://pciids.sourceforge.net/pci.ids.gz.
* Add XS-Vcs-Svn entry in the control file, to make the subversion
repository easier to find.
-- Petter Reinholdtsen <pere@debian.org> Sun, 29 Oct 2006 19:08:36 +0100
discover-data (2.2006.10.12-1) unstable; urgency=low
* Update HW mappings for PCI devices:
1002:4a54 -> ati X driver. Patch from Ubuntu.
1002:5836 -> ati X driver. Patch from Ubuntu.
1002:5837 -> ati X driver. Patch from Ubuntu.
1002:5a41 -> ati X driver. Patch from Ubuntu.
1002:5a42 -> ati X driver. Patch from Ubuntu.
1002:5b62 -> debian packages fglrx-control fglrx-driver
fglrx-kernel-src (Closes: #387617)
1023:2100 -> trident X driver. Patch from Ubuntu.
1039:0003 -> sis X driver -> unknown. Patch from Ubuntu.
1039:0204 -> video card -> unknown. Patch from Ubuntu.
1039:0205 -> sis X driver -> unknown. Patch from Ubuntu.
1039:0215 -> video card -> unknown. Patch from Ubuntu.
1039:0225 -> video card -> unknown. Patch from Ubuntu.
1077:2100 -> qlogicisp > qlogicfc. Patch from discover1-data.
1077:2200 -> qlogicisp > qlogicfc. Patch from discover1-data.
1028:0013 -> megaraid2[2.2->2.4), megaraid[2.4->2.6.14),
megaraid_mbox [2.6.14->inf). (Closes: #336835)
1039:0530 -> sis X driver -> unknown. It is a bridge.
1106:3108 -> via X driver. Thanks to Luis Echevarria. (Closes: #383221)
1179:0601 -> trident X driver -> unknown. It is a bridge.
11ab:4362 -> sk98lin. Thanks to Lennart Sorensen. (Closes: #323294)
18ca:0020 -> sis X driver. Patch from Ubuntu.
18ca:0040 -> sis X driver. Patch from Ubuntu.
5333:8d04 -> vesa -> savage X driver. Patch from Ubuntu.
8086:1060 -> e1000. Thanks to Dann Frazier. (Closes: #375036)
8086:24d1 -> ata_piix -> piix. Data from discover1-data pci.lst.
8086:2570 -> agpgart[2.4->2.6), intel-agp[2.6->). Partial patch
from Ubuntu.
8086:2580 -> agpgart[2.4->2.6), intel-agp[2.6->). Partial patch
from Ubuntu.
8086:258a -> i810 X driver. Patch from Ubuntu.
8086:2590 -> agpgart[2.4->2.6), intel-agp[2.6->). Partial patch
from Ubuntu.
8086:2770 -> agpgart[2.4->2.6), intel-agp[2.6->). Partial patch
from Ubuntu.
8086:2782 -> i810 X driver. Patch from Ubuntu.
8086:2792 -> i810 X driver. Patch from Ubuntu.
8086:27a0 -> agpgart[2.4->2.6), intel-agp[2.6->). Partial patch
from Ubuntu.
8086:27b8 -> i8xx_tco -> unknown. (Closes: #392418)
8086:3580 -> agpgart[2.4->2.6), intel-agp[2.6->). Partial patch
from Ubuntu.
* List all ATI cards supported by the ATI X.org driver as using the
'ati' X driver and default unknown ATI cards to vesa. Patch from
Ubuntu.
* Correct vendor default video card entry for Intel in pci.lst.
* Update HW mapping for ethernet sbus devices. Thanks to Frans
Pop. (Closes: #357488)
* Update pci-26.lst based on XML info for kernel 2.6.17.
* Replace all 'ignore' entries with 'unknown' in pci.lst, to make it
easier to compare it with the generated file.
* Modify xml2lst to properly handle several versioned kernel
modules.
* Update pci-devices.xml from http://pciids.sourceforge.net/pci.ids.gz.
* Synchronized pci-device.xml and pci.lst to a point where it should
be safe to generate pci.lst from pci-device.xml. This is now the
default.
-- Petter Reinholdtsen <pere@debian.org> Thu, 12 Oct 2006 20:12:04 +0200
discover-data (2.2006.10.11-1) unstable; urgency=low
[ Otavio Salvador ]
* Removed udeb package;
[ Petter Reinholdtsen ]
* Split out legacy format to a discover1-data package, intended to
replace the old standalone discover1-data package. Just providing
discover1-data from discover-data do not work, as discover1 have
versioned dependency on discover1-data. Drop conflict between
discover-data and discover1-data.
* Add discover1-data-udeb because it is used by d-i beta3.
* Remove obsolete symlinks from /usr/share/discover/ to
/lib/discover/. They are not present in the old discover1-data
package.
* Copy *.lst files from discover1-data for the legacy package,
includes several fixes for discover1-data.
* Merge in maintainer and uploader list from discover1-data.
* Update pci-vendor.xml from http://pciids.sourceforge.net/pci.ids.gz.
* Use kernel version 2.6.17 when generating the *-26.lst files.
* Updated di-kernel-list from
http://people.debian.org/~joeyh/d-i/modules-list
* Remove dh_gencontrol arguments. They do not seem to change the build.
* Update HW mappings for PCI devices:
106b:003e -> dmasound_pmac[2.2->2.6), snd-powermac[2.6->inf). Patch
from Jack Bates. (Closes: 387307)
1002:5b62 -> from ati to radeon X module. Tested on Dell OptiPlex GX620.
11ab:5040 -> sata_mv
11ab:5041 -> sata_mv
11ab:5080 -> sata_mv
11ab:5081 -> sata_mv
11ab:6041 -> sata_mv
11ab:6081 -> sata_mv (Closes: #341061)
10b9:5289 for a SATA driver. (Closes: #351487)
8086:27a2 for an i810. (Closes: #381725)
-- Petter Reinholdtsen <pere@debian.org> Wed, 11 Oct 2006 18:24:11 +0200
discover-data (2.2006.09.05-1) unstable; urgency=low
* According to bug #336835, the megaraid module changed name to
megaraid_mbox in kernel version 2.6.14. Adjust all entries in
pci-device.xml to specify this.
* Merge content of pci-device-deb.xml into pci-device.xml for
easier maintainence.
* Modify reportbug script to include lsusb output, and only list the
X driver name instead of lots of X settings.
* Updated pci vendor and device list based on the names available from
<URL:http://pciids.sourceforge.net/pci.ids.gz>, adding one device.
* Update HW mappings for PCI devices:
8086:2582 -> from vesa to i810 X module (Closes: #383593)
8086:2772 -> debian package 915resolution
* Update HW mapping for USB devices:
05ac:1300 -> debian package gtkpod
04a9:30bf -> debian package gphoto2
03f0:0004 -> debian packages hplip and hpijs-ppds.
03f0:0104 -> debian packages hplip and hpijs-ppds.
03f0:0111 -> debian packages hplip and hpijs-ppds.
03f0:0204 -> debian packages hplip and hpijs-ppds.
03f0:0304 -> debian packages hplip and hpijs-ppds.
03f0:0311 -> debian packages hplip and hpijs-ppds.
03f0:0404 -> debian packages hplip and hpijs-ppds.
03f0:0504 -> debian packages hplip and hpijs-ppds.
03f0:0604 -> debian packages hplip and hpijs-ppds.
03f0:0704 -> debian packages hplip and hpijs-ppds.
03f0:0712 -> debian packages hplip and hpijs-ppds.
03f0:0804 -> debian packages hplip and hpijs-ppds.
03f0:0904 -> debian packages hplip and hpijs-ppds.
03f0:1004 -> debian packages hplip and hpijs-ppds.
03f0:1104 -> debian packages hplip and hpijs-ppds.
03f0:1151 -> debian packages hplip and hpijs-ppds.
03f0:1204 -> debian packages hplip and hpijs-ppds.
03f0:1504 -> debian packages hplip and hpijs-ppds.
03f0:1604 -> debian packages hplip and hpijs-ppds.
03f0:1904 -> debian packages hplip and hpijs-ppds.
03f0:1c17 -> debian packages hplip and hpijs-ppds.
03f0:1e11 -> debian packages hplip and hpijs-ppds.
03f0:2004 -> debian packages hplip and hpijs-ppds.
03f0:2104 -> debian packages hplip and hpijs-ppds.
03f0:2304 -> debian packages hplip and hpijs-ppds.
03f0:2811 -> debian packages hplip and hpijs-ppds.
03f0:2d11 -> debian packages hplip and hpijs-ppds.
03f0:3102 -> debian packages hplip and hpijs-ppds.
03f0:3104 -> debian packages hplip and hpijs-ppds.
03f0:3304 -> debian packages hplip and hpijs-ppds.
03f0:3404 -> debian packages hplip and hpijs-ppds.
03f0:3504 -> debian packages hplip and hpijs-ppds.
03f0:3c02 -> debian packages hplip and hpijs-ppds.
03f0:3d11 -> debian packages hplip and hpijs-ppds.
03f0:3f11 -> debian packages hplip and hpijs-ppds.
03f0:5004 -> debian packages hplip and hpijs-ppds.
03f0:6004 -> debian packages hplip and hpijs-ppds.
03f0:6104 -> debian packages hplip and hpijs-ppds.
03f0:6204 -> debian packages hplip and hpijs-ppds.
03f0:6602 -> debian packages hplip and hpijs-ppds.
03f0:7004 -> debian packages hplip and hpijs-ppds.
03f0:7104 -> debian packages hplip and hpijs-ppds.
03f0:7204 -> debian packages hplip and hpijs-ppds.
03f0:7304 -> debian packages hplip and hpijs-ppds.
03f0:a004 -> debian packages hplip and hpijs-ppds. (Closes: #385846)
-- Petter Reinholdtsen <pere@debian.org> Tue, 5 Sep 2006 09:50:19 +0200
discover-data (2.2006.08.15-1) unstable; urgency=low
[ Petter Reinholdtsen ]
* Synchronize pci-device.xml with pci.lst in discover1-data.
Modified pci-busclass.xml to use the same names as in
discover1-data, to make it easier to compare the two. Leaving
i810-tco disabled to avoid machines rebooting 1 minute after the
module is loaded. (Bug #262920).
* Add vendor-default X cards for ATI (ati), SiS (isis), nVidia (nv)
and Intel (i810).
* Add support for vendor-default devices in xml2lst.
* Mark all i810_rng entries in pci-device.xml as valid only for
kernels between 2.2 and 2.6, as it is claimed to be gone from
kernels after 2.6. (Closes: #377712)
* Try to include X settings in reported bugs.
* Add tool discover-updater.pl found in bug #353771. Script from
Dan Sheppard.
* Run discover-updater.pl to update pci-device.xml with entries from
/lib/modules/2.6.15-1-686-smp/modules.pcimap.
* Update HW mappings for PCI devices:
10de:0185 -> nv X module (Closes: #296474)
1106:3065 -> via-rhine (Closes: #250748)
8086:27a2 -> i810 X module (Closes: #362792)
8086:27c4 -> ata_piix
8086:27d8 -> snd-hda-intel (Closes: #363330)
8086:108c -> e1000 (Closes: #325439)
-- Petter Reinholdtsen <pere@debian.org> Tue, 15 Aug 2006 09:55:38 +0200
discover-data (2.2006.08.13-1) unstable; urgency=low
[ Petter Reinholdtsen ]
* Adjust lst2xml to handle both 'unknown' and 'ignore' as the module name.
* Document the existence of a non-free driver for PCI id 10ec:8180
(RTL8180L 802.11b MAC) in pci-device.xml.
* Updated standards-version from 3.5.7 to 3.7.2. No changes needed.
* Put Otavio back as uploader, he is willing to co-maintain.
* Propose package cpqarrayd for all devices currently using kernel
module cpqarray.
* Updated pci vendor and device list based on the names available from
<URL:http://pciids.sourceforge.net/pci.ids.gz>. This added 2720 new
PCI devices to pci-device.xml.
* Added 'update' target in Makefile.update to automatically sync
pci-{device,vendor}.xml with pci.ids, and 'sort-device-xml' target
to sort all *-device.xml.
* Updated di-kernel-list to the current list of kernel modules in d-i.
* Removed vim instructions from debian/changelog to keep lintian happy.
* Update HW mappings for PCI devices:
1011:0002 -> de2104x [>=2.6.8], de4x5 [2.2->2.6.8] (Closes: #327214)
1011:0014 -> de4x5 (Closes: #317884)
1039:6330 -> sis X module (Closes: #354153)
14b9:1504 -> airo [>2.6.12] (Cisco Aironet Wireless 802.11b)
8086:2592 -> i810 X module (Closes: #333849)
8086:265c -> ehci-hcd
8086:27dc -> e100 (closes: #326617)
8086:4224 -> ipw2200
-- Petter Reinholdtsen <pere@debian.org> Sun, 13 Aug 2006 00:45:28 +0200
discover-data (2.2006.08.11-1) unstable; urgency=low
[ Petter Reinholdtsen ]
* Update pci-vendor.xml with vendor names from
<URL:http://pciids.sourceforge.net/pci.ids.gz>.
* Updated lst2xml to use generate a file format closer to the
current pci-*.xml file format, to avoid artificial differences
when generating the files from pci.lst.
* Add link to alioth project in README file.
* Add some entries to pci-device.xml based on values from
discover1-data. Still lots left, as the entries are manually copied.
* Include reportbug helper script to get useful info in bug
reports. (Closes: #301858)
[ Otavio Salvador ]
* Update Debian Installer kernel modules list.
* Update old format database files (pci.lst and pci-26.lst).
[ David Nusinow ]
* Update pci.lst id's 80862592 and 80862792 to tell the X server to use i810
[ Petter Reinholdtsen ]
* New file pci-device-deb.xml including mapping from PCI hardware to
debian packages.
* Map PCI id 1000:0030 to the mpt-status package.
* Take over maintainence of this package, using the pkg-discover alioth
project as the source repository.
* Make the 'dist' target more robust.
* Correct link in README to discover info page at Progeny. (Closes: #344837)
-- Petter Reinholdtsen <pere@debian.org> Fri, 11 Aug 2006 10:33:48 +0200
discover-data (2.2005.02.13-2) unstable; urgency=low
* QA upload.
* debian/control: Set maintainer to Debian QA Group, see #379044.
* debian/rules: Added binary-arch rule to suppress lintian error.
* debian/control: Moved debhelper from Build-Depends-Indep to Build-Depends.
* debian/changelog: Fixed lintian syntax-error-in-debian-changelog.
* pci-device.xml: ATI Radeon RV350. Closes: #320635. Patch by Christian
Hammers <ch@debian.org>.
* pci-device.xml: Hewlett-Packard Smart Array P600. Closes: #323868. Patch
by Dann Frazier <dannf@hp.com>.
* pci-device.xml: SAS1068 PCI-X Fusion-MPT SAS. Closes: #323869. Patch by
Dann Frazier <dannf@hp.com>.
* pci-device.xml: Module usb-uhci renamed to uhci-hcd for 2.6 kernel.
Closes: #303382. Patch by Dietmar Maurer <dietmar@maurer-it.com>.
* pci-device.xml: ATI Radeon FireGL M24. Closes: #334692. Patch by David
Schweikert <dws@ee.ethz.ch>.
* pci-device.xml: Add info from modules.pcimap. Closes: #353771. Patch by
Dan Sheppard <dan@caret.cam.ac.uk>.
-- Bart Martens <bartm@knars.be> Fri, 4 Aug 2006 10:48:32 +0200
discover-data (2.2005.02.13-1) unstable; urgency=low
* Added data regarding name change in Linux 2.6.9:
mv64340_eth -> mv643xx_eth. Closes: #261705.
* Removed i810-tco from discover 1 data. Closes: #262920.
* Add device info for various devices.
Closes: #264594, #275492, #286308, #292437.
* Remove references to radeonfb in PCI lists, as it interferes
with the proprietary drivers. Closes: #286398.
* Updated the list of drivers significant to debian-installer.
* Don't change data files in the main Makefile; move all of that
to a separate Makefile, so that merely rebuilding the package
doesn't cause data changes.
-- Jeff Licquia <licquia@progeny.com> Sun, 13 Feb 2005 13:22:47 -0500
discover-data (2.2004.11.22-1) unstable; urgency=low
* Synchronized with discover1-data (Linux and XFree86).
-- Ian Murdock <imurdock@progeny.com> Mon, 22 Nov 2004 13:09:49 -0500
discover-data (2.2004.09.03-1) unstable; urgency=low
* Synchronized with discover1-data (Linux and XFree86) and Kudzu
databases (Linux).
* Load the XFree86 svirge driver for 0x5333883d. Closes: #249935.
* Load the ohci-hcd (2.6) or usb-ohci (2.4) kernel modules for
0x10227464. Patch from Joshua Kwan <joshk at triplehelix.org>.
Closes: #253776.
* Load the snd-powermac (2.6) or dmasound_pmac (2.4) kernel modules
for 0x106b0022. Closes: #256135.
* Load the mv64340_eth (2.6) kernel module for 0x11ab6460.
Closes: #261705.
* Updated vendor/model names to upstream pci.ids.
* reduce-xml: Fixed bug in busclass handling when reducing;
a function tasked with detecting busclasses assumed their
presence (Jeff Licquia).
* reduce-xml: Check the data file before checking the busclass when
reducing (Jeff Licquia).
-- Ian Murdock <imurdock@progeny.com> Fri, 3 Sep 2004 11:43:07 -0500
discover-data (2.2004.05.03-4) unstable; urgency=low
* Minor device data corrections, including updates from discover1-data
provided by Gaudenz Steinlin <gaudenz at soziologie.ch>.
* Restore data reduction. We now store a data file provided by
the debian-installer team (and updateable via a Makefile rule)
which is used to determine which data does not get stripped.
* Added a new reportbug script, stolen from the one in discover1.
Thanks to Petter Reinholdtsen <pere at debian.org>.
-- Jeff Licquia <licquia@progeny.com> Tue, 8 Jun 2004 14:59:17 -0500
discover-data (2.2004.05.03-3) unstable; urgency=low
* Comment out all watchdog timers in pci-device.xml. Closes: #247853.
-- Jeff Licquia <licquia@progeny.com> Wed, 12 May 2004 14:04:41 -0500
discover-data (2.2004.05.03-2) unstable; urgency=high
* Conflict with libdiscover2 (<< 2.0.4-4). This set of data does
not contain busclass information. Previous versions of libdiscover2
required busclass information and will cause assertion failures.
-- Ian Murdock <imurdock@progeny.com> Mon, 3 May 2004 15:39:37 -0500
discover-data (2.2004.05.03-1) unstable; urgency=high
* Include versions of pci-device.xml and pci-vendor.xml
generated from the scripts in the discover-data-generated branch, which
now include data merged in from the Discover 1 database. This
should finally bring Discover 2 up to parity with Discover 1 data-wise:
* database/pci-linux.xml: "snd-cmpci" -> "snd-cmipci". Closes
#246810.
* database/pci-linux.xml: Beginnings of work to reconcile
Discover 2.x data with data from Discover 1.x, Kudzu, and
modules.pcimap. Closes: #243210, #243895, #244357.
* database/pci-linux.xml, database/pci-xfree86.xml: Incorporate
new device information from the Discover 1.x database. Closes:
#240921, #242082, #242402, #242805, #243469.
-- Ian Murdock <imurdock@progeny.com> Mon, 3 May 2004 11:39:51 -0500
discover-data (2.2004.04.09-2) unstable; urgency=high
* Load 8139too instead of rtl8139 for RealTek network cards.
Closes: #243448, #243629, #244024, #244248.
-- Jeff Licquia <licquia@progeny.com> Sun, 25 Apr 2004 19:19:54 -0500
discover-data (2.2004.04.09-1) unstable; urgency=low
* Conflict/Provide/Replace discover1-data, to smooth upgrades.
Closes: #241694.
* Move data files to /lib/discover.
* Include versions of pci-device.xml and pci-vendor.xml generated
from the scripts in the discover-data-generated branch, to improve
Linux 2.6 support until the new discover-data package is ready.
-- Jeff Licquia <licquia@progeny.com> Fri, 9 Apr 2004 11:28:38 -0500
discover-data (2.2004.02.24-5) unstable; urgency=low
* Add support in reduce-xml for reducing non-device files, and use
that support to reduce all the vendor files. Closes: #239773.
* (John Daily) Include more busclass IDs from pciids.sf.net.
-- Jeff Licquia <licquia@progeny.com> Wed, 31 Mar 2004 11:53:59 -0500
discover-data (2.2004.02.24-4) unstable; urgency=low
* Really upload to unstable this time. Closes: #239935.
-- Jeff Licquia <licquia@progeny.com> Thu, 25 Mar 2004 15:36:26 -0500
discover-data (2.2004.02.24-3) experimental; urgency=low
* Renamed udeb back to 'discover-data-udeb' per d-i.
* Correct some of the package descriptions.
* Upload to unstable.
-- Jeff Licquia <licquia@progeny.com> Tue, 23 Mar 2004 09:56:42 -0500
discover-data (2.2004.02.24-2) experimental; urgency=low
* Updated reduce-xml to remove "ignore" and "unknown" modules for the
udeb.
* Renamed packages in accordance with the transition strategy
hammered out with the debian-installer folks.
* Upload to experimental.
-- Jeff Licquia <licquia@progeny.com> Tue, 16 Mar 2004 15:23:03 -0500
discover-data (2.2004.02.24-1) unstable; urgency=low
* Discover-data 2.2004.02.24 released.
* Added/updated the following entries:
- 82540EM Gigabit Ethernet Adapter
- 82551QM Ethernet Adapter
- 82801DB AC'97 Audio
- AC97 Audio Controller
- BCM4410 100BaseT
- Bt878 Audio Capture
- PCI1250 PC card Cardbus Controller (rev 01)
- Radeon 9100 [R200 QM]
- SiS7012 PCI Audio Accelerator
* Changed Maintainer to discover-workers.
-- Ian Murdock <imurdock@progeny.com> Tue, 24 Feb 2004 10:17:28 -0500
discover-data (2.2003.02.05-4) unstable; urgency=low
* Compress the XML data lists in the udeb package (thanks, Gaudenz
Steinlin).
* Build up the XML data lists in the udeb package by specifying device types
to include, instead of which device types to exclude (thanks, Gaudenz
Steinlin).
* Don't ship the old Discover 1.x-format data files in the udeb package
(thanks, Gaudenz Steinlin).
* Don't ship documentation or changelogs in the udeb package (thanks,
Gaudenz Steinlin).
-- Branden Robinson <branden@progeny.com> Mon, 8 Dec 2003 10:46:29 -0500
discover-data (2.2003.02.05-3) unstable; urgency=low
* Added reduction script to reduce the XML data, and included the
reduced data in the udeb.
-- Jeff Licquia <licquia@progeny.com> Thu, 19 Jun 2003 14:54:55 -0500
discover-data (2.2003.02.05-2) unstable; urgency=low
* Changed udeb creation to include the discover 2 data files.
-- Jeff Licquia <licquia@progeny.com> Fri, 30 May 2003 10:29:54 -0500
discover-data (2.2003.02.05-1) unstable; urgency=low
* new upstream version
+ include data files for Discover 2.x
+ include lst2xml converstion utility in /usr/share/discover/tools
+ recongize more eepro100-using Intel Ethernet devices
(Closes: #163429,#164288)
+ recognize VMWare Virtual SVGA devices as using the XFree86 X server and
vmware server module (Closes: #164276)
+ recognize several new Symbios/NCR/LSI PCI SCSI controllers using the
"mptscsih" kernel module (Closes: #164892)
+ (Discover 2.x data only) For 1011:0009 (DECchip 21140 [FasterNet]), use
"old_tulip" kernel module for Linux 2.2.x, and "tulip" for Linux
2.4.x. (Closes: #148974)
* 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.
* debian/copyright: updated
* debian/discover-data.files: Remove this file; no longer needed thanks to
debhelper 4.0.
* debian/rules:
- tidy up some redundancies
- Bump DH_COMPAT level to 4.
- Provide a "binary-indep" rule, make "binary" depend on it, and mark
"binary-indep" as .PHONY.
-- Branden Robinson <branden@progeny.com> Thu, 17 Oct 2002 11:03:11 -0500
discover-data (1.2002.08.21-1.1) unstable; urgency=low
* NMU.
* Add new package discover-data-udeb (closes: #167570).
-- Petter Reinholdtsen <pere@debian.org> Thu, 30 Jan 2003 19:42:33 +0100
discover-data (1.2002.08.21-1) unstable; urgency=low
* new upstream version
- recognize some USB "jukebox"-style devices (Closes: #156453)
- recognize Intel i810 sound device on Compaq Evo N800v laptops
(Closes: #157763)
- fix duplicate and improperly sorted entries in pci.list
(Closes: #155118)
-- Branden Robinson <branden@progeny.com> Wed, 21 Aug 2002 14:01:21 -0500
discover-data (1.2002.05.23-1) unstable; urgency=low
* new upstream version
-- Branden Robinson <branden@progeny.com> Thu, 23 May 2002 14:22:02 -0500
discover-data (1.2002.04.29-1) unstable; urgency=low
* Start using "cvs2cl" to generate a proper upstream changelog; because of
this, this is the last release where the Debian changelog file will go
into excruciating detail. Instead, the Debian changelog will be used
mostly for the bug auto-closing feature (an explanation will accompany the
auto-closed bugs, of course).
* ChangeLog: generated with cvs2cl
* pci.lst: Massive update based on a patch from Petter 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.
- Note that kernel 2.4.x module names were used only where they did not
conflict with kernerl 2.2.20 modules names. Discover 2.x will permit
both types of information to be specified.
(thanks, Petter Reinholdtsen!) (Closes: #144826)
* debian/control:
- added Uploaders: field
- added mention of Linux kernel 2.2.20 specificity to package description
-- Branden Robinson <branden@progeny.com> Mon, 29 Apr 2002 15:18:57 -0500
discover-data (1.2002.03.19) unstable; urgency=low
* There's really no point in keeping a Debian revision for this package; the
upstream is the same as the Debian Package Maintainer.
* pci.lst:
- Identify all devices using the i82365 module as being device type
"bridge" instead of "unknown".
* debian/control: change Maintainer to Progeny Debian Packaging Team
<debian-packages@progeny.com>
-- Branden Robinson <branden@progeny.com> Tue, 19 Mar 2002 12:49:30 -0500
discover-data (1.2002.03.08-1) unstable; urgency=low
* new upstream version
+ pci.lst:
- fix typo in module name
-- Branden Robinson <branden@progeny.com> Fri, 8 Mar 2002 14:12:20 -0500
discover-data (1.2002.02.19-1) unstable; urgency=low
* new upstream version
+ pci.lst:
- additions and updates for cards supported by the sym53x8xx driver
-- Branden Robinson <branden@debian.org> Tue, 19 Feb 2002 12:28:10 -0500
discover-data (1.2002.01.28-1) unstable; urgency=low
* new upstream version
* pci.lst:
- 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)
-- Branden Robinson <branden@debian.org> Mon, 28 Jan 2002 02:11:58 -0500
discover-data (1.2001.10.16-1) unstable; urgency=low
* new upstream version
* pci.lst:
- removed names of ALSA drivers, replaced with "unknown"
(Closes: #109762)
- updated 3Com vendor section (Closes: #112808)
- updated ATI vendor section
* debian/control: change Build-Depends to Build-Depends-Indep
-- Branden Robinson <branden@debian.org> Tue, 16 Oct 2001 00:44:42 -0500
discover-data (1.2001.08.17-2) unstable; urgency=low
* debian/control: added a touch more info to the extended description
* debian/copyright: s/libdiscover0-hwlists/discover-data/g
-- Branden Robinson <branden@debian.org> Tue, 18 Sep 2001 14:54:53 -0500
discover-data (1.2001.08.17-1) unstable; urgency=low
* Initial release.
-- Branden Robinson <branden@debian.org> Fri, 17 Aug 2001 15:09:19 -0500
|