Load Linux kernel module before SCSI module using mkinitrd
Today I have discovered nifty mkinitrd command option
mkinitrd command is use to make an initrd image. According to man page:
The mkinitrd script constructs a directory structure that can serve as an initrd root file system. It then generates an image containing that directory structure using mkcramfs(8), which can be loaded using the initrd mechanism. The kernel modules for the specified kernel version will be placed in the directory structure. If version is omitted, it defaults to the version of the kernel that is currently running.
So mkinitrd creates an initial image used by the kernel for preloading the block device modules such as IDE, SCSI RAID etc. These modules are needed when system need to access the root filesystem.
If you have new SCSI card you need to make sure that a particular kernel module will be loaded by my initial ramdisk. Pass --preload option to mkinitrd to load the `module' module in the initial ramdisk image. The module gets loaded before any SCSI modules which are specified in /etc/modprobe.conf. This is quite good if you need any module before SCSI module.
# mkinitrd --preload=module-name /boot/initrd-2.6.9-42.ELsmp.img 2.6.9-42.ELsmp
Replace module-name with actual module name.
For more information read mkinitrd man page:
- man mkinitrd
E-mail this to a Friend
Printable Version
Is your site working? Monitor Your Web Site 24/7. Get SMS alerts on server downtime. Free 30-day trial including 20 SMS!
You may also be interested in other helpful articles:
- FreeBSD Load Device Driver / Kernel Module
- FreeBSD > How to load device driver (module) automatically every time system comes up?
- Howto: Prevent a Linux kernel module from auto loading
- Programming Tutorial: How To Write a FreeBSD Kernel Module ( Driver )
- How do I stop a Linux kernel module from loading automatically?
Discussion on This Article:
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!



I have same problem: I’ve installed FC7 on a machine with SATA disk. I’ve copy this machine (with ghost) to a machine with scsi disk. Now the machine boots but cannot find the scsi module during init. I’ve run mkinit with
–preload=mptspi but It looks that this module isnt loading during the init process. What am I doing wrong? Thanks for the advice!