#!/bin/sh

###########################
# General config
#   these are the default settings
#   the setting are only used, if not defined in the payload itself
###########################

# USB Gadget Setup
# ---------------------------
# Make sure to change USB_PID if you enable different USB functionality in order
# to force Windows to enumerate the device again

# default gadget information
USB_VID=0x0525        # Vendor ID
USB_PID=0xa4a2        # Product ID

# options
#RNDIS
USE_RNDIS=true

# ECM
USE_ECM=true

# Mass Storage Device
USE_MSD=true
MSD_FILE=/etc/init.d/.usb/rdkstudio.img
MSD_BLOCK_SIZE=128              # 128M (1M per block)
MSD_BLOCK_AUTO_MOUNT=false       # auto mount in /media/mass_storage
MSD_BLOCK_READONLY=true

# single interface rndis still use multi-interface composite class for win10
IS_MULTI_FUNC=true
