How do I find out what will be added the cpio initrd image generated by mkinitcpio given an entry in either:
MODULES=BINARIES=HOOKS=
For example, what files are included when adding BINARIES="btrfs"?
How do I find out what will be added the cpio initrd image generated by mkinitcpio given an entry in either:
MODULES=BINARIES=HOOKS=For example, what files are included when adding BINARIES="btrfs"?
As the name suggests, this is a cpio archive. It has been gzipped. So
zcat file | cpio -vt
will give you the contents.