10 lines
225 B
Batchfile
10 lines
225 B
Batchfile
@echo off
|
|
set TOOLCHAIN_PATH=.\win
|
|
set DOWNLOAD_PATH=..\sprecord
|
|
|
|
cd %TOOLCHAIN_PATH%
|
|
.\hdc.exe shell mount -o remount,rw /
|
|
.\hdc.exe file send %DOWNLOAD_PATH%/librtsprecord.z.so /system/lib/module/
|
|
echo "all success"
|
|
pause
|