Activate the ADB network connection on the Android board
The use of ADB is too big, no doubt, through the serial port, U disk, view log information, install APK is too troublesome, network adb useful, but a lot of boards do not directly open such services. Just a moment to remember today:
One, re-mount the system partition command:
Mount-rw-o Remount/system
Ii. modifying the security level of the ADB
Vi/system/build.prop change the ro.adb.secure=1 inside to ro.adb.secure=0.
Third, in the script, plus the command to start ADB
Vi/system/bin/set_display_mode.sh in the second line plus the command setprop ro.adb.secure 0; Stop Adbd;setprop service.adb.tcp.port 5555;start adbd
OK, in the commissioning of the board, sometimes the speed of the remote control can not tolerate, then through the serial port input bar, the high-level access, easy to fix:
command to enter text: input text xxxxx
Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.
Activate the ADB network connection on the Android board