linux-live/tools/dir2sb

20 lines
296 B
Bash
Executable File

#!/bin/bash
if [ "$2" = "" ]; then
echo "Usage: $0 [source directory] [target file.sb]"
exit 1
fi
if [ ! -d "$1" ]; then
echo "Not a directory: $1"
exit 2
fi
if [ -e "$2" ]; then
echo "Target exists: $2"
exit 3
fi
mksquashfs "$1" "$2" -comp xz -b 512K $3 $4 $5 $6 $7 $8 $9