// hello.c#include <linux/init.h>#include <linux/module.h>MODULE_LICENSE("Dual BSD/GPL");static int hello_init(void){ printk("hello world!/n"); return 0;}static void hello_exit(void){ printk("goodbye!/n");}module_init(hello_init);module_exit(hello_exit);#include <linux/init.h>#include <linu 你的当前访问异常,请进行认证后继续阅读剩余内容。 提交