Linux简单的hello模块实现
hello.c /* hello.c */#include <linux/init.h>#include <linux/module.h>#include <linux/kernel.h>MODULE_LICENSE("GPL");MODULE_AUTHOR("tang");static int hello_init(void){ printk(KERN_ALERT "Hello, world
"); return 0;...