Linux System Calls Question:

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

Tweet Share WhatsApp

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 PDF Read All 35 Linux System Calls Questions
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?