Bugzilla – Attachment 248532 Details for
Bug 439103
LVM / boot fails on 2.6.27.1-2
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
IDP Log In
|
Forgot Password
lsinitrd
lsinitrd (text/plain), 1.36 KB, created by
Hannes Reinecke
on 2008-10-29 09:43:58 UTC
(
hide
)
Description:
lsinitrd
Filename:
MIME Type:
Creator:
Hannes Reinecke
Created:
2008-10-29 09:43:58 UTC
Size:
1.36 KB
patch
obsolete
>#!/bin/bash ># ># lsinitrd - show contents of an initrd image ># ># Copyright (C) 2008 SuSE Linux Products GmbH, Nuernberg, Germany ># ># 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, write to the Free Software ># Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, ># USA. > ># This file is kept in the following git repository: ># ># git://git.kernel.org/pub/scm/linux/kernel/git/hare/mkinitrd.git ># > >usage() { > echo "Usage: lsinitrd [-l] <initrd>" >} > >while [ "$1" ] ; do > case $1 in > -l|--long) > verbose=1 > shift > ;; > -*) > echo "Unknown option $1" > usage > exit 1 > ;; > *) > break; > ;; > esac >done > >initrd=$1 > >if [ -z "$initrd" ] ; then > echo "No initrd file specified" > usage > exit 1 >fi > >if [ "$verbose" ] ; then > args="-tv" >else > args="-t" >fi > >zcat $initrd | cpio $args
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
Actions:
View
Attachments on
bug 439103
:
248038
|
248090
|
248501
|
248502
|
248503
|
248504
| 248532