Hi :
When Linux Omapl138 connect to Windows PC use usb, PC can't found usb device.
Internet said kernel config :
USB SUPPORT<*>USB Gadget Support --->
USB Peripheral Controller (S3C2410 USB Device Controller) --->
S3C2410 USB Device Controller
[] S3C2410 udc debug messages
<M> USB Gadget Drivers
<M> File-backed Storage Gadget
Create g_file_storage.ko file.
Then :
# dd if=/dev/zero of=vfat.img bs=1M count=20
# mknod /dev/loop0 b 7 0
# losetup /dev/loop0 vfat.img
# mkfs.vfat /dev/loop0
# mkdir vfat_mount_point
# mount /dev/loop0 vfat_mount_point
# insmod g_file_storage.ko file=/dev/loop0 stall=0 removable=1
But last setp is error : "insmod: error inserting 'g_file_storage.ko': -1 No such device"
Can you help me ? please! Thank you!