diff options
Diffstat (limited to 'source/a/mkinitrd/README.initrd')
-rw-r--r-- | source/a/mkinitrd/README.initrd | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/source/a/mkinitrd/README.initrd b/source/a/mkinitrd/README.initrd index f027fa27..86d77539 100644 --- a/source/a/mkinitrd/README.initrd +++ b/source/a/mkinitrd/README.initrd @@ -22,7 +22,7 @@ and before the main root filesystem is mounted. The usual reason to use an initrd is because you need to load kernel modules before mounting the root partition. Usually these modules are -required to support the filesystem used by the root partition (ext3, +required to support the filesystem used by the root partition (ext3, ext4, reiserfs, xfs), or perhaps the controller that the hard drive is attached to (SCSI, RAID, etc). Essentially, there are so many different options available in modern Linux kernels that it isn't practical to try to ship @@ -52,7 +52,7 @@ Now you'll want to run "mkinitrd". I'm using reiserfs for my root filesystem, and since it's an IDE system the reiserfs module will be the only one I need to load: - mkinitrd -c -k 2.6.29.5 -m reiserfs + mkinitrd -c -k 2.6.32.3 -m reiserfs This should do two things. First, it will create a directory /boot/initrd-tree containing the initrd's filesystem. Then it will @@ -61,11 +61,10 @@ you could make some additional changes in /boot/initrd-tree/ and then run mkinitrd again without options to rebuild the image. That's optional, though, and only advanced users will need to think about that. -Here's another example: Build an initrd image using Linux 2.6.29.5 -kernel modules for a system with an ext3 root partition on /dev/hdb3. -Note that you need the mbcache, jbd, and ext3 modules to use ext3: +Here's another example: Build an initrd image using Linux 2.6.32.3 +kernel modules for a system with an ext4 root partition on /dev/sdb3: - mkinitrd -c -k 2.6.29.5 -m mbcache:jbd:ext3 -f ext3 -r /dev/hdb3 + mkinitrd -c -k 2.6.32.3 -m ext4 -f ext4 -r /dev/sdb3 4. Now that I've built an initrd, how do I use it? @@ -77,10 +76,10 @@ initrd. Here's an example section of lilo.conf showing how this is done: # Linux bootable partition config begins -image = /boot/vmlinuz-generic-2.6.29.5 +image = /boot/vmlinuz-generic-2.6.32.3 initrd = /boot/initrd.gz - root = /dev/hda6 - label = Lnx26295 + root = /dev/sdb3 + label = Lnx26323 read-only # Linux bootable partition config ends |