summaryrefslogtreecommitdiff
path: root/lsinitrd
blob: 4221fa8b5a784a7652b64e82f08e325cc4044c25 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/bash 

[[ $# -eq 1 ]] || { echo "Usage: $(basename $0) <initramfs file>" ; exit 1 ; }
[[ -f $1 ]]    || { echo "$1 does not exist" ; exit 1 ; }

echo "$1:"
echo "========================================================================"
zcat $1 | cpio --extract --verbose --quiet --to-stdout 'dracut-*' 2>/dev/null
echo "========================================================================"
zcat $1 | cpio --extract --verbose --quiet --list
echo "========================================================================"