goal is to have it compile against any source tree
ya puoi farlo fornendo un compiled source-code path
basta sostituire make -C /lib/modules/$(shell uname -r)/build M=$PWD modules
con questo
make -C <path-to-compiled-src-code> M=$PWD modules
make -C /home/vinay/linux-3.9 M=$PWD modules
prova sotto il makefile
Makefile –
# if KERNELRELEASE is defined, we've been invoked from the
# kernel build system and can use its language.
ifneq (${KERNELRELEASE},)
obj-m := new-mod.o
# Otherwise we were called directly from the command line.
# Invoke the kernel build system.
else
KERNEL_SOURCE := /usr/src/linux
PWD := $(shell pwd)
default:
${MAKE} -C ${KERNEL_SOURCE} SUBDIRS=${PWD} modules
clean:
${MAKE} -C ${KERNEL_SOURCE} SUBDIRS=${PWD} clean
endif
In alto puoi cambiare KERNEL_SOURCE := /usr/src/linux
-->a.--> il tuo codice sr KERNEL_SOURCE := <path to compiled-src-code>
per ulteriori informazioni trovate i link di seguito
durante la creazione dei moduli del kernel perché abbiamo bisogno di /lib/modules?
Un semplice programma su driver di dispositivo Linux
Come creare un driver di dispositivo integrato in Linux