connect to a RK3066 via ADB on linux.

来源:互联网 发布:linux squid 透明代理 编辑:程序博客网 时间:2024/06/05 11:57
Just a few tips to those are trying to connect to a RK3066 via ADB on linux.


Download & Install SDK
Edit udev rules (see step #3), the RK3066 Vendor ID is 2207
Restart udev (udevadm control --reload-rules)
Edit $HOME/.android/adb_usb.ini, add 0x2207 at the end of the file
Restart adb server (adb kill-server && adb start-server)
Plug & List your device (adb devices)




At step #2, you should get something like this
SUBSYSTEM=="usb", ATTR{idVendor}=="2207", MODE="0666", GROUP="plugdev"




At step #4, you should get something like this
# ANDROID 3RD PARTY USB VENDOR ID LIST -- DO NOT EDIT.
# USE 'android update adb' TO GENERATE.
# 1 USB VENDOR ID PER LINE.
0x2207
原创粉丝点击