Load Kernel modules on startup

Hi,

If i load the GPIO module in shell with:

modprobe gpio

works fine,
but how can i do for this module start automatically in booting?

Best Regards

Generaly speaking if you need to load module every time and never need to unload it - you do not need a module - you need a kernel driver instead, but if you insist you can add all the appropriate commands in to one of the startup scripts, like /etc/init.d/S95…
‘/etc/modprobe.conf’ is the file used by modprobe tool to read the options to pass to modules on loading. The modprobe tool in rootfs is part of busybox’s suite and at the moment has a partial support for such config file, but not to all options allowed in a desktop pc.