1,进入/code/v1/kernel-3.10/drivers/,新建mkdir hello
新建hello.c
#include<linux/init.h>
#include<linux/module.h>
MODULE_LICENSE("Dual BSD/GPL");
static int hello_init(void)
{
printk(KERN_ALERT "Hello,init the module!");
return 0;
}
static void hello_exit(void)
{
printk(KERN_ALERT "Goodbye,exit the module!");
}
module_init(hello_init);
module_exit(hello_exit);
2,新建Makefile
obj-y += hello.o
3,编译。
make bootimage
时间: 2024-10-13 20:28:14