abootimg/unpack-initrd

21 lines
272 B
Plaintext
Raw Normal View History

2010-11-27 06:13:33 +08:00
#!/bin/sh
#
initrd=${1:-initrd.img}
ramdisk=${2:-ramdisk}
2011-02-23 03:42:08 +08:00
if [ ! -f $initrd ]; then
echo "$initrd does not exist."
exit 1
fi
2010-11-27 06:13:33 +08:00
if [ -d $ramdisk ]; then
echo "$ramdisk already exists."
exit 1
fi
mkdir -p $ramdisk
zcat $initrd | ( cd $ramdisk; cpio -i )