Difference between revisions of "Modifying initrd image"

From OpenVZ Virtuozzo Containers Wiki
Jump to: navigation, search
(Initial edition of article)
 
(small fixes here and there)
Line 1: Line 1:
The very often reason why your kernel can't boot is not properly created initrd image.
+
The frequent reason why your kernel can't boot is not properly created initrd image.
Here is a small description what you can do if encounter similar problem.
+
Here is a small description of what you can do if you encounter a similar problem.
  
 
==What is initrd image==
 
==What is initrd image==
Your boot loader ussually supports <tt>initrd</tt> instruction.
+
Your boot loader usually supports <code>initrd</code> instruction.
For example in GRUB:
+
For example, in GRUB:
 
<pre>
 
<pre>
 
OpenVZ (2.6.8-022stab077)
 
OpenVZ (2.6.8-022stab077)
Line 12: Line 12:
 
</pre>
 
</pre>
 
GRUB loads initrd-2.6.8-022stab077.img file at a certain address in memory.
 
GRUB loads initrd-2.6.8-022stab077.img file at a certain address in memory.
When kernel boots it checks for initrd image and if it exists starts <tt>init</tt>
+
When kernel boots, it checks for initrd image, and if it exists starts <tt>init</tt>
script, that resides on this image.
+
script that resides on this image.
<tt>init</tt> script usually is written on nash (something like bash, but poorer).
+
<tt>init</tt> script is usually written in nash (a sort of bash-like shell, just smaller).
When <tt>init</tt> scipt on initrd image is finished kernel as usually calls system V <tt>init</tt>
+
When <tt>init</tt> script on initrd image is finished, kernel usually calls standard System V <tt>init</tt>
 
process (/sbin/init, etc.)
 
process (/sbin/init, etc.)
  
 
==Why initrd image is necessary==
 
==Why initrd image is necessary==
Suppose your root partion resides on some SCSI device and driver for this SCSI devices is compiled in some
+
Suppose your root partion resides on some SCSI device and driver for this SCSI devices is compiled as a
kernel module. Of course this module is required at boot time to have access to the root partion. Somebody has to load this
+
kernel module. Of course this module is required at boot time to have access to the root partion — but it is not in the kernel. Thus the need for an initrd image.
module, and it does initrd image!
+
 
Additionally after appearing udev subsystem, somebody have to start udev to create device nodes. This is initrd's duty too.
+
Additionally after udev subsystem become common, somebody has to start udev to create device nodes. This is initrd's duty too.
  
 
==Typical problem==
 
==Typical problem==
Line 39: Line 39:
 
</pre>
 
</pre>
 
This can appear if there is no module loaded for device, where root partion resides.
 
This can appear if there is no module loaded for device, where root partion resides.
To solve the problem extract the initrd image.
+
To solve the problem, extract the initrd image.
  
 
==Extracting initrd image==
 
==Extracting initrd image==
 
Initrd image is just cpio-gzip archive. So to extract it:
 
Initrd image is just cpio-gzip archive. So to extract it:
 
<pre>
 
<pre>
$ mkdir cpio
+
$ mkdir initrd
$ cp initrd-2.6.16-026test014.4-smp.img cpio/initrd-2.6.16-026test014.4-smp.cpio.gz
+
$ cd initrd
$ cd cpio
+
$ gzip -dc /boot/initrd-2.6.16-026test014.4-smp.cpio | cpio -id
$ gunzip initrd-2.6.16-026test014.4-smp.cpio.gz
 
$ cpio -i < initrd-2.6.16-026test014.4-smp.cpio
 
 
$ ls -1
 
$ ls -1
 
bin
 
bin
Line 99: Line 97:
 
</pre>
 
</pre>
  
We can see, that init tryies to load modules mptbase.ko and mptscsih.ko.
+
We can see that init tries to load modules <code>mptbase.ko</code> and <code>mptscsih.ko</code>.
 
Check for presense of these modules on initrd image:
 
Check for presense of these modules on initrd image:
 
<pre>
 
<pre>
Line 107: Line 105:
 
</pre>
 
</pre>
  
