|
|
|
#!/bin/bash
|
|
|
|
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
|
|
|
|
# ex: ts=8 sw=4 sts=4 et filetype=sh
|
|
|
|
#
|
|
|
|
# Copyright 2005-2010 Harald Hoyer <harald@redhat.com>
|
|
|
|
# Copyright 2005-2010 Red Hat, Inc. All rights reserved.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
|
|
|
|
[[ $# -eq 1 || $# -eq 2 ]] || { echo "Usage: $(basename $0) <initramfs file> [<filename>]" ; exit 1 ; }
|
|
|
|
[[ -f $1 ]] || { echo "$1 does not exist" ; exit 1 ; }
|
|
|
|
|
|
|
|
if [[ $# -eq 2 ]]; then
|
|
|
|
zcat $1 | cpio --extract --verbose --quiet --to-stdout ${2#/} 2>/dev/null
|
|
|
|
exit $?
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "$1:"
|
|
|
|
echo "========================================================================"
|
|
|
|
zcat $1 | cpio --extract --verbose --quiet --to-stdout 'dracut-*' 2>/dev/null
|
|
|
|
echo "========================================================================"
|
|
|
|
zcat $1 | cpio --extract --verbose --quiet --list
|
|
|
|
echo "========================================================================"
|