android shell 命令实现复制文件
1、cat source_file >dest_file
2、dd if=source_file of=dest_file
Android remount命令的两种写法
remount命令的两种写法
不同系统的参数格式可能不银迅一样,而且可能没有--help打印,记录一下:
mount -o remount -rw /system
mount -o remount,rw /system
有个需求,客户样机高孙固件里面的jar包有些问题需要替换,但是样机已经卖到用户手上了
,这里需要用做过apk去给用户做替换处理;
android源码目录下的build/envsetup.sh文件,描述编译的命令
- m: Makes from the top of the tree.
- mm: Builds all of the modules in the current directory.
- mmm: 基锋橡厅 Builds all of the modules in the supplied directories.
要想使用这些命令,首先需要设置android脚本编译环境,在源码根目录执行 source build/envsetup.sh
m:编译所有的模块
mm:编译当前目录下的模块,当前目录下要有Android.mk文件
mmm:编译指定路径下的模块,指定路径下要有Android.mk文件
下面举个例子说明,假设搏如晌我要编译android下的\framework\av\cmds\screenrecord模块,
当前目录为源码根目录,方法如下:
1、source build/envsetup.sh
2、mmm framework/av/cmds/screenrecord
或者 :
1、source build/envsetup.sh
2、cd framework/av/cmds/screenrecord
3、mm
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)