abootimg/abootimg-pack-initrd
2011-07-21 01:26:28 +02:00

24 lines
362 B
Bash
Executable File

#!/bin/sh
#
if [ "$1" = "-f" ]; then
forcewrite=yes
shift
fi
initrd=${1:-initrd.img}
ramdisk=${2:-ramdisk}
if [ ! -d $ramdisk ]; then
echo "$ramdisk does not exist."
exit 1
fi
if [ -f $initrd -a -z "$forcewrite" ]; then
echo "$initrd already exist."
exit 1
fi
( cd $ramdisk; find | sort | cpio --quiet -o -H newc ) | gzip > $initrd