Yes, as the title, I don't know how to program and compile "Hello World" code in kernel mode of linux , please help me in the shortest and easy to understand way. Thank you ! (Any related document is welcomed too, I'm just new to this)
|
|
You can start Here:
|
|||
|
|
|
Wow, that's a question! Just think first that the Linux kernel has no terminal, no direct interaction with the user. A Hello World cannot be invoked as any other user program on the command line. The best fit I can think of is a character device driver implemented as a kernel module that would read "Hello World" on device /dev/helloworld for example. I can point you to reading the book from Rubini: Linux Device Drivers. It explains and has examples to create simple Hello World kind of kernel modules. |
|||
|
|
Additional information: The printk function is provided by kernel and it prints to the file such as /var/log/messages. In Ubuntu, this is the /var/log/syslog file. You can see the output of the hello module in this file. Also, thanks fseto for pointing the Linux Kernel Module Programming Guide. It is awesome. |
|||
|
|