I am working on a project which consists of multiple kernel modules. There is some shared functionality between the different modules, but I don't want to include the same code in each module. Does the Linux kernel have a "shared object library" or does the common code go into a separate module?
|
|
Typically, you would put the functionality common to the modules in a separate module itself. A good example of this is the |
|||
|
|
|
If you're looking for a way to share functions between modules you should take a look at file super.c
file super.h
file base.c
Here super.c and base.c are different modules. If this is what you're looking for let me know. I can send you a more complex example with makefiles and stuff. Hope it helps. Note: I've used this in many distros... however each time I did it I needed to copy the file Modules.symvers to each other module directory. Supose you have a module A and a module B, which uses functions from A. Upon compiling A, a file named Modules.symvers is created. I've needed to copy that file to B's folder before compiling it. Just don't issue |
|||
|
|