Enabling USB Debugging mode in Android 5.1.1.2 AOSP

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Enabling USB Debugging mode in Android 5.1.1.2 AOSP

2,573 Views
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

Labels (2)
0 Kudos
1 Reply

1,392 Views
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 Kudos