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