Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 3.137.174.253
Current Path : /snap/core/16928/usr/bin/ |
| Current File : //snap/core/16928/usr/bin/abootimg-pack-initrd |
#!/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
|