Using the Neo as an USB Mass storage device

From Openmoko

(Difference between revisions)
Jump to: navigation, search
(Followup discussion: USB hub mode no)
m (Mass storage moved to Using the Neo as a Mass storage device: More precise title)

Revision as of 08:29, 3 September 2008

Q: How to make the Neo FreeRunner act as a mass storage device (memory stick, USB key, portable drive...)

A: The following script can be used

#!/bin/sh                                                                                                                                                                   
ifdown usb0
rmmod g_ether
modprobe g_file_storage file=/dev/mmcblk0p1

Reference: Petr Vanek "usb mass media storage" on the community mailing list, 2/9/08

Q: Is it possible to pretend to be a USB hub, providing both g_ether and g_file_storage ?

A: Not yet. At the moment it's one gadget driver at a time, but there is a project under way to allow use of multiple gadget drivers together.

http://blog.felipebalbi.com/?p=44 http://www.linux-usb.org/gadget/

Personal tools

Q: How to make the Neo FreeRunner act as a mass storage device (memory stick, USB key, portable drive...)

A: The following script can be used

#!/bin/sh                                                                                                                                                                   
ifdown usb0
rmmod g_ether
modprobe g_file_storage file=/dev/mmcblk0p1

Reference: Petr Vanek "usb mass media storage" on the community mailing list, 2/9/08

Q: Is it possible to pretend to be a USB hub, providing both g_ether and g_file_storage ?

A: Not yet. At the moment it's one gadget driver at a time, but there is a project under way to allow use of multiple gadget drivers together.

http://blog.felipebalbi.com/?p=44 http://www.linux-usb.org/gadget/