Ubuntu 14.04下Android系统源码编译(2)

目标目录work/LINUX/android/out/target/product/xxx/,下面几个目录都是在这个目录下,就不一一重复了。
3)编译system(生成system.img)

make systemimage –jn

4)编译userdata(生成userdata.img)

make userdataimage –jn

5)编译recovery(生成recovery.img)

make recoveryimage –jn 6.刷机

这里我假定你配置好adb环境,如果没有请先下载Android SDK搭建环境。然后连上机子在电脑上让电脑识别,在命令行里输入下面命令进行烧写。
1)烧写emmc_appsboot.mbn

adb reboot bootloader fastboot flash aboot <path to emmc_appsboot.mbn > fastboot reboot

path to emmc_appsboot.mbn 是你的emmc_appsboot.mbn目录路径,下同。

2)烧写boot.img

adb reboot bootloader fastboot flash boot <path to boot.img> fastboot reboot

3)烧写system.img

adb reboot bootloader fastboot flash system <path to system.img> fastboot reboot

4)烧写userdata.img

adb reboot bootloader fastboot flash userdata <path to userdata.img> fastboot reboot

5) 烧写 recovery.img:

adb reboot bootloader fastboot flash recovery <path to recovery.img> fastboot reboot

相关链接:
谷歌下载源:https://source.android.com/source/downloading.html#initializing-a-repo-client
清华下载源:https://mirrors.tuna.tsinghua.edu.cn/help/AOSP/ 

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/14487.html