From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Zink, Dan" Date: Wed, 17 Jan 2001 16:48:48 +0000 Subject: PATCH: pci.agent script fixup Message-Id: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-hotplug@vger.kernel.org I tracked down the problems with the pci.agent script. Here's the patch: diff -Nuar etc/hotplug/pci.agent /etc/hotplug/pci.agent --- etc/hotplug/pci.agent Wed Jan 17 00:35:33 2001 +++ /etc/hotplug/pci.agent Wed Jan 17 10:29:23 2001 @@ -28,9 +28,10 @@ # # $Id: pci.agent,v 1.2 2001/01/17 00:53:18 dbrownell Exp $ # +. hotplug.functions # generated by modutils, for current 2.4.x kernels -PCI_MAP=$MODULE_DIR/modules.pcimap +MAP_CURRENT=$MODULE_DIR/modules.pcimap # accumulates list of modules we may care about DRIVERS@@ -62,12 +63,12 @@ exit 1 fi - XID=`echo $PCI_ID | $AWK -F/ '{print "0x" $1, "0x" $2 }'` + XID=`echo $PCI_ID | $AWK -F: '{print "0x" $1, "0x" $2 }'` read pci_class pci_id_vendor pci_id_device << EOT 0x$PCI_CLASS $XID EOT - XID=`echo $PCI_SUBSYS_ID | $AWK -F/ '{print "0x" $1, "0x" $2 }'` + XID=`echo $PCI_SUBSYS_ID | $AWK -F: '{print "0x" $1, "0x" $2 }'` read pci_subid_vendor pci_subid_device << EOT $XID EOT @@ -138,7 +139,7 @@ # on 2.4 systems, modutils maintains MAP_CURRENT if [ -r $MAP_CURRENT ]; then - load_drivers usb $MAP_CURRENT "$LABEL" + load_drivers pci $MAP_CURRENT "$LABEL" fi if [ "$DRIVERS" = "" ]; then ____________________________ dan.zink@compaq.com _______________________________________________ Linux-hotplug-devel mailing list http://linux-hotplug.sourceforge.net Linux-hotplug-devel@lists.sourceforge.net http://lists.sourceforge.net/lists/listinfo/linux-hotplug-devel