在树莓派上编译linux内核模块

模块源码就用最简单的hello_kernel.ccss #include <linux/init.h> #include <linux/module.h> #include <linux/kernel.h> static int hello_kernel_init(void) { printk("hello kernel init\n"); return 0; } static void he
相关文章
相关标签/搜索