在linux下加载一个简略的模块办法以及过程:
运转环境:linux-2.6.12
编译环境:arm-linux-gcc(3.4.1)
运转渠道:S3C2440
1.编写模块程序Module.c
#include
#include
#include
static int hello_init(void)
{
printk(“Hello, SmallBox! This is the first test module!\n”);
return 0;
}
static void hello_exit(void)
{
printk(“Small.BoxBye Bye!\n”);
return;
}
module_init(hello_init);
module_exit(hello_exit);
MODULE_LICENSE(“GPL”);
2.编写Makefile
obj-m +=Module.o
KDIR:=/home/smallbox/hyh24x0_2.6.12/
PWD=$(shell pwd)
all:
make -C $(KDIR) M=$(PWD) modules
clean:
rm -rf *.o
留意:”make前面要空一个”Tab”
KDIR为内核的途径,这个内核要与S3C2440运转的内核相同(编译器也要相同的,要不运转不了)。
/home/smallbox/hyh24x0_2.6.12/是arm-linux下的内核
3.编译
在linux下履行:make
/*注释:/usr/local/arm/3.4.1/bin/arm-linux-gcc为穿插编译环境的途径*/
生成Module.ko
4.运转
①将Module.ko经过串口或许网口下载到S3C2440的板子上
②履行:chmod +xModule.ko修正模块的特点将其设为可履行文件
③履行:insmodModule.ko
Hello, SmallBox! This is the first test module!
履行:rmmodModule.ko
Small.BoxBye Bye!