+ elif [ "$FS" = "fuseblk" ]; then
+ vlog "$DEV is fuseblk"
+ if hexdump -C -n 8 $DEV | grep -q "NTFS"; then
+ vlog "$DEV is NTFS OK"
+ elif hexdump -C -n 8 $DEV | grep -q "EXFAT"; then
+ vlog "$DEV is exFAT OK"
+ else
+ echo "$DEV is not supported!"
+ hexdump -C -n 8 $DEV
+ exit 1
+ fi