So they are... But on the node in question there is device, that is supported by driver in another module:
+
So they are here... But on the [[Hardware Node|node] in question there is a device supported by driver in another module:
<tt>mtpspi.ko</tt>! After adding it to image an in init script everything must work.
+
<code>mtpspi.ko</code>! After adding it to the image and into init script everything should work.
  
 
==Creating initrd==
 
==Creating initrd==
 
We just have to cpio and gzip directory cpio:
 
We just have to cpio and gzip directory cpio:
 
<pre>
 
<pre>
$ ls
+
$ find ./ | cpio -o > /boot/new-initrd.img
bin  etc  initrd-2.6.16-026test014.4-smp.cpio  loopfs  sbin  sysroot
 
dev  init  lib                                  proc    sys
 
$ rm initrd-2.6.16-026test014.4-smp.cpio
 
$ find ./ | cpio -o > ../new-initrd.img
 
 
1354 blocks
 
1354 blocks
 
</pre>
 
</pre>
  
==Who create mkinitrd by default?==
+
Next, try to boot your kernel with newly created initrd image,
In each modern distribution there is <tt>mkdinitrd</tt> packet, that allows to create
+
 
initrd image. You can use this program, it has a lot of options. OpenVZ kernel RPM-package (and "make install" too) uses this
+
==Who create initrd by default?==
program to create initrd image.
+
Usually there is an <code>mkdinitrd</code> package installed, that allows to create
 +
initrd image. You can use this program, it has a lot of options. OpenVZ kernel RPM-package (and “make install” target too) uses this
 +
program to create an initial (default) initrd image.
  
 
[[Category: HOWTO]]
 
[[Category: HOWTO]]
 
[[Category: Troubleshooting]]
 
[[Category: Troubleshooting]]

Revision as of 20:35, 28 June 2006

The frequent reason why your kernel can't boot is not properly created initrd image. Here is a small description of what you can do if you encounter a similar problem.

What is initrd image

Your boot loader usually supports initrd instruction. For example, in GRUB:

OpenVZ (2.6.8-022stab077)
        root (hd0,0)
        kernel /vmlinuz-2.6.8-022stab077 ro root=LABEL=/ console=tty0
        initrd /initrd-2.6.8-022stab077.img

GRUB loads initrd-2.6.8-022stab077.img file at a certain address in memory. When kernel boots, it checks for initrd image, and if it exists starts init script that resides on this image. init script is usually written in nash (a sort of bash-like shell, just smaller). When init script on initrd image is finished, kernel usually calls standard System V init process (/sbin/init, etc.)

Why initrd image is necessary

Suppose your root partion resides on some SCSI device and driver for this SCSI devices is compiled as a kernel module. Of course this module is required at boot time to have access to the root partion — but it is not in the kernel. Thus the need for an initrd image.

Additionally after udev subsystem become common, somebody has to start udev to create device nodes. This is initrd's duty too.

Typical problem

Consider a real problem. After booting the kernel we get the following:

...
Creating root device
mkrootdev: label / not found
Mounting root filesystem
mount: error 2 mounting ext3
mount: error 2 mounting none
Switching to new root
switchroot: mount failed: 22
umount /initrd/dev failed: 2
Kernel panic - not sysncing: Attempted to kill init!

This can appear if there is no module loaded for device, where root partion resides. To solve the problem, extract the initrd image.

Extracting initrd image

Initrd image is just cpio-gzip archive. So to extract it:

$ mkdir initrd
$ cd initrd
$ gzip -dc /boot/initrd-2.6.16-026test014.4-smp.cpio | cpio -id
$ ls -1
bin
dev
etc
init
initrd-2.6.16-026test014.4-smp.cpio
lib
loopfs
proc
sbin
sys
sysroot

Analyzing init script

$ cat init
#!/bin/nash

mount -t proc /proc /proc
setquiet
echo Mounted /proc filesystem
echo Mounting sysfs
mount -t sysfs none /sys
echo Creating /dev
mount -o mode=0755 -t tmpfs none /dev
mknod /dev/console c 5 1
mknod /dev/null c 1 3
mknod /dev/zero c 1 5
mkdir /dev/pts
mkdir /dev/shm
echo Starting udev
/sbin/udevstart
echo -n "/sbin/hotplug" > /proc/sys/kernel/hotplug
echo "Loading mptbase.ko module"
insmod /lib/mptbase.ko
echo "Loading mptscsih.ko module"
insmod /lib/mptscsih.ko
/sbin/udevstart
echo Creating root device
mkrootdev /dev/root
umount /sys
echo Mounting root filesystem
mount -o defaults --ro -t ext3 /dev/root /sysroot
mount -t tmpfs --bind /dev /sysroot/dev
echo Switching to new root
switchroot /sysroot
umount /initrd/dev

We can see that init tries to load modules mptbase.ko and mptscsih.ko. Check for presense of these modules on initrd image:

$ ls -1 ./lib/
mptbase.ko
mptscsih.ko

So they are here... But on the [[Hardware Node|node] in question there is a device supported by driver in another module: mtpspi.ko! After adding it to the image and into init script everything should work.

Creating initrd

We just have to cpio and gzip directory cpio:

$ find ./ | cpio -o > /boot/new-initrd.img
1354 blocks

Next, try to boot your kernel with newly created initrd image,

Who create initrd by default?

Usually there is an mkdinitrd package installed, that allows to create initrd image. You can use this program, it has a lot of options. OpenVZ kernel RPM-package (and “make install” target too) uses this program to create an initial (default) initrd image.