mirror of
https://github.com/ggrandou/abootimg.git
synced 2024-11-23 01:43:26 +08:00
21 lines
272 B
Bash
Executable File
21 lines
272 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
|
|
initrd=${1:-initrd.img}
|
|
ramdisk=${2:-ramdisk}
|
|
|
|
if [ ! -f $initrd ]; then
|
|
echo "$initrd does not exist."
|
|
exit 1
|
|
fi
|
|
|
|
if [ -d $ramdisk ]; then
|
|
echo "$ramdisk already exists."
|
|
exit 1
|
|
fi
|
|
|
|
mkdir -p $ramdisk
|
|
|
|
zcat $initrd | ( cd $ramdisk; cpio -i )
|
|
|