Does the Makefile have KERNELDIR := /lib/modules/$(shell uname -r)/build or KERNELDIR := /lib/modules/some-hardcoded-path/build?
– wallyk
yes it's hardcoded path to kernel.release which contains a single word "3.4.79+". removed the "+". After the same "make ..." command I get at the end of makeprocess: DEPMOD 3.4.79+
– csnewb
i try to "make clean" before. the point is, that the kernel.release is generated (with the 3.4.79+) while the "make" process. so it´s a mistake while the "make" in the kernel source.
– csnewb
sed -i "s|CONFIG_LOCALVERSION_AUTO=.*|CONFIG_LOCALVERSION_AUTO=n|" .config && make LOCALVERSION=
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.OkRead more
KERNELDIR := /lib/modules/$(shell uname -r)/build
orKERNELDIR := /lib/modules/some-hardcoded-path/build
? – wallykmake clean
? – wallyk