# rkdeveloptool **Repository Path**: secondtonone1/rkdeveloptool ## Basic Information - **Project Name**: rkdeveloptool - **Description**: rockchip烧录工具源码 - **Primary Language**: Unknown - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-06-12 - **Last Updated**: 2025-06-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README rkdeveloptool gives you a simple way to read/write rockusb device.let's start. compile and install 1. install libusb and libudev sudo apt-get install libudev-dev libusb-1.0-0-dev dh-autoreconf 2. go into root of rkdeveloptool 3. ./autogen.sh 4. ./configure 5. make rkdeveloptool usage,input "rkdeveloptool -h" to see example: 1.download kernel.img sudo ./rkdeveloptool db RKXXLoader.bin //download usbplug to device sudo ./rkdeveloptool wl 0x8000 kernel.img //0x8000 is base of kernel partition,unit is sector. sudo ./rkdeveloptool rd //reset device compile error help if you encounter the error like below: ./configure: line 4269: syntax error near unexpected token `LIBUSB1,libusb-1.0' ./configure: line 4269: `PKG_CHECK_MODULES(LIBUSB1,libusb-1.0)' You should install pkg-config libusb-1.0: sudo apt-get install pkg-config libusb-1.0