I have both bzImage and initrd in a folder. When trying to extract and recreate the filesystem, I get errors.
I'm using the standard format:
gunzip < /initrd | cpio -i --make-directories
I know initrd is a compress file:
$ gzip -l initrd
compressed uncompressed ratio uncompressed_name
18162953 58368000 68.9% initrd
And I can uncompress it, but errors on trying to recreate filesystem.
How can I do this? Thanks.

