]> git.ipfire.org Git - thirdparty/dracut.git/blob - lsinitrd.sh
lsinitrd: use /boot/<machine-id>/<kernel-version>/initrd as the default image
[thirdparty/dracut.git] / lsinitrd.sh
1 #!/bin/bash
2 # -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
3 # ex: ts=8 sw=4 sts=4 et filetype=sh
4 #
5 # Copyright 2005-2010 Harald Hoyer <harald@redhat.com>
6 # Copyright 2005-2010 Red Hat, Inc. All rights reserved.
7 #
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.
12 #
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.
17 #
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/>.
20 #
21
22 usage()
23 {
24 {
25 echo "Usage: ${0##*/} [-s] [<initramfs file> [<filename>]]"
26 echo
27 echo "-h, --help print a help message and exit."
28 echo "-s, --size sort the contents of the initramfs by size."
29 echo
30 } >&2
31 }
32
33 [[ $# -le 2 ]] || { usage ; exit 1 ; }
34
35 sorted=0
36 while getopts "s" opt; do
37 case $opt in
38 s) sorted=1;;
39 h) usage; exit 0;;
40 \?) usage; exit 1;;
41 esac
42 done
43 shift $((OPTIND-1))
44
45 KERNEL_VERSION="$(uname -r)"
46
47 if [[ "$1" ]]; then
48 image="$1"
49 if ! [[ -f "$image" ]]; then
50 {
51 echo "$image does not exist"
52 echo
53 } >&2
54 usage
55 exit 1
56 fi
57 fi
58
59 [[ -f /etc/machine-id ]] && read MACHINE_ID < /etc/machine-id
60
61 if [[ $MACHINE_ID ]] && ( [[ -d /boot/${MACHINE_ID} ]] || [[ -L /boot/${MACHINE_ID} ]] ); then
62 image="/boot/${MACHINE_ID}/${KERNEL_VERSION}/initrd"
63 else
64 image="/boot/initramfs-${KERNEL_VERSION}.img}"
65 fi
66
67 if ! [[ -f "$image" ]]; then
68 {
69 echo "No <initramfs file> specified and the default image '$image' cannot be accessed!"
70 echo
71 } >&2
72 usage
73 exit 1
74 fi
75
76 CAT=zcat
77 FILE_T=$(file --dereference "$image")
78
79 if echo "test"|xz|xz -dc --single-stream >/dev/null 2>&1; then
80 XZ_SINGLE_STREAM="--single-stream"
81 fi
82
83 if [[ "$FILE_T" =~ :\ gzip\ compressed\ data ]]; then
84 CAT=zcat
85 elif [[ "$FILE_T" =~ :\ xz\ compressed\ data ]]; then
86 CAT="xzcat $XZ_SINGLE_STREAM"
87 elif [[ "$FILE_T" =~ :\ XZ\ compressed\ data ]]; then
88 CAT="xzcat $XZ_SINGLE_STREAM"
89 elif [[ "$FILE_T" =~ :\ LZMA ]]; then
90 CAT="xzcat $XZ_SINGLE_STREAM"
91 elif [[ "$FILE_T" =~ :\ data ]]; then
92 CAT="xzcat $XZ_SINGLE_STREAM"
93 fi
94
95 if [[ $# -eq 2 ]]; then
96 $CAT $image | cpio --extract --verbose --quiet --to-stdout ${2#/} 2>/dev/null
97 exit $?
98 fi
99
100 echo "$image: $(du -h $image | while read a b; do echo $a;done)"
101 echo "========================================================================"
102 $CAT "$image" | cpio --extract --verbose --quiet --to-stdout '*lib/dracut/dracut-*' 2>/dev/null
103 echo "========================================================================"
104 if [ "$sorted" -eq 1 ]; then
105 $CAT "$image" | cpio --extract --verbose --quiet --list | sort -n -k5
106 else
107 $CAT "$image" | cpio --extract --verbose --quiet --list | sort -k9
108 fi
109 echo "========================================================================"