#!/bin/bash

test -e /dev/block/mmcblk0p1 || die "Can not find the device: /dev/block/mmcblk0p1"

mount -t vfat /dev/block/mmcblk0p1 /mnt/sdcard || true

df /mnt/sdcard



