2021-03-26 18:03:50 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# Dependencies: squashfs-tools zstd lz4
|
|
|
|
|
|
|
|
script_dir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"
|
|
|
|
|
|
|
|
# Builtin suqashfuse supports only lz4 and zstd
|
|
|
|
# So choose either lz4 or zstd
|
2021-03-26 20:53:44 +01:00
|
|
|
squashfs_compressor="lz4"
|
|
|
|
compressor_arguments="-Xhc"
|
2021-03-26 18:03:50 +01:00
|
|
|
|
|
|
|
bootstrap="${script_dir}"/root.x86_64
|
|
|
|
|
|
|
|
cd "${script_dir}" || exit 1
|
|
|
|
|
|
|
|
if [ ! -f utils.tar ]; then
|
|
|
|
echo "utils.tar is required!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -f squashfs-start.sh ]; then
|
|
|
|
echo "squashfs-start.sh is required!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if ! command -v mksquashfs 1>/dev/null; then
|
|
|
|
echo "Please install squashfs-tools and run the script again"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ ! -d "${bootstrap}" ]; then
|
|
|
|
echo "Bootstrap is required!"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo
|
|
|
|
echo "Creating conty..."
|
|
|
|
echo
|
|
|
|
|
|
|
|
# Create the squashfs image
|
|
|
|
rm -f bootstrap.squashfs
|
|
|
|
mksquashfs "${bootstrap}" bootstrap.squashfs -comp $squashfs_compressor $compressor_arguments
|
|
|
|
|
|
|
|
# Combine the files into a single executable using cat
|
|
|
|
cat squashfs-start.sh utils.tar bootstrap.squashfs > conty.sh
|
|
|
|
chmod +x conty.sh
|
|
|
|
|
|
|
|
clear
|
|
|
|
echo "Conty created and ready to use!"
|