10 lines
		
	
	
		
			273 B
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			273 B
		
	
	
	
		
			Batchfile
		
	
	
	
	
	
| @echo off
 | |
| set TOOLCHAIN_PATH=./win
 | |
| 
 | |
| @REM 切换到工具链目录
 | |
| cd %TOOLCHAIN_PATH%
 | |
| @REM 重新挂载根目录为可读写
 | |
| .\hdc.exe shell mount -o remount,rw /
 | |
| .\hdc.exe file send ../sprecord/librtsprecord.z.so /system/lib/module/libhiserialsdk.z.so
 | |
| 
 | |
| echo "操作完成" |