diff options
Diffstat (limited to 'isohybrid-acritox')
-rwxr-xr-x | isohybrid-acritox | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/isohybrid-acritox b/isohybrid-acritox index 68d8206..42abe6c 100755 --- a/isohybrid-acritox +++ b/isohybrid-acritox @@ -119,6 +119,14 @@ if [ ! -x /usr/bin/mmd ]; then echo "Error: mtools are needed! Run: apt-get install mtools" >&2 exit 1 fi +if [ ! -x /sbin/mkfs.msdos ]; then + echo "Error: mkfs.msdos is needed! Run: apt-get install dosfstools" >&2 + exit 1 +fi +if [ ! -x /sbin/mkfs.hfsplus ]; then + echo "Error: mkfs.hfsplus is needed! Run: apt-get install hfsprogs" >&2 + exit 1 +fi rm -f "$fat_filename" |