2 # -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
3 # ex: ts=8 sw=4 sts=4 et filetype=sh
5 # Copyright 2005-2010 Harald Hoyer <harald@redhat.com>
6 # Copyright 2005-2010 Red Hat, Inc. All rights reserved.
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
25 echo "Usage: ${0##*/} [options] [<initramfs file> [<filename> [<filename> [...] ]]]"
26 echo "Usage: ${0##*/} [options] -k <kernel version>"
28 echo "-h, --help print a help message and exit."
29 echo "-s, --size sort the contents of the initramfs by size."
30 echo "-f, --file <filename> print the contents of <filename>."
31 echo "-k, --kver <kernel version> inspect the initramfs of <kernel version>."
37 [[ $dracutbasedir ]] || dracutbasedir
=/usr
/lib
/dracut
51 if (( $?
!= 0 )); then
60 -k|
--kver) KERNEL_VERSION
="$2"; shift;;
61 -f|
--file) filenames
[${2#/}]=1; shift;;
63 -h|
--help) usage
; exit 0;;
70 [[ $KERNEL_VERSION ]] || KERNEL_VERSION
="$(uname -r)"
74 if ! [[ -f "$image" ]]; then
76 echo "$image does not exist"
83 [[ -f /etc
/machine-id
]] && read MACHINE_ID
< /etc
/machine-id
85 if [[ -d /boot
/loader
/entries ||
-L /boot
/loader
/entries
]] \
86 && [[ $MACHINE_ID ]] \
87 && [[ -d /boot
/${MACHINE_ID} ||
-L /boot
/${MACHINE_ID} ]] ; then
88 image
="/boot/${MACHINE_ID}/${KERNEL_VERSION}/initrd"
90 image
="/boot/initramfs-${KERNEL_VERSION}.img"
100 if ! [[ -f "$image" ]]; then
102 echo "No <initramfs file> specified and the default image '$image' cannot be accessed!"
111 (( ${#filenames[@]} == 1 )) && nofileinfo
=1
112 for f
in ${!filenames[@]}; do
113 [[ $nofileinfo ]] ||
echo "initramfs:/$f"
114 [[ $nofileinfo ]] ||
echo "========================================================================"
115 $CAT $image |
cpio --extract --verbose --quiet --to-stdout $f 2>/dev
/null
117 [[ $nofileinfo ]] ||
echo "========================================================================"
118 [[ $nofileinfo ]] ||
echo
124 echo "========================================================================"
125 if [ "$sorted" -eq 1 ]; then
126 $CAT "$image" |
cpio --extract --verbose --quiet --list |
sort -n -k5
128 $CAT "$image" |
cpio --extract --verbose --quiet --list |
sort -k9
131 echo "========================================================================"
135 if (( ${#filenames[@]} <= 0 )); then
136 echo "Image: $image: $(du -h $image | while read a b; do echo $a;done)"
137 echo "========================================================================"
140 read -N 6 bin
< "$image"
144 is_early
=$
(cpio --extract --verbose --quiet --to-stdout -- 'early_cpio' < "$image" 2>/dev
/null
)
145 if [[ "$is_early" ]]; then
146 if (( ${#filenames[@]} > 0 )); then
149 echo "Early CPIO image"
152 SKIP
="$dracutbasedir/skipcpio"
153 if ! [[ -x $SKIP ]]; then
155 echo "'$SKIP' not found, cannot display remaining contents!" >&2
184 if echo "test"|xz|xzcat
--single-stream >/dev
/null
2>&1; then
185 echo "xzcat --single-stream --"
195 $SKIP "$@" |
$ORIG_CAT
205 if (( ${#filenames[@]} > 0 )); then
208 version
=$
($CAT "$image" |
cpio --extract --verbose --quiet --to-stdout -- 'lib/dracut/dracut-*' 'usr/lib/dracut/dracut-*' 2>/dev
/null
)
210 echo "Version: $version"
212 echo -n "Arguments: "
213 $CAT "$image" |
cpio --extract --verbose --quiet --to-stdout -- 'lib/dracut/build-parameter.txt' 'usr/lib/dracut/build-parameter.txt' 2>/dev
/null
215 echo "dracut modules:"
216 $CAT "$image" |
cpio --extract --verbose --quiet --to-stdout -- 'lib/dracut/modules.txt' 'usr/lib/dracut/modules.txt' 2>/dev
/null