July 2016
Beginner to intermediate
282 pages
6h 12m
English
Google provided plenty of developer tools to generate the different types of OTA. If you want to generate a Full Update OTA, the following two steps are required:
To generate the zip file containing the chosen target files, navigate to the root folder of the AOSP sources and run the following commands:
. build/envsetup.sh && lunch aosp-shamu mkdir dist_output make dist DIST_DIR=dist_output
If the process has been successful, we should have the zip file containing the target files in the directory dist_output. As an example, let's try listing the folder content with the following command:
ls -l ...