linux 驱动编程入门----hello world ----Makefile ---及简单的调试_linux hello world makefile-CSDN博客

网站介绍:文章浏览阅读2.2k次。// hello.c#include #include MODULE_LICENSE("Dual BSD/GPL");static int hello_init(void){ printk(KERN_ALERT "hello world!/n"); return 0;}static void hello_exit(void){ printk(KERN_ALERT "goodbye!/n");}module_init(hello_init);_linux hello world makefile