You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser.
-
T
I wrote a very simple kernel module doing only helloworld.
-------
#include <linux/init.h>
#include <linux/module.h>
MODULE_LICENSE("GPL");
static int hello_init(void) {
printk(KERN_ALERT "Hello World!!\n");
return 0;
}
static void hello_exit(void) { printk(KERN_ALERT "Goodbye..\n"); }...