--
You received this message because you are subscribed to the Google Groups "USB armory" group.
To unsubscribe from this group and stop receiving emails from it, send an email to usbarmory+unsubscribe@googlegroups.com.
To post to this group, send email to usba...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/usbarmory/f609d8ac-bef4-472f-a92e-384140e28c37%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
** Windows host drivers For the gadget to work under Windows two conditions have to be met: *** Detecting as composite gadget [...] The only thing to worry is that the gadget has to have a single configuration so a dual RNDIS and CDC ECM gadget won't work unless you create a proper INF -- and of course, if you do submit it!
I haven't personally tried this but these thread might have some tips that are applicable also on Windows 10:
Cheers
On Thu, Jan 26, 2017 at 2:56 PM, Etienne L. <ela...@gmail.com> wrote:
Hello everybody,I can't get Combined CDC Ethernet and Mass Storage emulation working on Windows 10 with my usbarmory following the documentation...Networking works fine using g_ether and g_multi (ACER or IBM driver, with idVendor and idProduct options). But, with g_multi, I can't get an USB mass storage to show up on Windows (8 or 10). Surprisingly, it works exactly as expected on an ubuntu 16.04. Both Network and mass storage interface shows up.As stated here, I looked for Composite drivers and tried a few with various idVendor and idProduct on g_multi.Trying in vain to get it to detect the gadget as an USB composite gadget.I tried these 3 configuration for usbarmory.conf :
- options g_ether use_eem=0 dev_addr=1a:55:89:a2:69:41 host_addr=1a:55:89:a2:69:42
Acert RNDIS Network interface shows up.- options g_multi use_eem=0 dev_addr=1a:55:89:a2:69:41 host_addr=1a:55:89:a2:69:42 file=/root/usbdisk.img
No Interface, No mass Storage.
Device shows up as a USB Serial Device with VID_1D6B and PID_0104- options g_multi use_eem=0 dev_addr=1a:55:89:a2:69:41 host_addr=1a:55:89:a2:69:42 idVendor=0x04b3 idProduct=0x4010 file=/root/usbdisk.img
IBM RNDIS Network interface shows up. No mass StorageDoes someone have any idea on why it don't want to (and how to) recognize it as a USB Mass Storage device and a RDNIS device ? Any guesses or leads ?Thanks in advance for your help.
--
You received this message because you are subscribed to the Google Groups "USB armory" group.
To unsubscribe from this group and stop receiving emails from it, send an email to usbarmory+...@googlegroups.com.
wget https://raw.githubusercontent.com/inversepath/usbarmory/master/software/kernel_conf/imx53-usbarmory-scc2.dts -O arch/arm/boot/dts/imx53-usbarmory-scc2.dts
make zImage modules imx53-usbarmory.dtb imx53-usbarmory-host.dtb imx53-usbarmory-gpio.dtb imx53-usbarmory-spi.dtb imx53-usbarmory-i2c.dtb imx53-usbarmory-scc2.dtb
make menuconfig # in the menu disable CDC in the g_multi module # Or comment CONFIG_USB_G_MULTI_CDC=y in the .config file.