Linux 内核 2.6 编译期间丢失系统调用错误
我正在尝试通过向内核中添加自定义系统调用来试验Linux内核。我一开始成功了,后来我对包含新调用代码的文件进行了一些修改,当我尝试使用以下命令重新编译内核时
制作 bzImage
我收到以下错误:
错误的原因似乎是什么?
i am trying to experiment with linux kernel by adding a custom system call into the kernel.I succeeded at first and later I made some modifications to the file containing the new call code and when i tried to recompile the kernel with
make bzImage
i get the the following error:
What seems to be the reason for the error?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于自定义代码中的代码更改,无法编译您的 syscal 模块依赖项
Your syscal module dependecies cannot be compiled because of code changes in your custom code