android 制作OTA 更新包

阅读更多

升级包的制作

 

第一步,编译系统

 

$ source build/envsetup.sh

$ lunch arashi-userdebug

$ mkdir dist_output

$export AB_OTA_PARTITIONS="boot system vendor"

$export BUILD_NUMBER = 00.00.05

$ make -j32 dist DIST_DIR=dist_output

 

第二步,制作安装包

 

$ ./build/tools/releasetools/ota_from_target_files dist-output/arashi-target_files-00.00.05.zip full-ota.zip

$ ls -lh dist-output

-rw-r--r-- 1 ygu users 270M May 21 14:51 full-ota.zip

--------------------- 

 

你可能感兴趣的:(android,ota)