Thanks wapcaplet, I read the manual, and found 2 methods:
1. Use
Code:
add above module module-list
OR
Code:
add below module module-list
Entry for these two:
[add] above module module_list
This directive makes it possible for one module to "pull in"
another set of modules on top of itself in a module stack, as
seen in the output of the lsmod(8) command. The above directive
is useful for those circumstances when the dependencies are more
complex than what can be described in the modules.dep dependency
file. This is an optimized case of the post-install and pre-
remove directives. Note that failure of installing the module
will not influence the exit status of modprobe. The optional
add prefix adds the new list to the previous list instead of
replacing it.
[add] below module module_list
This directive makes it possible for one module to "push"
another set of modules below itself in a module stack, as seen
in the output of the lsmod(8) command. The below directive is
useful for those circumstances when the dependencies are more
complex than what can be described in the modules.dep dependency
file. This is an optimized case of the pre-install and post-
remove directives. Note that failure of installing the module
will not influence the exit status of modprobe. The optional
add prefix adds the new list to the previous list instead of
replacing it.
Will they specify the order?
2. Use
Code:
alias some_module off
OR
Code:
alias some_module null
, then in rc.local modprobe in the order I want.
Are these two the methods you intent to show me? Coz my /etc/modules.conf only has some lines about the sound card and netword card, and nothing else. So I think there is a place where you specify what modules to load and their order.
Thanks