From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Adam J. Richter" Date: Thu, 18 Jan 2001 13:23:33 +0000 Subject: Re: netdevice problem Message-Id: List-Id: References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-hotplug@vger.kernel.org At boot time, you should run something like this (this is hand written because I do not want to wade through the other cruft currently in our boot scripts): # We include "off" in the list to avoid a shell syntax error # in case the other modules turn out to be an empty list. modprobe -s -k isa-pnp for module in off $(isapnpmodules) $(pcimodules) ; do modprobe -s -k $module done ( modprobe i82365 || modprobe tcic ) && cardmgr -o # The isapnpmodules and pcimodules loop must be run before # parportmodules is evaluated because they may load parallel # port controllers. Perhaps this is also true of PCMCIA. for module in off $(parportmodules) ; do modprobe -s -k $module done # USB initialization occurs as a result of USB host controllers # being loaded (usually from pcimodules), and the host controller # modules generating hot plug events for the devices that are # already attached. Other devices # This is all synchronous becuase, in the kernel, while # usermode_helper is not synchronous, request_module is. # So, we always load the modules in the same order at each # boot (given the same hardware). # We did the initialization in order of least likely to do hot # plugging to most likely in order to reduce the likelihood of # gaps in device numbering as devices are added and removed # (basically as a user interface issue, not for any other reason). Adam J. Richter __ ______________ 4880 Stevens Creek Blvd, Suite 104 adam@yggdrasil.com \ / San Jose, California 95129-1034 +1 408 261-6630 | g g d r a s i l United States of America fax +1 408 261-6631 "Free Software For The Rest Of Us." _______________________________________________ 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