#!/bin/sh
echo 'Mounting OptFS...'
mount -t ext3 /dev/mmcblk0p2 /tmp/mnt/optfs
if [ $? -ne 0 ]; then
	echo 'Error: Cannot mount the OptFS.'
else
	echo 'Mounted to /tmp/mnt/optfs'
fi
 
