Hi!
I managed to get my USB-UMTS-Dongle working, but had to start it via web interface everytime.
Just change /etc/hotplug.d/usb/10-usb-storage to the following and it will start automatically when plugged in:
#!/bin/sh
# Copyright (C) 2006 OpenWrt.org
case "$ACTION" in
add)
[ -n "${INTERFACE}" ] &&
[ "$(expr substr ${INTERFACE} 1 2)" == "8/" ] && {
/sbin/usb-storage &
}
[ -n "${INTERFACE}" ] &&
[ "$(expr substr ${INTERFACE} 1 6)" == "10/0/0" ] && {
/sbin/ifup ppp0 &
}
;;
esac
Have fun!