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
|
hotplug (0.0.20040329-26) unstable; urgency=low
[ Fumitoshi UKAI ]
* debian/patches/firmware_misc: busybox sed doesn't support block and q.
closes: Bug#322469
* debian/po/de.po: update
closes: Bug#326140
* debian/po/sv.po: added
closes: Bug#330551
* debian/po/pt.po: added
closes: Bug#338072
* debian/hotplug.preinst: mv destination should not be ended with /
closes: Bug#391594
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 16 Oct 2006 23:52:28 +0900
hotplug (0.0.20040329-25) unstable; urgency=low
* use ${misc:Depends} in debian/control for debconf-2.0
* change pnp:dPNPb02f analog to ns558. closes: Bug#315776
* fix debian/copyright. closes: Bug#290179
* add debian/po/ar.po. closes: Bug#320767
* default.hotplug: replace some 'sed' calls with shellsubstitutions
closes: Bug#309588
* NET_AGENT_POLICY is deprecated. use ifupdown "allow" mechanism instead.
closes: Bug#303383
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 5 Aug 2005 01:01:30 +0900
hotplug (0.0.20040329-24) unstable; urgency=low
* oops, missed to add vi.po
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 12 Jul 2005 03:05:14 +0900
hotplug (0.0.20040329-23) unstable; urgency=low
* Fix debian/config to add comma in usbmodules. closes: Bug#316778
* Add debian/po/vi.po. closes: Bug#311901
* fix typo: extra/{ide,rc,isapnp.rc}. debian/patches/scsi.agent_cleanup
closes: Bug#308989
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 12 Jul 2005 02:46:51 +0900
hotplug (0.0.20040329-22) unstable; urgency=high
* Fixed postinst to not fail if /usr/local is read only. (Closes: #303046)
* Fixed postinst to generate a correct $STATIC_MODULE_LIST even in some
obscure corner case. (Closes: #301533)
* Updated the spanish debconf translation. (Closes: #302991)
* Finally /etc/modprobe.d/isapnp is installed with the correct name.
* Made net.agent ignore ppp* interfaces, to support the pppd persist option.
(Closes: #253936, #302709)
* Added a link for S89hotplug-net in rc[06].d. (See #303161.)
-- Marco d'Itri <md@linux.it> Thu, 7 Apr 2005 17:51:13 +0200
hotplug (0.0.20040329-21) unstable; urgency=medium
* Remove net.rc on upgrades. (See #296640)
* Depend on a newer bash package. (See #300113)
* Create /usr/local/lib/firmware/. (Closes: #300726)
-- Marco d'Itri <md@linux.it> Thu, 24 Mar 2005 11:23:04 +0100
hotplug (0.0.20040329-20) unstable; urgency=medium
* Fixed postrm failure when removing already removed directories.
(Closes: #297705)
* Sort the modules in the debconf question, patch by Sean Finney.
(Closes: #295738)
* Added patch scsi.agent_cleanup implementing support for loading the sg
driver and the blacklist check. (Closes: #272947)
Also added a scsi.rc script, by Jeff Bailey of Ubuntu.
* Added versioned dependencies on bash and sed. (Closes: #300113, #299946)
* Removed patch pci_agent_removers, because $DEVPATH does not exist
anymore after a device has been removed. (Closes: #298353)
(Actually this was a patch to usb.agent.)
* Consolidated the patches 010_load_drivers_module_name,
013_load_drivers_check_module_dup, 014_load_drivers_blacklist_dir and
052_module_name_for_blacklist in the new patch 010_functions_misc.
This also fixes another -/_ mismatch in modules names. (Closes: #299215)
* Removed patch 007_more_logging which has been merged in
015_load_drivers_mesg_format.
* Added de4x5 and am53c974 to the blacklist. (See: #294867, #296199)
* Modified postinst to add an example of the QUIET variable to
/etc/default/hotplug if not present. (Closes: #297226)
* Fixed an init script bug which made it ignore scripts not in $RC_ORDER.
* Moved net.rc to a new init script hotplug-net run at S41.
(Closes: #296640)
* Removed the useless workaround introduced in -18.
-- Marco d'Itri <md@linux.it> Sun, 20 Mar 2005 15:04:42 +0100
hotplug (0.0.20040329-19) unstable; urgency=high
* workaround fix to load firmware problem.
apply kernel version with additional version like 2.6.8-2-686-smp.
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 15 Mar 2005 07:58:58 +0900
hotplug (0.0.20040329-18) unstable; urgency=high
* workaound fix to load firmware problem for sarge release.
closes: Bug#297481, Bug#299154
/sbin/hotplug may have potential problem in hotplug event multiplexing,
but /sbin/udevsend has grave problem in firmware loading in old kernel,
so I add workaround fix to this.
Recommends upgrade kernel 2.6.10 or later.
* fix purge problem in hotplug.postrm.
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 14 Mar 2005 23:33:28 +0900
hotplug (0.0.20040329-17) unstable; urgency=low
* Made the init script stop changing /proc/sys/kernel/hotplug, to
support using udevsend as the hotplug multiplexer.
* Blacklist the obsolete eepro100 module by default. (Closes: #283129)
* Fixed a typo in the german debconf translation. (Closes: #284243)
* Added Ubuntu patch 065_default.hotplug_nobash to use sh instead of bash
in default.hotplug. (Closes: #291165)
* Modified isapnp.rc and the aliases file to only use lower case aliases.
(Closes: #268795)
* Fixed isapnp.rc to work when install statements are used in modprobe.conf.
* Added ide.rc and support to init script for running the .rc scripts in a
specified order (from Ubuntu). (Closes: #283535)
* Do not print an error message if a rc script is not executable.
(Closes: #256870)
* Documented $HOTPLUG_RC_<subsystem> in /etc/default/hotplug.
(Closes: #251256)
* Added patch firmware_misc to make firmware.agent log an error if the
sysfs interface is not available and not break if sysfs is mounted more
than once. (Closes: #293128, #279142)
* Added patch pci_agent_removers with the improved generation of $REMOVER
from 2004_09_23.
* Added README.modules from 2004_09_23.
* Updated patch 011_usb.rc_dont_force_hcds to support blacklist.d/.
(Closes: #288444)
* Updated patch 012_usb.rc_fix_coldplugging with code from 2004_09_23
and other fixes. (Closes: #274332, #288058)
* Removed patch 051_check_runlevel and the K*hotplug symlinks.
* Added code to make the init script silent, inspired by a patch from
Martin F. Krafft. (Closes: #285996)
* Modified patch 050_net.agent_ifupdown to move the net.enable flag file
to /etc/hotplug/.run/. (Closes: #258725)
-- Marco d'Itri <md@linux.it> Wed, 16 Feb 2005 13:29:38 +0100
hotplug (0.0.20040329-16) unstable; urgency=medium
* debian/patches/013_load_drivers_check_module_dup:
use | as separator
closes: Bug#267020
* debian/patches/012_usb.agent_check_driver: removed
always try to load modules and call hotplug script
closes: Bug#274877
(Bug#237952 was broken)
* debian/patches/012_usb.rc_fix_coldplugging: don't remove initialization
of $PRODUCT or other environment variable
fix D-I [i386] [netinst CD] [RC1] "Bad USB agent invocation" during
reboot on linux 2.4
closes: Bug#266054, Bug#261303
* debian/patches/054_number_of_files_without_wc:
introduce number_of_files that doesn't use wc -l, because
/etc/hotplug/usb.rc broken when /usr is nfs mounted.
closes: Bug#271151
* debian/patches/055_which_by_command-v:
use command -v in case /usr is not yet mounted (NFS for example)
* debian/config, debian/hotplug.postinst: STATIC_MODULE_LIST should
be space separated, whereas debconf use comma separated
closes: Bug#274637
* debian/hotplug: don't make unnecessary /etc/default/hotplug.dpkg-old
closes: Bug#266389
* debian/README.Debian: fix URL of ieee1394 FAQ
closes: Bug#267355
* debian/po/de.po: update
closes: Bug#275821
* debian/po/it.po: added
closes: Bug#275687
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 27 Oct 2004 03:45:57 +0900
hotplug (0.0.20040329-15) unstable; urgency=low
* remove hotplug/usb_keyboard debconf note, and move the note
to README.Debian.
closes: Bug#269710
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 4 Sep 2004 02:05:49 +0900
hotplug (0.0.20040329-14) unstable; urgency=low
* debian/patches/053_load_drivers_ignore_video
modprobe on 2.4 kernel doesn't support --show-depends, use -n -v instead
closes: Bug#263980
Note that isapnp.rc supports only 2.6 kernel, so we can use --show-depends
in it.
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 7 Aug 2004 01:33:53 +0900
hotplug (0.0.20040329-13) unstable; urgency=low
* fix isapnp.rc
closes: Bug#261790
* debian/patches/052_module_name_for_blacklist
fix handling '-' or '_' in module name for blacklisting
closes: Bug#263556
* debian/patches/053_load_drivers_ignore_video
ignore modprobing modules in drivers/video if $IGNORE_PCI_CLASS_DISPLAY
closes: Bug#261958
* add cs.po
closes: Bug#260385
* update nl.po pt_BR.po
closes: Bug#260287, Bug#262598
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 6 Aug 2004 02:03:20 +0900
hotplug (0.0.20040329-12) unstable; urgency=low
* Install the isapnp modprobe aliases in the right place.
* New patch 012_usb.rc_fix_coldplugging to generate more correct
coldplugging events for USB. Requires kernel >= 2.6.7.
Remove obsolete patches 012_usb.rc_no_usbmodules and
012_usb.rc_try_all_interfaces.
(Closes: #243716, #245500, #243716, #243716, #248900, #237952, #248304)
(Closes: #252287, #253927)
* Removed patch 009_usb.agent_remover, it's broken (the $DEVPATH does
not exist anymore on removal) and useless because now $DEVICE should
always be generated. (Closes: #248070)
* Create the net.enable flag file in postinst. (Closes: #256897)
* Updated patch 050_net.agent_ifupdown to make net.ifup print a debug
message only if net.enable does not exist yet. (Closes: #256893)
* Updated patch firmware_dirs to search for firmware files in
/usr/local/lib/firmware/ too. (Closes: #257849)
* New patch 017_pci.rc_pcimodules_once to run pcimodules only once on
2.4 systems. (Closes: #259488)
* Updated po templates: da, fr. (Closes: #257867, #259141)
* Updated isapnp.rc to support blacklisting by module name.
Patch courtesy of Santi Béjar. (Closes: #257043)
* Depend on grep >= 2.5.1.ds1-2, which fixes -q. (Closes: #257723)
-- Marco d'Itri <md@linux.it> Sun, 18 Jul 2004 01:20:44 +0200
hotplug (0.0.20040329-11) unstable; urgency=medium
* Do not make the init script exit if a rc script fails. (Closes: #256553)
-- Marco d'Itri <md@linux.it> Mon, 28 Jun 2004 20:38:29 +0200
hotplug (0.0.20040329-10) unstable; urgency=medium
* This time, install net.ifup. (Closes: #256514)
* Fix a typo in net.agent. (Closes: #256394)
-- Marco d'Itri <md@linux.it> Sun, 27 Jun 2004 19:34:26 +0200
hotplug (0.0.20040329-9) unstable; urgency=medium
* Added support for boot time synthesis of isapnp events.
* patches/blacklist: added usbmouse and usbkbd. closes: Bug#242012
* patches/blacklist: added all watchdog drivers. closes: Bug#249600
* hotplug.postinst: do not fail when $STATIC_MODULE_LIST contains a slash.
closes: #248836
* Conflict with alsa-base << 1.0.4-2, which blacklists OSS drivers.
closes: #246765
* patches/hotplug.functions_typo: fix a typo. closes: #246911
* New/updated debconf translations: ru, tr, de, ja.
closes: #250513, #246074, #244510, #244337
* Search for firmwares in /lib/firmware/ too, to allow firmware loading
before /usr has been mounted. closes: #245100
* patches/pci_agent_direct: in pci.rc, call pci.agent instead of
/sbin/hotplug. closes: #243117
* patches/050_net.agent_ifupdown updated with new code from Thomas Hood
to fix many issues in network interfaces handling.
closes: #244615, #244617, #244954, #249542, #249170
* Rearranged the messages printed by the init script in the hope they
will be less confusing. closes: #247658, #247972, #249457
* patches/012_usb.rc_no_usbmodules: do not depend on the usbmodules
program when using 2.6 kernels. closes: #243702
-- Marco d'Itri <md@linux.it> Sat, 26 Jun 2004 15:04:09 +0200
hotplug (0.0.20040329-8) unstable; urgency=low
* patches/050_net.agent_ifupdown: update, check "ifup -a"
* debian/control: add ifrename to suggests
closes: Bug#242914
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 11 Apr 2004 00:06:04 +0900
hotplug (0.0.20040329-7) unstable; urgency=low
* patches/modprobe_q: deleted
* patches/015_load_drivers_mesg_format: added
* debian/hotplug.init: fix message format
closes: Bug#241681
* README.Debian: update
* debian/templates: modify net_agent_policy
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 7 Apr 2004 23:30:32 +0900
hotplug (0.0.20040329-6) unstable; urgency=low
* README.Debian: update
* debian/templates: change use_net_liface to net_agent_policy
* debian/config: ditto
* debian/hotplug.postinst: ditto
* patches/050_net.agent_ifupdown: ditto
initialize ifstate.hotplug properly
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 7 Apr 2004 00:19:51 +0900
hotplug (0.0.20040329-5) unstable; urgency=low
* debian/templates: update hotplug/use_net_liface
closes: Bug#242167
* patches/016_pci.rc_ignore_pci_class_display:
fix test on $IGNORE_PCI_CLASS_DISPLAY.
closes: Bug#242244
* patches/012_usb.rc_try_all_interfaces:
fix typo. s/$device/$intf/
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 6 Apr 2004 00:53:15 +0900
hotplug (0.0.20040329-4) unstable; urgency=low
* debian/hotplug.init: don't check $runlevel here
* patches/051_check_runlevel: check $runlevel
* debian/templates: add ignore_pci_class_display
* debian/config: add ignore_pci_class_display
* debian/hotplug.postinst: add ignore_pci_class_display
* patches/016_pci.rc_ignore_pci_class_display
ignore PCI_CLASS_DISPLAY* for coludplugging
closes: Bug#241765, Bug#238321
* debian/templates: add net_liface
* debian/config: add use_net_liface
* debian/hotplug.postinst: add use_net_liface
* patches/050_net.agent_ifupdown.
LIFACE can be configured. closes: Bug#241773
preserve ifstate to ifstate.hotplug for rcS sequences.
net.rc added
* patches/015_ieee1394.agent_check_env. check $VENDOR_ID
closes: Bug#204062
* patches/012_usb.agent_check_drivers. fix wrong variable
closes: Bug#237952
* patches/006_open_fds: deleted. already included in upstream
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 4 Apr 2004 04:11:49 +0900
hotplug (0.0.20040329-3) unstable; urgency=low
* debian/hotplug.postinst
preserve /etc/default/hotplug
closes: Bug#240582
anyway, current debconf configurations are deprecated, and
I plan to delete these configuration variables in future.
If you need something to load at start time, use /etc/modules instead.
* debian/hotplug.postinst
move deprecated /etc/hotplug/usb.usermap.local
to /etc/hotplug/usb/local.usermap
closes: Bug#241144
* debian/hotplug.dirs: add /etc/hotplug/blacklist.d
patches/014_load_drivers_blacklist_dir
blacklist can be added by other packages, such as ALSA
closes: Bug#241225
* patches/013_load_drivers_check_module_dup
patches/012_usb.agent_check_driver
don't load drivers several times.
closes: Bug#232909, Bug#237952, Bug#241326
* patches/012_usb.rc_try_all_interfaces
for TYPE=0/* USB devices, it will have several interfaces, so
try them at startup time. problem reported by mat@nask.pl
* patches/012_pci.rc_return_value
backported
* patches/011_hotplug.functions_quote_loaded
backported
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 2 Apr 2004 02:49:20 +0900
hotplug (0.0.20040329-2) unstable; urgency=low
* patches/010_load_drivers_module_name: $MODULE needs s/-/_/g to
match with lsmod output.
closes: Bug#241218
* patches/009_usb.agent_remover: use $DEVPATH for $REMOVER
closes: Bug#238198
* patches/011_usb.rc_dont_force_hcds: don't use debug_mesg
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 1 Apr 2004 02:52:48 +0900
hotplug (0.0.20040329-1) unstable; urgency=low
* New upstream release
* patches/000_remove_gettext: updated
* patches/050_net.agent_ifupdown: updated, support ifrename
* patches/007_ieee1394.agent_conversion_fix: deleted, applied in upstream
* patches/007_input.agent_fix_bits: ditto
* patches/007_input.rc_check_procfs: ditto
* patches/007_pci.rc_test_fix: ditto
* patches/007_scsi.agent_bashism_fix: ditto
* patches/007_usb.agent_small_fix: ditto
* patches/009_usb.agent_sysfs_fix: ditto
* patches/010_usb.rc_sysfs_coldplug: ditto
* patches/quote_firmware_name: ditto
* patches/009_input.agent_ignore_no_bits: added
closes: Bug#204062
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 31 Mar 2004 00:37:09 +0900
hotplug (0.0.20040311-12) unstable; urgency=low
* patches/011_usb.rc_dont_force_hcds: usb-uhci was blacklisted, so
it should not check blacklist here?
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 26 Mar 2004 01:59:16 +0900
hotplug (0.0.20040311-11) unstable; urgency=low
* patches/011_usb.rc_dont_force_hcds: check /proc/bus/usb/devices whether
HCDs already loaded or not.
closes: Bug#239841
* README.Debian: updated
closes: Bug#239937
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 26 Mar 2004 01:38:18 +0900
hotplug (0.0.20040311-10) unstable; urgency=low
* debian/rules: no start in installation/ugprade.
closes: Bug#239317, closes: Bug#239017
* debian/config: fix usbmodules for 2.6 kernel.
delete usbd_enable. It is not used any more.
* debian/templates: delete usbd_enable
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 23 Mar 2004 00:10:04 +0900
hotplug (0.0.20040311-9) unstable; urgency=low
* patches/008_mesg_logging: log to tty and syslog
* patches/050_net.agent_ifupdown: ifdown also uses $LIFACE
* hotplug.dirs: add /usr/lib/hotplug/firmware
closes: Bug#238783
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 21 Mar 2004 02:15:39 +0900
hotplug (0.0.20040311-8) unstable; urgency=low
* debian/rules: start only runlevel S, order 40
* hotplug.preinst: move rcS.d/S36hotplug -> rcS.d/S40hotplug
* Merged Marco d'Itri's work.
* patches/050_net.agent_ifupdown: renamed from 050_ifupdown, quote strings
* patches/050_ifupdown, patches/050_net.agent_ignore_runlevelS: removed
* patches/011_usb.rc_dont_force_hcds: stops force loading all USB
Host Controller Drivers when running a 2.6 kernel.
closes: Bug#204581, Bug#238198
* debian/scripts/lib: fix for CVS
* patches/sbin_hotplug_cleanup: no need to test -f and exit 0
* patches/000_remove_gettext: remove bash gettext markers.
patches/007_input.rc_check_procfs
patches/007_pci.rc_test_fix
* hotplug.postrm: no need to remove /etc/nohotplug
* hotplug.init: check /proc/sys/kernel/hotplug at first.
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 18 Mar 2004 12:10:48 +0900
hotplug (0.0.20040311-7) unstable; urgency=low
* input.agent: fix driverInfo parsing
closes: Bug#238041, Bug#238088
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 15 Mar 2004 23:30:23 +0900
hotplug (0.0.20040311-6) unstable; urgency=low
* usb.rc: hopefully fix usb cold plugging.
closes: Bug#236521
* usb.agent: fix wrong assumption format of sysfs usb attrs
closes: Bug#237899, Bug#237951
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 15 Mar 2004 00:37:18 +0900
hotplug (0.0.20040311-5) unstable; urgency=low
* input.agent: fix ledBits parsing
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 14 Mar 2004 03:05:28 +0900
hotplug (0.0.20040311-4) unstable; urgency=low
* don't use /etc/nohotplug any more.
closes: Bug#237750, Bug#226441
* ieee1394.agent: fix misplaced coversion code.
closes: Bug#237747
* input.agent: fix bits parse bug
closes: Bug#237770, Bug#237807
* hotplug.init: check /proc/sys/kernel/hotplug
closes: Bug#237811
* add danish debconf template translation
closes: Bug#232861
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 14 Mar 2004 02:28:17 +0900
hotplug (0.0.20040311-3) unstable; urgency=low
* don't stop when one subsystem failed to start.
closes: Bug#237707
* fix pci.rc: [: missing ']'.
closes: Bug#237708
* fix input.agent: some modulemap parameter may not be interger.
closes: Bug#237719
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 13 Mar 2004 14:15:00 +0900
hotplug (0.0.20040311-2) unstable; urgency=low
* debian/hotplug.init: 'readlink -f' has been changed not to work
when real file (file pointed by symlink) doesn't exists.
* Use md's hotplug package. closes: Bug#236237
* fix bashism in scsi.agent
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 13 Mar 2004 02:37:31 +0900
hotplug (0.0.20040311-1) unstable; urgency=low
* New upstream release.
* Repackaged for DBS. The original .diff.gz has been split in many pieces.
* Removed obsolete "Suggests: kudzu, fxload | hotplug-utils" line.
* Priority raised to standard.
* Removed old code to support upgrades from hotplug < 0.0.20010919-4.
* Improved and cleaned up the init script.
* Removed handling of the $USBD_ENABLE variable from postinst because
it has been useless for two years.
-- Marco d'Itri <md@linux.it> Fri, 12 Mar 2004 01:54:33 +0100
hotplug (0.0.20040105-3) unstable; urgency=low
* etc/hotplug/usb.handmap: remove empty line.
closes: Bug#231889, Bug#231674
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 9 Feb 2004 22:56:51 +0900
hotplug (0.0.20040105-2) unstable; urgency=low
* etc/hotplug/hotplug.functions: env is defined as function when
/usr/bin/env not found.
closes: Bug#231431
* debian/hotplug.init: no need to do test -L. readlink -f always
returns actual pathname. Suggested by Thomas Hood
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 7 Feb 2004 00:56:16 +0900
hotplug (0.0.20040105-1) unstable; urgency=low
* New upstream release. closes: Bug#228642
* debian/control: add "Task: desktop". closes: Bug#231110
* etc/hotplug/blacklist: add evbug.
closes: Bug#230665, Bug#231203, Bug#227391, Bug#226875, Bug#226988, Bug#230375, Bug#229234
* debian/postinst: fix typo in /etc/default/hotplug.
closes: Bug#229367
* debian/config: strip . in STATIC_MODULE_LIST. closes: Bug#227577
* etc/hotplug/hotplug.functions: modprobe dry run uses -q options
and recent version of modutils don't emit error message to syslog
with -q & -s. closes: Bug#201419
* do ". ./hotplug.functions" instead of ". hotplug.functions"
bash's test -t requires file descriptor(?), so do "test -t 1"
closes: Bug#217044
* etc/hotplug/input.rc: ignore input_boot_events
when /proc/bus/input not found. closes: Bug#219161, Bug#223424
* etc/hotplug/usb.agent: ignore empty line. closes: Bug#221739, Bug#206136
* etc/hotplug/firmware.agent: quote $FORMWARE_DIR/$FORMWARE.
mkdir empty usr/lib/hotplug/firmware. closes: Bug#223232
* etc/hotplug/usb.agent: ignore if sysfs is not mounted or failed to
populated attributes. closes: Bug#223992
* etc/hotplug/usb.rc: mkdir /var/run/usb if not found in maybe_start_usb
closes: Bug#228911
* etc/hotplug/hotplug.functions: use export if /usr/bin/env not found.
closes: Bug#230488
* debian/postinst: remove old configuration file usb.usermap.
closes: Bug#227490, Bug#191707
* debian/hotplug.init: /etc/nohotplug may be symlink. closes: Bug#200502
* etc/hotplug/usb.handmap:
add Saitek P750 game pad entry. closes: Bug#216548
add M-Audio Midisport 1x1. closes: Bug#220246
* debian/po/nl.po: added. closes: Bug#217583
* debian/po/pt_BR.po: updated: closes: Bug#219841
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 6 Feb 2004 02:11:24 +0900
hotplug (0.0.20031013-2) unstable; urgency=medium
* bashism scripts use #!/bin/bash : pci.rc, usb.rc firmware.agent
closes: Bug#216959
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 22 Oct 2003 12:11:51 +0900
hotplug (0.0.20031013-1) unstable; urgency=low
* add etc/hotplug/input.{agent,rc}
* etc/hotplug/usb.agent: do nothing for HID devices on linux 2.6
* update README.Debian: closes: Bug#216414
* fix comment in etc/hotplug/net.agent
* update debian/po/fr.po. closes: Bug#216153
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 20 Oct 2003 00:19:56 +0900
hotplug (0.0.20031008-2) unstable; urgency=low
* fix net.agent typo: closes: Bug#215465
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 13 Oct 2003 14:22:40 +0900
hotplug (0.0.20031008-1) unstable; urgency=low
* add firmware.agent
* run updfstab (in kudzu) if it exists
suggests: kudzu
* add some extra joystick devices in usb.handmap
closes: Bug#184880
* add some wacom tablets for evdev in usb.handmap
* add usblcd in usb.handmap
* exclude tunl*/tun*/tap* for hotplug network devices
* add dasd (s390 stuff) tape and dasd agent
* improve debconf templates. thanks to Joey Hess. closes: Bug#215018
* update ja.po
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 11 Oct 2003 00:00:37 +0900
hotplug (0.0.20030924-2) unstable; urgency=low
* etc/hotplug/hotplug.functions (load_drivers):
fix log message when module already loaded. closes: Bug#213461
* add debian/po/ja.po: closes: Bug#214039
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 5 Oct 2003 02:21:59 +0900
hotplug (0.0.20030924-1) unstable; urgency=low
* sync with CVS head
* add debian/po/fr.po: closes: Bug#212804
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 27 Sep 2003 01:23:48 +0900
hotplug (0.0.20030805-4) unstable; urgency=low
* debian/templates: not use "answer Yes/No" in debconf templates
closes: Bug#211433
* etc/hotplug/usb.rc: print which device are sync at start time.
closes: Bug#211001
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 20 Sep 2003 23:52:46 +0900
hotplug (0.0.20030805-3) unstable; urgency=low
* hotplug.init: don't stop subsystem when halt or reboot
closes: Bug#160507, Bug#192367
* net.agent: add comments about LIFACE='=hotplug', to see README.Debian.
* debian/control: depends modutils | module-init-tools for linux 2.6.x
closes: Bug#207343
* po-debconf'ed
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 14 Sep 2003 03:25:47 +0900
hotplug (0.0.20030805-2) unstable; urgency=low
* hotplug.functions: we don't use awk because /usr may not available
* pci.agent: use sed instead of awk
* usb.agent: use sed instead of awk.
* usb.agent: fix interpretation of hex values (PRODUCT and sysfs)
* usb.rc: fix coldplug on 2.6 (no lister defined)
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 8 Aug 2003 02:34:06 +0900
hotplug (0.0.20030805-1) unstable; urgency=low
* new upstream release
usb.agent: support linux kernel 2.6.x: closes: Bug#204165
* postrm: don't rm -rf /etc/hotplug. closes: Bug#202057
* add subsys subdirectories to /etc/hotplug.d/. closes: Bug#202065
* hotplug.init: do not include /usr dirs on PATH. closes: Bug#200499
* usb.rc: check usbfs in /proc/filesystems to mount usbfs. closes: Bug#197908
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 7 Aug 2003 02:55:46 +0900
hotplug (0.0.20030501-1) unstable; urgency=low
* new upstream release
closes: Bug#196777, Bug#198391
* net.agent: called with ACTION=[add or remove] with linux kernel 2.6.x
closes: Bug#201643
* README.Debian: improved.
closes: Bug#200891
* usb.rc: use [[:space:]]
closes: Bug#200768
* hotplug.8: fix typos
closes: Bug#200494
* hotplug.init:
- use echo instead of touch, because touch is in /usr/bin
closes: Bug#200499
- remove help arguments
closes: Bug#200490
(not fixed to change exit 3, because debian-policy doesn't say that)
- merge restart to force-reload
closes: Bug#200492
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 19 Jul 2003 06:32:50 +0900
hotplug (0.0.20030117-7) unstable; urgency=low
* etc/hotplug/hotplug.functions, etc/hotplug/usb.rc:
unset I_WANT_A_BROKEN_PS
PS_PERSONALITY=linux
closes: Bug#188701
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 12 Apr 2003 22:58:03 +0900
hotplug (0.0.20030117-6) unstable; urgency=low
* debian/preinst: don't create usb.usermap.local
user can put usermap in /etc/hotplug/usb/*.usermap
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 7 Apr 2003 23:13:07 +0900
hotplug (0.0.20030117-5) unstable; urgency=low
* remove .svn directories, closes: Bug#187377
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 4 Apr 2003 02:39:32 +0900
hotplug (0.0.20030117-4) unstable; urgency=low
* fix init.d script message. closes: Bug#184786
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 15 Mar 2003 16:08:56 +0900
hotplug (0.0.20030117-3) unstable; urgency=low
* debian/config: fix getting available usb modules. closes: Bug#184699
* net.agent: check invoked via ifup.
* debian/control: depends: procps
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 14 Mar 2003 23:54:57 +0900
hotplug (0.0.20030117-2) unstable; urgency=low
* add note about ifup <iface>=hotplug and how to configure
/etc/network/interfaces for hotplug in /usr/share/doc/hotplug/README.Debian
In short, you need to add /etc/network/interfaces if you want
that hotplug automatically up the network interface.
mapping hotplug
script /bin/grep
map eth0
Then hotplug will up eth0 as do in old version.
see also:
http://lists.debian.org/debian-devel/2003/debian-devel-200303/msg00212.html
closes: Bug#183141, Bug#108857
Thanks Thomas Hood and Anthony Towns
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 6 Mar 2003 00:08:02 +0900
hotplug (0.0.20030117-1) unstable; urgency=low
* cvs current version
* /etc/hotplug/blacklist installed, closes: Bug#180521
* delete update-usb.usermap, use /etc/hotplug/usb/*.usermap,
closes: Bug#168199, Bug#182783
* /etc/hotplug/net.agent:
ignore ipsec, closes: Bug#132224
ifup $INTERFACE=hotplug
* /etc/hotplug/pci.agent: find all matching modules, closes: Bug#135823
* /etc/hotplug/usb.agent: always try usermap, closes: Bug#155537
* /etc/hotplug/hotplug.functions: delete type -p
/etc/hotplug/{usb,pci}.rc: delete type -p
/etc/hostplug/usb.agent: use HOTPLUG_USB_WAIT,
if you're sure, you may change this value.
closes: Bug#182785
* /etc/hotplug/usb.rc: ignore commented entry in fstab, closes: Bug#146783
* /sbin/hotplug: hotplug open stdin,stdout,stderr, closes: Bug#180518
wait agent execution if /etc/nohotplug exists
* /etc/init.d/hotplut
- check /sbin/hotplug, closes: Bug#177696
- start: runlevel S, touch /etc/nohotplug
don't start twice
runlevel [1-6], rm /etc/nohotplug
- stop: set /bin/true to /proc/sys/kernel/hotplug
closes: Bug#137886
* hotplug stop only runlevel 0(halt), 6(reboot), closes: Bug#182450
* change /etc/default/hotplug.usb to /etc/default/hotplug
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 2 Mar 2003 01:07:06 +0900
hotplug (0.0.20020826-1) unstable; urgency=low
* New upstream release
- usb hotplugging also searches /etc/hotplug/usb/*.usermap
update-usb.usermap is deprecated.
* move /etc/logcheck/ignore.d/hotplug
to /etc/logcheck/ignore.d.workstation/hotplug. closes: Bug#152537
* fix typo. closes: Bug#154157
* hotplug-utils (fxload program) has been separated
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 6 Sep 2002 22:47:15 +0900
hotplug (0.0.20020114-7) unstable; urgency=low
* (debian/templates.ca) add catalon templates
closes: Bug#140019
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 27 Mar 2002 01:52:52 +0900
hotplug (0.0.20020114-6) unstable; urgency=high
* etc/hotplug/ieee1394.agent: fix /tmp writable check. closes: Bug#138975
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 20 Mar 2002 02:00:55 +0900
hotplug (0.0.20020114-5) unstable; urgency=low
* debian/update-usb.usermap: fix minor rediection bug
reported by Shaun Jackman <sjackman@shaw.ca>
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 11 Feb 2002 23:59:01 +0900
hotplug (0.0.20020114-4) unstable; urgency=low
* debian/config: fix MODULE_DIR for 2.4 kernel
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 25 Jan 2002 01:17:17 +0900
hotplug (0.0.20020114-3) unstable; urgency=low
* fix typo in update-usb.usermap(8), closes: Bug#129897
* add #include, fix prototype warnings, closes: Bug#124389
* /etc/logcheck/ignore.d/hotplug, closes: Bug#121001
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 20 Jan 2002 00:21:41 +0900
hotplug (0.0.20020114-2) unstable; urgency=low
* fix /etc/hotplug/usb.agent match_id algorithm
* fix /etc/init.d/hotplug messages. closes: Bug#129665
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 19 Jan 2002 03:42:42 +0900
hotplug (0.0.20020114-1) unstable; urgency=low
* new upstream release
-- Fumitoshi UKAI <ukai@debian.or.jp> Thu, 17 Jan 2002 03:34:44 +0900
hotplug (0.0.20010919-11) unstable; urgency=low
* sync with CVS version
* revert wc_l, since it's not necessary. we assume /usr mounted already
* define REMOVER for system without usbdevfs, closes: Bug#128121
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 15 Jan 2002 02:17:34 +0900
hotplug (0.0.20010919-10) unstable; urgency=low
* wc -l is implemented as shell function
* Anyway, hotplug scripts requires some /usr programs such
as awk, find, so it should run after /usr mounted.
Changes init script to run after rcS.d/S35mountall.sh
* Closes: Bug#124059
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 16 Dec 2001 01:44:12 +0900
hotplug (0.0.20010919-9) unstable; urgency=low
* fix typo in debian/update-usb.usermap, closes: Bug#122901
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 8 Dec 2001 23:25:57 +0900
hotplug (0.0.20010919-8) unstable; urgency=low
* hotplug should start after S10checkroot.sh, closes: Bug#120348
* apply patch from Plato <tom@redant.freeserve.co.uk>
to fix munging of usb_bcdDevice for 2.2 kernels, closes: Bug#122761
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 7 Dec 2001 14:35:00 +0900
hotplug (0.0.20010919-7) unstable; urgency=high
* create /usr/lib/hotplug
closes: Bug#121147, Bug#121151, Bug#121162
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 26 Nov 2001 13:11:35 +0900
hotplug (0.0.20010919-6) unstable; urgency=low
* add update-usb.usermap
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 25 Nov 2001 21:42:29 +0900
hotplug (0.0.20010919-5) unstable; urgency=low
* debian/postinst: remove old system startup links and
relink new startup links, closes: Bug#89186
* debian/postrm: remove /etc/hotplug dir, closes: Bug#120672
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 24 Nov 2001 01:33:27 +0900
hotplug (0.0.20010919-4) unstable; urgency=low
* debian/hotplug.init: console message from init.d scripts
* debian/preinst:
start hotplug as soon as possible while upgrading
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 14 Nov 2001 03:16:33 +0900
hotplug (0.0.20010919-3) unstable; urgency=low
* debian/rules (binary-indep):
- dh_installinit -i
--no-restart-on-upgrade
-- 11 2 3 4 5 . start 4 1 S . stop 89 0 6 .
closes: Bug#96894: Hotplug upgrade can stall when USB device in use
closes: Bug#116033: upgrading hotplug via console login on USB keyboard locks you out!
closes: Bug#117240: Keyboard/Mouse inactive when going to single-user
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 12 Nov 2001 22:57:30 +0900
hotplug (0.0.20010919-2) unstable; urgency=low
* remove /etc/default/hotplug.usb on purge, closes: Bug#113820
* invoke ifdown when unregister network interface, closes: Bug#113836
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 30 Sep 2001 20:47:16 +0900
hotplug (0.0.20010919-1) unstable; urgency=low
* new upstream version
* (debian/template.pt_BR) add Brazilian portuguese templates
closes: Bug#110194
* (debian/postinst) add db_stop, I hope it closes: Bug#112964
* separate hotplug-utils
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 22 Sep 2001 01:22:52 +0900
hotplug (0.0.20010424-4) unstable; urgency=low
* (debian/hotplug.init) exit 0 at the end, closes: Bug#102996
* add spanish tempaltes file
contributed by Carlos Valdivia Yage <valyag@teleline.es>
closes: Bug#103047
-- Fumitoshi UKAI <ukai@debian.or.jp> Tue, 3 Jul 2001 00:15:46 +0900
hotplug (0.0.20010424-3) unstable; urgency=low
* add german templates file
contributed by Sebastian Feltel <sebastian@feltel.de>
closes: Bug#96087
* add Japanese tempaltes
-- Fumitoshi UKAI <ukai@debian.or.jp> Mon, 7 May 2001 00:51:00 +0900
hotplug (0.0.20010424-2) unstable; urgency=low
* add build-depends on debhelper with version (>= 3.0.0) for dh_installman
closes: Bug#95463
* ifdown $INTERFACE for net.agent unregister, closes: Bug#95354
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 28 Apr 2001 01:46:28 +0900
hotplug (0.0.20010424-1) unstable; urgency=low
* New usptream release
-- Fumitoshi UKAI <ukai@debian.or.jp> Fri, 27 Apr 2001 01:34:00 +0900
hotplug (0.0.20010228-3) unstable; urgency=low
* fix typo in usb.agent, closes: #92317
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 1 Apr 2001 00:53:00 +0900
hotplug (0.0.20010228-2) unstable; urgency=low
* change dependency:
- ifupdown, usbutils are downgraded to Recommends:
- pciutils is added to Recommends:
suggested by HAYASE Shigenori <shayase@tky3.3web.ne.jp>
-- Fumitoshi UKAI <ukai@debian.or.jp> Wed, 14 Mar 2001 12:03:33 +0900
hotplug (0.0.20010228-1) unstable; urgency=low
* new upstream version
* move /etc/hotplug/usb.option to /etc/default/hotplug.usb
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 4 Mar 2001 05:26:11 +0900
hotplug (0.0.20010214-4) unstable; urgency=HIGH
* (postinst) fix syntax error near unexpected token `fi'
-- Fumitoshi UKAI <ukai@debian.or.jp> Sun, 25 Feb 2001 19:22:27 +0900
hotplug (0.0.20010214-3) unstable; urgency=low
* (config,postinst) change debconf
check capability multiselect
* (control) add build-depends:, closes: Bug#86800
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 24 Feb 2001 05:12:42 +0900
hotplug (0.0.20010214-2) unstable; urgency=low
* Initial public release. closes: Bug#86213
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 17 Feb 2001 20:45:56 +0900
hotplug (0.0.20010214-1.1) unstable; urgency=low
* add dh_installdebconf
* (etc/hotplug/usb.rc) fix "ls: /proc/bus/usb: No such file or directory"
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 17 Feb 2001 04:08:04 +0900
hotplug (0.0.20010214-1) unstable; urgency=low
* New upstream release
* (debian/rules) use sed instead of modify original source
* (debian/control) depends ifupdown, usbutils, gawk
* not change #!/bin/bash to #!/bin/sh, because these scripts have some bashism
* use debconf
-- Fumitoshi UKAI <ukai@debian.or.jp> Sat, 17 Feb 2001 02:23:28 +0900
hotplug (0.0.20010123-1) unstable; urgency=low
* Initial Release.
* /etc/sysconfig/usb in original source is moved to
/etc/hotplug/usb.option .
-- HAYASE Shigenori <shayase@tky3.3web.ne.jp> Sat, 27 Jan 2001 13:34:53 +0900
|