hello.ko---Makefile
hello.ko的Makefile文件与普通的hello.c编译成hello可执行文件有些不同。
hello.ko是要进行交叉编译,所谓的交叉编译是在本机上编译的程序不在本机上运行,在其他机器上执行。
Makefile:
obj-m := hello.o
export ARCH=arm
export CROSS_COMPILE=arm-none-linux-gnueabi-
KERDIR := /home/work/android_kernel_3.18
CURDIR := $(shell pwd)
all:
make -C $(KERDIR) M=$(CURDIR) modules
clean:
make -C $(KERDIR) M=$(CURDIR) clean
其中:
obj-m表示该文件hello.o作为模块被编译,生成一个独立的hello.ko;
export ARCH=arm
export CROSS_COMPILE=arm-none-linux-gnueabi-表示使用的交叉编工具
这两句export的作用是---默认的编译是生成适合在本机执行的二进制文件,通过这两句话,“export ARCH=arm”与“export CROSS_COMPILE=arm-none-linux-gnueabi-”表示
使用交叉编译工具“arm-none-linux-gnueabi-”生成适合在"arm”平台上可执行的二进制文件;
KERDIR指定编译所用的内核源码所在的路径;
CURDIR指定文件所在的路径为当前目录;
make -C $(KERDIR) M=$(CURDIR) ,其中 -C 切换到编译所用的内核源码目录,M=选项让该Makefile在构造modules目标之前返回到模块源代码所在目录;
执行完成后,会在当前目录生成hello.ko文件,把此文件拷贝的开发板上进行加载 insmod ./hello.ko 即可。
更多推荐
所有评论(0)