Thanks, Simon Bridge, for that article. It really pointed me in the right direction. I figured out that to extract the contents of an initramfs you do the following:
Code:
# mount /boot
# mkdir /tmp/initramfs
# cd /tmp/initramfs
# gzip -dc /boot/*initramfs filename here* | cpio -i
that extracts the contents of /boot/*initramfs filename here* to /tmp/initramfs