On Mon, 3 Jul 2000, Rajesh Mishra wrote:

> Hi all,
> Can anyone plz. tell how to load a module (.o) when kernel boots up.
> regards.
> 

a) if you wish to load a module by the kernel code, use
request_module() API.

b) if you wish to load a module (+ all the modules it depends on) use
"modprobe module", assuming dependencies were correctly built by "depmod
-a" first.

c) if you wish to load a module when the kernel boots, before the root
filesystem is mounted, use initrd mechanism

Regards,
Tigran

Reply via email to