Enabling USB Debugging mode in Android 5.1.1.2 AOSP

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

Enabling USB Debugging mode in Android 5.1.1.2 AOSP

2,612 次查看
lyfsci
Contributor III

Hi Experts,

How to enable the USB debugging mode from the freescale Android 5.1.1.2 AOSP for IMX6SL from command line ?

It could be done from GUI mode but how the same is achieved from command line ?

Lyf

标签 (2)
0 项奖励
1 回复

1,431 次查看
SergioSolis
NXP Employee
NXP Employee

Its not an easy process, but I found this set of steps to make it work:

  • Connect the device to Mac or PC in recovery mode.
  • Now open terminal/CMD in computer and go to platform-tools/. type and enter ./adb devices to check if the device is connected in recovery mode.
  • Now type ./adb shell mount data and ./adb shell mount system to mount the respective directories.
  • Get the persist.sys.usb.config file in your system using ./adb pull /data/property/persist.sys.usb.config /Your directory
  • Now open that file in a texteditor and edit it to mtp,adb and save.
  • Now push the file back in the device; ./adb push /your-directory/persist.sys.usb.config /data/property
  • Get the build.prop file; ./adb pull /system/build.prop /your-directory
  • Push build.prop back into the device; ./adb push /your-dir/build.prop /system/
0 项奖励