2

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"?

Tom Hale
  • 28,728
  • 32
  • 139
  • 229

1 Answers1

2

As the name suggests, this is a cpio archive. It has been gzipped. So

zcat file | cpio -vt

will give you the contents.

icarus
  • 17,420
  • 1
  • 37
  • 54