内核模块如何自动加载

How can kernel modules load automatically

我为嵌入式系统在 linux 上加载了一些内核模块。当我通过 insmod 命令 运行 这些内核模块时,它起作用了。如何在启动时 运行 这些模块自动(无需输入任何命令)

-----已解决----

我将模块的配置文件添加到 etc/modules-load.d

然后我把模块和modules.dep文件放在/lib/modules/uname -r目录

----已解决----

在以下配置文件中添加您的模块

/etc/modules-load.d/modules.conf

您可以使用 modprobe 命令

 modprobe {driver-name}