系统相关
首页 > 系统相关> > 安装新内核时如何自动进行Linux内核模块编译?

安装新内核时如何自动进行Linux内核模块编译?

作者:互联网

我正在写一个Linux内核模块.它与所有源文件一起发布(尽管许可证是专有的),可以针对正在运行的内核进行编译.安装我的模块(以.deb软件包分发)时,它将自动编译并安装.这可行.

问题是,在整个Linux系统的常规升级过程中,将安装较新版本的Linux内核.当这样新版本的内核开始运行时,它没有为其编译我的模块,并且我的应用程序失败.我希望在安装新的Linux内核软件包时就可以编译并安装我的模块.

因此,我的问题是:dpkg中是否有一种机制可以在安装新的Linux内核软件包时触发我的软件包中的某些内容来编译并安装我的模块?

对于rpm同样的问题吗?

解决方法:

您可能要使用DKMS:http://en.wikipedia.org/wiki/Dynamic_Kernel_Module_Support.从页面:

DKMS enables kernel device drivers to be automatically rebuilt when a new kernel is installed. DKMS can be used in both directions: To automatically recompile all modules if a new kernel version is installed, or to install new module (driver) versions on an existing system without any need for manual compilation or precompiled packages.

标签:dpkg,rpm,linux-kernel,kernel-module,linux
来源: https://codeday.me/bug/20191023/1915003.html