summaryrefslogtreecommitdiff
path: root/meta-fii/meta-kudo/recipes-kudo/network/usb-network/usb_network.sh
blob: 8d7804d063277f1359e7ffa02b7bc9b08291c085 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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/ECM gadget" > strings/0x409/product

    mkdir -p configs/c.1
    echo 100 > configs/c.1/MaxPower
    mkdir -p configs/c.1/strings/0x409
    echo "ECM" > configs/c.1/strings/0x409/configuration

    mkdir -p functions/ecm.usb0

    ln -s functions/ecm.usb0 configs/c.1

    echo f0835000.udc > UDC

fi
exit 0