Linux驅動hello入門實踐

新建這樣一個目錄,裏面新建hello.c 和Makefile文件 hello.c 如下: #include <linux/init.h> #include <linux/module.h> static int __init hello_init(void) { printk(「Hello, world\n」); return 0; } static void __exit hello_exit(
相關文章
相關標籤/搜索