We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
root@davidws:/usr/src/applespi-0.1# make make -C /lib/modules/4.17.0-qemu-4.17-1+/build M=/usr/src/applespi-0.1 modules make[1]: Entering directory '/usr/src/linux-headers-4.17.0-qemu-4.17-1+' make[2]: *** No rule to make target 'tools/objtool/objtool', needed by '/usr/src/applespi-0.1/applespi.o'. Stop. Makefile:1571: recipe for target '_module_/usr/src/applespi-0.1' failed make[1]: *** [_module_/usr/src/applespi-0.1] Error 2 make[1]: Leaving directory '/usr/src/linux-headers-4.17.0-qemu-4.17-1+' Makefile:11: recipe for target 'all' failed make: *** [all] Error 2
workaround from https://lists.debian.org/debian-knoppix/2017/01/msg00002.html
root@davidws:/usr/src/applespi-0.1# make CONFIG_STACK_VALIDATION= make -C /lib/modules/4.17.0-qemu-4.17-1+/build M=/usr/src/applespi-0.1 modules make[1]: Entering directory '/usr/src/linux-headers-4.17.0-qemu-4.17-1+' CC [M] /usr/src/applespi-0.1/applespi.o Building modules, stage 2. MODPOST 1 modules CC /usr/src/applespi-0.1/applespi.mod.o LD [M] /usr/src/applespi-0.1/applespi.ko make[1]: Leaving directory '/usr/src/linux-headers-4.17.0-qemu-4.17-1+'
The text was updated successfully, but these errors were encountered:
Update dkms.conf
8887e7a
close cb22#67
I had the same issue, it was due to a missing libelf-dev package. While watching the compilation process, make command printed the following message:
libelf-dev
make
... DEPMOD 4.17.0-ubuntu-4.17 Makefile:972: "Cannot use CONFIG_STACK_VALIDATION=y, please install libelf-dev, libelf-devel or elfutils-libelf-devel" SIGN [M] ./debian/tmp/lib/modules/4.17.0-ubuntu-4.17/kernel/arch/x86/crypto/aesni-intel.ko SIGN [M] ./debian/tmp/lib/modules/4.17.0-ubuntu-4.17/kernel/arch/x86/crypto/aes-x86_64.ko ...
Having the libelf-dev installed, solved this issue. No workaround was needed.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
workaround from https://lists.debian.org/debian-knoppix/2017/01/msg00002.html
The text was updated successfully, but these errors were encountered: