我目前正在尝试将内核模块安装到Ubuntu。我已将模块的源文件复制到/usr/src/applespi-0.1
中。
然后,我做了
sudo dkms install -m applespi -v 0.1
得到
Building module:
cleaning build area....
make KERNELRELEASE=4.4.0-31-generic....(bad exit status: 2)
Error! Bad return status for module build on kernel: 4.4.0-31-generic (x86_64)
Consult /var/lib/dkms/applespi/0.1/build/make.log for more information.
make.log:https://pastebin.com/ySsHrgUt
我的目标是在编译此源文件时禁用-Werror。但是,我似乎找不到带有-Werror标志的Makefile。
答案 0 :(得分:0)
没关系。我通过用--verbose
运行dkms并注释了-Werror
标志来找到Makefile。伙计们,谢谢你。