Reputation: 23
I loaded some kernel modules on linux for an embedded system. When I run these kernel-modules by insmod command, it works. How can I run these modules automatically(without entering any command) at boot starting time
-----SOLVED----
I added modules' configuration file to etc/modules-load.d
Then I put modules and modules.dep file in /lib/modules/uname -r
directory
----SOLVED----
Upvotes: 2
Views: 9443
Reputation: 469
Add your modules in the following config file
/etc/modules-load.d/modules.conf
Upvotes: 4