wmirescue/stretch-amd64/bin/ramdisk_make
2017-07-05 23:51:31 +02:00

14 lines
222 B
Bash
Executable File

#!/bin/sh
TARGET=$1
RAMDISK=$2
if [ ! -d "${RAMDISK}" ]; then
echo "Usage: $0 <ramdisk_img> <ramdisk_dir>"
exit 255
fi
echo "Generating initramfs..."
(cd ${RAMDISK}; find . | cpio -H newc -o | gzip -1) > ${TARGET}