You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
531 B
12 lines
531 B
![]()
15 years ago
|
#!/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 "========================================================================"
|