mirror of
https://github.com/PixelExperience-Devices/device_xiaomi_sm6250-common.git
synced 2025-05-20 20:37:18 +09:00
8 lines
235 B
Bash
8 lines
235 B
Bash
#!/vendor/bin/sh
|
|
usb_config=`getprop vendor.usb.mimode`
|
|
|
|
if [ "$(getprop persist.vendor.usb.config)" != "$usb_config" -a \
|
|
"$(getprop ro.boot.factorybuild)" != "1" ];then
|
|
setprop persist.vendor.usb.config "$usb_config"
|
|
fi
|