#!/bin/sh

modprobe usb_storage
modprobe sd_mod
modprobe vfat

echo 'wait 8 seconds for device /dev/sda1, then mount partition'
(      
sleep 8
mount -t vfat /dev/sda1 /mnt
) &                         
