Linux System Calls Question:
Download Questions PDF

What kind of information the Linux driver modules (.ko ) files has?

Answer:

kernel 2.6 introduces a new file naming convention: kernel
modules now have a .ko extension (in place of the old .o
extension) which easily distinguishes them from conventional
object files. The reason for this is that they contain an
additional .modinfo section that where additional
information about the module is kept.
Linux program modpost can be used to convert .o files into
.ko files.

Download Linux System Calls Interview Questions And Answers PDF

Previous QuestionNext Question
What are the different ways the Linux can switch from User Space to Kernel Space & vice-versa?What happens when we do insmod & rmmod in Linux Device Drivers?