initrd.img是Linux启动过程中很重要的一个文件,如果你编译内核时将一部分功能编译为可加载模块。如果系统的一些设备的驱动编译为可加载模,那么启动时如果没有指定INITRD=/path_to_initrd.img,那么系统启动或者会失败,或者启动后会有设备无法使用(像网卡或者其它设备)。
需要的内核支持:
initrd.img是一个ram文件。它需要内核支持 RAM。
General setup
--> Initial RAM filesystem and RAM disk(initramfs/initrd) support
Device Drivers
--> Block devices
--> RAM block device support
另外initrd.img中的文件系统是sysfs,所以内核还要支持 sysfs。
#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_PROC_SYSCTL=y
CONFIG_PROC_PAGE_MONITOR=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
CONFIG_TMPFS_POSIX_ACL=y
如果你的宿主机是2006以后的版本内核,并且没有用废旧的 sysfs 文件系统。则到此就可以了;如果宿主机用了废旧的 sysfs ,则需要内核支持废旧的 sysfs 。
这是 2.6.23 内核
CONFIG_SYSFS_DEPRECATED=y
General setup
--> Create deprecated sysfs files
这是 2.6.32.8 内核
CONFIG_SYSFS_DEPRECATED_V2=y
-- > enable deprecated sysfs features which may confuse old userspace tools
前提条件是下面选项打开:
General setup
--> enable deprecated sysfs features which may confuse old userspace tools
配置grub:
例如:
title Red Flag Desktop (2.6.32.8)
root (hd0,0)
kernel /boot/vmlinuz-2.6.32.8 ro root=LABEL=/ vga=788 splash=silent resume=/
dev/sda2 console=ttyS0,115200 console=tty0
initrd /boot/initrd-2.6.32.8.img
内核解压initrd:
当GRUB配置中有initrd选项时,GRUB就会根据选项内容,把 initrd.img 装入到内存中。当内核初始化时,会初始化ram 。内核中解压 initrd.img 代码详见:init/initramfs.c 。
include/asm-generic/vmlinux.lds.h
其中地址的指定是由链接程序(ld)完成的。详见:info ld 中的脚本部分。
解压 initrd.img 文件:
[root@localhost initrd]# zcat /boot/initrd-2.6.32.8.img | cpio -id
例如:
[root@localhost home]# mkdir initrd
[root@localhost home]# cd initrd
[root@localhost initrd]# ls
[root@localhost initrd]# zcat /boot/initrd-2.6.32.8.img | cpio -id
26126 blocks
[root@localhost initrd]# ls
bin bootsplash dev etc init lib proc sbin sys sysroot usr
[root@localhost initrd]#
initrd.img文件制作:
mkinitrd [--version] [-v] [-f]
[--preload=module] [--omit-scsi-modules]
[--omit-raid-modules] [--omit-lvm-modules]
[--with=module] [--image-version]
[--fstab=fstab] [--nocompress]
[--builtin=module] [--nopivot]
image kernel-version
[root@localhost initrd]#mkinitrd /boot/initrd-2.6.32.8.img 2.6.32.8
在编译内核后,安装内核时,make install 会调用 /sbin/mkinitrd 建立映象盘。 具体的做法可以详见 mkinitrd 。
手工制作:
initrd.img的内容:
[root@localhost initrd]# ls
bin bootsplash dev etc init lib proc sbin sys sysroot usr
内核初始完后 kernel_init ,就执行 /init