usb mass storage problems with beagleboard otg

i have usb-otg slot on my development board with omap3530;;

i used that slot to connect it to a usb mass storage..

i get some info like this while booting

usb 2-1: new full speed USB device using musb_hdrc and address 3

but i cannot see it in media. nor can i mount it anywhere..

what could be the problem..

please help me out.. someone..

Check whether the device is listed in /dev/sd where x may be a or b.
most propably the first disk will be detected as /dev/sda.

If so listed then mount it using the following commands

mkdir mnt

mount -t vfat /dev/sda mnt/

  • If the file system is fat32

cd mnt/

ls
The contents of the mass storage device will be listed.

yeah, i know the following procedure..
But, the main problem is there is no device as sd<a/b> in /dev/

What could have gone wrong??

drivers ?
Thank You..