学习linux驱动编写的第一步应该就是helloworld了。但是这个helloworld却比起我所见过的其他的helloworld要困难的多。
其中最困难的就是hellowolrd的编译。书上都写了很多makefile,但是在我这里就是行不通。不是因为他们不对,而是我的使用不对。下面就对具体的使用过程做出说明。
hello.c的内容在这里就不说了,主要讲一下Makefile。
# If KERNELRELEASE is defined, we've been invoked from the
# kernel build system and can use its language.
ifneq ($(KERNELRELEASE),)
obj-m := hello.o
# Otherwise we were called directly from the command
# line; invoke the kernel build system.
else
KERNELDIR ?= /lib/modules/$(shell uname -r)/build
PWD := $(shell pwd)
default:
$(MAKE) -C $(KERNELDIR) M=$(PWD) modules
endif
注意1:obj-m,KERNELDIR,PWD,$(MAKE)这些前面必须要使用TAB键。
注意2:obj-m :=hello.o这里的hello必须要和C文件的文件名一致,否则就会报错。
我遇到的问题就这两个,比较基础,也比较容易被初学者所忽视。做下记录供大家参考。