Some topics to study about modules.
[cascardo/kernel/old_slides/.git] / modules / topics
1 loading/unloading: insmod, modprobe, rmmod
2
3 symbol resolving: modprobe, depmod
4 It was in modutils before and was ported to the kernel itself.
5
6 linking: link to version symbols
7
8 versioning: modversions and other ways of distributing modules
9
10 DKMS: I hate when they make it easy to binary only distributions.
11 It seems to be a build system called Dynamic Kernel Module Support Framework. It
12 makes it easier to upgrade modules and kernels.
13
14 modalias: hotplug
15 When creating a socket, for example, its family is load automatically, through
16 aliasing. It was once in modprobe.conf, but it is in the module themselves now.
17
18 kmod: old, obsolete way of hotplug.