如何查看内核中特定模块的更改日志
我想知道如何查看内核中模块的更改日志或提交消息。实际上我在kernel2.6.26中修改了virtio_net。现在2.6.34中的virtio_net似乎与2.6.26中的有很大不同。不同版本的 virtio_net 应该有一些 git 提交消息或更改日志。我想知道 2.6.26 和 2.6.34 中模块功能的渐进差异。怎么做呢?谢谢...
谢谢, 巴拉
I want to know how to see the changelogs or commit messages for a module in the kernel. Actually i modified virtio_net in kernel2.6.26. Now the virtio_net in 2.6.34 seems to be lot different from the one in 2.6.26. There should be some git commit messages or changelogs for the different versions of virtio_net. I want to know the progressive difference in features for the module in 2.6.26 and 2.6.34. How to do that? Thank you...
Thanks,
Bala
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,安装 git 并克隆内核树:
现在您可以在文件或目录上使用 git log。
First, install git and clone the kernel tree:
Now you can use git log on an file(s) or directory.