您的位置:首页 > 移动开发

Android7.0 MTK方案 编译OTA升级包错误Could not append verity data!

2017-11-23 19:13 741 查看
一、Android7.0 MTK方案 编译OTA升级包时报错,如下
Could not append verity data!: error: file_write: incomplete write
Failed to write sparse file
Traceback (most recent call last):
File "./build/tools/releasetools/add_img_to_target_files", line 376, in <module>
main(sys.argv[1:])
File "./build/tools/releasetools/add_img_to_target_files", line 370, in main
AddImagesToTargetFiles(args[0])
File "./build/tools/releasetools/add_img_to_target_files", line 313, in AddImagesToT
argetFiles
AddSystem(output_zip, recovery_img=recovery_image, boot_img=boot_image)
File "./build/tools/releasetools/add_img_to_target_files", line 70, in AddSystem
block_list=block_list)
File "./build/tools/releasetools/add_img_to_target_files", line 78, in BuildSystem
return CreateImage(input_dir, info_dict, "system", block_list=block_list)
File "./build/tools/releasetools/add_img_to_target_files", line 151, in CreateImage
assert succ, "build " + what + ".img image failed"
AssertionError: build system.img image failed


二、解决办法

敲命令 df –h,如下:

df -h
Filesystem                            Size  Used Avail Use% Mounted on
udev                                   32G  4.0K   32G   1% /dev
tmpfs                                 6.3G   52M  6.3G   1% /run

none                                  4.0K     0  4.0K   0% /sys/fs/cgroup
none                                  5.0M     0  5.0M   0% /run/lock
none                                   32G   80K   32G   1% /run/shm


根目录只剩下1.8G的可用空间。而编译OTA包时,很多中间文件会存到 /tmp目录下,1.8G不够用,从而导致编译错误。

根本解决办法当然是增加 /tmp 所在分区的空间

临时解决办法:

cd /tmp

rm –rf *

删掉/tmp目录下的文件,清出空间,再进行编译。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