BEFORE YOU BEGIN: The following procedure requires becoming root to edit a kernel extension. If you didn't understand that last sentence, search Google for more detailed instructions, or ask a geek friend to help. If you hose something, it's not my fault.
or
> <key>MotorolaPhone</key> > <dict> > <key>CFBundleIdentifier</key> > <string>com.apple.driver.AppleUSBCDCDriver</string> > <key>IOClass</key> > <string>AppleUSBCDCDriver</string> > <key>IOProviderClass</key> > <string>IOUSBDevice</string> > <key>bDeviceClass</key> > <integer>2</integer> > <key>bDeviceProtocol</key> > <integer>0</integer> > <key>bDeviceSubClass</key> > <integer>2</integer> > </dict>
Technical explanation: Apparently the Motorola V. Series phone is USB CDC ACM compliant, and Mac OS X already has driver for that, so it turns out just to be a driver matching issue. From looking at the USB CDC spec, I'm not sure why Motorola chose bDeviceSubClass = 2, but I don't really understand these things, so... anyway, this seems to work.