内核打开配置CONFIG_USB_CONFIGFS_RNDIS就行,不用模块,build-in就行
板子是Ubuntu系统的话在/etc/init.d/adbd.sh里面,200多行,function_init函数末尾添加:
@@ -239,7 +239,13 @@ function_init()
ln -s ${USB_FUNCTIONS_DIR}/uvc.gs6 ${USB_CONFIGS_DIR}/uvc.gs6
fi
-
+ if [ $RNDIS_EN = on ];then
+ if [ ! -e "${USB_FUNCTIONS_DIR}/rndis.gs0" ] ;
+ then
+ mkdir -p ${USB_FUNCTIONS_DIR}/rndis.gs0
+ ln -s ${USB_FUNCTIONS_DIR}/rndis.gs0 ${USB_CONFIGS_DIR}/rndis.gs0
+ fi
+ fi
}
内核打开配置CONFIG_USB_CONFIGFS_RNDIS就行,不用模块,build-in就行
板子是Ubuntu系统的话在/etc/init.d/adbd.sh里面,200多行,function_init函数末尾添加:
@@ -239,7 +239,13 @@ function_init()
ln -s ${USB_FUNCTIONS_DIR}/uvc.gs6 ${USB_CONFIGS_DIR}/uvc.gs6
fi
-
+ if [ $RNDIS_EN = on ];then
+ if [ ! -e "${USB_FUNCTIONS_DIR}/rndis.gs0" ] ;
+ then
+ mkdir -p ${USB_FUNCTIONS_DIR}/rndis.gs0
+ ln -s ${USB_FUNCTIONS_DIR}/rndis.gs0 ${USB_CONFIGS_DIR}/rndis.gs0
+ fi
+ fi
}
举报