Dear All,
How to insert a driver module at the time of boot up?
In my zynq kernel there is no module or module.config file in /etc/ folder.
-Ganesh
Dear All,
How to insert a driver module at the time of boot up?
In my zynq kernel there is no module or module.config file in /etc/ folder.
-Ganesh
Dear Ganesh,
We will not add module at boot time, modules are compiled in kernel (static modules) or insert once entered into shell promt using insmod, rmmod, modprobe, depmod. Plese go through book Linux Device Drivers from Rubini.
Thank you & regards
Satish.G
Dear Satish,
Thank you for your kind reply.
I have cross compiled my dynamic module(LKM) for zynq linux on Ubuntu machine. On ubuntu it is possible to load dynamic module at boot time (when you mention your module name in module file under /etc/)
you can find some references here
http://www.cyberciti.biz/faq/linux-how-to-load-a-kernel-module-automatically-at-boot-time/
http://stackoverflow.com/questions/4356224/how-to-load-a-custom-module-at-the-boot-time-in-ubuntu
I want to do same thing with zynq linux.
Found Solution at this link
http://zedboard.org/content/zedboard-modifying-your-ram-disk-image
-Ganesh