Results 1 to 2 of 2
Hi,
I am working on omap zoom2 board. I have a generic question that when we compile our kernel (with all modules included in kernel as .o files drivers). When ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 08-02-2009 #1Just Joined!
- Join Date
- Jun 2009
- Posts
- 23
General question regarding drivers
Hi,
I am working on omap zoom2 board. I have a generic question that when we compile our kernel (with all modules included in kernel as .o files drivers). When kernel is booted, does it load all the drivers by default (all .o files that are included in kernel for drivers) or we have to do something manually? how do we can the change the order of drivers loading in linux?
regards,
dinky
- 08-02-2009 #2
Modules are not loaded by default. Some are loaded automatically when required, others you specify in a configuration file (usually called modules.conf or conf.modules or just modules depending on your distribution) and they will be loaded during the boot process. You can also load modules by hand using the modprobe command and this is sometimes useful for a module that you use only occasionally.
I think the order of modules is the order in which they are requested, except that when a module depends on other modules, modprobe always loads the dependencies first."I'm just a little old lady; don't try to dazzle me with jargon!"


Reply With Quote
