轉載:http://www.embeddedlinux.org.cn/html/yingjianqudong/201403/23-2820.htmlhtml
Linux內核是一種單體內核,可是經過動態加載模塊的方式,使它的開發很是靈活 方便。那麼,它是如何編譯內核的呢?咱們能夠經過分析它的Makefile入手。如下是 一個簡單的hello內核模塊的Makefile. linux
ifneq ($(KERNELRELEASE),) obj-m := hello.o else KERNELDIR ?= /root/work/latest_codes/linux-stable PWD := $(shell pwd) default: $(MAKE) -C $(KERNELDIR) M=$(PWD) modules clean: @rm -rf *.o *.mod.c *.mod.o *.ko *.order *.symvers .*.cmd .tmp_versions endif
當咱們寫完一個hello模塊,只要使用以上的makefile。而後make一下就行。web
假設咱們把hello模塊的源代碼放在/home/study/prog/mod/hello/下。shell
當咱們在這個目錄運行make時,make是怎麼執行的呢?函數
LDD3第二章第四節「編譯和裝載」中只是簡略地說到該Makefile被執行了兩次,可是具體過程是如何的呢?post
首 先,因爲make 後面沒有目標,因此make會在Makefile中的第一個不是以.開頭的目標做爲默認的目標執行。因而default成爲make的目標。make會執 行 $(MAKE) -C $(KERNELDIR) M=$(PWD) modules shell是make內部的函數,ui
假設當前內核版本是2.6.13-study,因此 $(shell uname -r) 的結果是 2.6.13-study 這裏,實際運行的是
make -C /lib/modules/2.6.13-study/build M=/home/study/prog/mod/hello/ modules
/lib /modules/2.6.13-study/build是一個指向內核源代碼/usr/src/linux的符號連接。spa
可見,make執行了兩次。code
第一次執行時是讀hello模塊的源代碼所在目錄/home/s tudy/prog/mod/hello/下的Makefile。orm
第二次執行時是執行/usr/src/linux/下的Makefile時.
可是仍是有很多使人困惑的問題: 1.這個KERNELRELEASE也很使人困惑,它是什麼呢?在/home/study/prog/mod/he llo/Makefile中是沒有定義這個變量的,因此起做用的是else…endif這一段。
不過,若是把hello模塊移動到內核源代碼中。例如放到/usr/src/linux/driver/中, KERNELRELEASE就有定義了。在/usr/src/linux/Makefile中有 162 KERNELRELEASE=$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)$(LOCALVERSION) 這時候,hello模塊也再也不是單獨用make編譯,而是在內核中用make modules進行 編譯。用這種方式,該Makefile在單獨編譯和做爲內核一部分編譯時都能正常工做。
2.這個obj-m := hello.o何時會執行到呢? 在執行:
make -C /lib/modules/2.6.13-study/build M=/home/study/prog/mod/hello/ modules
時,make 去/usr/src/linux/Makefile中尋找目標modules:
862 .PHONY: modules 863 modules: $(vmlinux-dirs) $(if $(KBUILD_BUILTIN),vmlinux) 864 @echo ' Building modules, stage 2.'; 865 $(Q)$(MAKE) -rR -f $(srctree)/scripts/Makefile.modpost
能夠看出,分兩個stage:
1.編譯出hello.o文件。
2.生成hello.mod.o hello.ko
在這過程當中,會調用 make -f scripts/Makefile.build
obj=/home/study/prog/mod/hello
而 在 scripts/Makefile.build會包含不少文件: 011 -include .config 012 013 include $(if $(wildcard $(obj)/Kbuild), $(obj)/Kbuild, $(obj)/Makefile) 其中就有/home/study/prog/mod/hello/Makefile 這時 KERNELRELEASE已經存在。
因此執行的是: obj-m:=hello.o
關於make modules的更詳細的過程能夠在scripts/Makefile.modpost文件的註釋 中找到。若是想查看make的整個執行過程,
能夠運行make -n。