summaryrefslogtreecommitdiffstats
path: root/meta-quanta/meta-gsj/recipes-phosphor/usb-network/files/usb_network.sh
diff options
context:
space:
mode:
Diffstat (limited to 'meta-quanta/meta-gsj/recipes-phosphor/usb-network/files/usb_network.sh')
-rw-r--r--meta-quanta/meta-gsj/recipes-phosphor/usb-network/files/usb_network.sh27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-quanta/meta-gsj/recipes-phosphor/usb-network/files/usb_network.sh b/meta-quanta/meta-gsj/recipes-phosphor/usb-network/files/usb_network.sh
new file mode 100644
index 000000000..45fa888be
--- /dev/null
+++ b/meta-quanta/meta-gsj/recipes-phosphor/usb-network/files/usb_network.sh
@@ -0,0 +1,27 @@
+#!/bin/bash
+
+cd /sys/kernel/config/usb_gadget
+
+if [ ! -f "g1" ]; then
+ mkdir g1
+ cd g1
+
+ echo 0x1d6b > idVendor # Linux foundation
+ echo 0x0104 > idProduct # Multifunction composite gadget
+ mkdir -p strings/0x409
+ echo "Linux" > strings/0x409/manufacturer
+ echo "Ethernet/RNDIS gadget" > strings/0x409/product
+
+ mkdir -p configs/c.1
+ echo 100 > configs/c.1/MaxPower
+ mkdir -p configs/c.1/strings/0x409
+ echo "RNDIS" > configs/c.1/strings/0x409/configuration
+
+ mkdir -p functions/rndis.usb0
+
+ ln -s functions/rndis.usb0 configs/c.1
+
+ echo f0839000.udc > UDC
+
+fi
+exit 0
OpenPOWER on IntegriCloud