嵌入式 字符驱动总结makefile和gcc编译驱动

1.linux 驱动总结
linux驱动接口里的_init _exit 其实就是宏。
linux驱动程序不能用GCC直接编译生成模块。要用makefile
如下:
ifneq($(KERNELRELEASE),)
obj-m:=hello.o
else
KERNELDIR:=lib/modules/$(shell uname -r)/build
PWD:=$(pwd)
all:
$(MAKE) -C $(KERNELDIR) SUBDIRS=$(PWD) modules
endif
clean:
rm -f *.o *.ko
驱动程序为什么只能通过makefile来编译? ifneq ($(KERNELRELEASE),) obj-m := hello.o else KERNELDIR ?= /lib/modules/$(shell uname -r)/build PWD := $(shell pwd) modules: $(MAKE) -C $(KERNELDIR) M=$(PWD) modules endif clean: rm -rf *.o *~ core .depend .*.cmd *.ko *.mod.c .tmp_versions 差不多都是这个样子。 我想知道如何直接用gcc来编译驱动程序生成.ko文件的命令。 
 模块编译可以用命令行 gcc -o hello.o _D__KERNEL__ -DMODULE -I /home/user/linux/include -c hello.c ld -r -o hello.ko hello.o 

你可能感兴趣的:(嵌入式 字符驱动总结makefile和gcc编译驱动)