本页介绍了如何构建支持 16 KB 的 Pixel 8、Pixel 8 Pro 和 Pixel 8a。
同步和构建 AOSP
如需同步和构建 AOSP,请执行以下操作:
查看 AOSP 代码库:
$ mkdir ~/aosp_main && cd ~/aosp_main $ repo init -u https://android.googlesource.com/platform/manifest -b main $ repo sync -c -j$(nproc)
获取
envsetup.sh
脚本的源代码以设置构建环境:$ source build/envsetup.sh
为 Pixel 8 设备选择以下三个目标之一:
- 适用于 Pixel 8 Pro 的
aosp_husky_pgagnostic-trunk_staging-userdebug
- 适用于 Pixel 8 的
aosp_shiba_pgagnostic-trunk_staging-userdebug
- 适用于 Pixel 8a 的
aosp_akita_16k-trunk_staging-userdebug
$ lunch target
- 适用于 Pixel 8 Pro 的
构建代码:
$ m -j$(nproc)
这些映像会在 build 完成后生成:
$ ls out/target/product/<husky|shiba|akita>/*.img out/target/product/husky/boot.img out/target/product/husky/vbmeta.img out/target/product/husky/dtb.img out/target/product/husky/vbmeta_system.img out/target/product/husky/dtbo.img out/target/product/husky/vendor-bootconfig.img out/target/product/husky/init_boot.img out/target/product/husky/vendor_boot-debug.img out/target/product/husky/product.img out/target/product/husky/vendor_boot.img out/target/product/husky/pvmfw.img out/target/product/husky/vendor_boot-test-harness.img out/target/product/husky/ramdisk.img out/target/product/husky/vendor.img out/target/product/husky/super_empty.img out/target/product/husky/vendor_kernel_boot.img out/target/product/husky/system_dlkm.img out/target/product/husky/vendor_kernel_ramdisk.img out/target/product/husky/system_ext.img out/target/product/husky/vendor_ramdisk-debug.img out/target/product/husky/system.img out/target/product/husky/vendor_ramdisk.img out/target/product/husky/system_other.img out/target/product/husky/vendor_ramdisk-test-harness.img out/target/product/husky/userdata.img
同步和构建内核
选择以下 6.1 内核之一:
android-gs-shusky-6.1-android15-qpr2-beta
(适用于 Pixel 8 和 Pixel 8 Pro 设备)- 适用于 Pixel 8a 设备的
android-gs-akita-6.1-android15-qpr2-beta
同步内核:
# Sync the kernel. $ mkdir ~/android-gs-shusky-6.1 $ cd ~/android-gs-shusky-6.1 $ repo init -u https://android.googlesource.com/kernel/manifest -b kernel $ repo sync -c -j6
构建内核:
如需为 Pixel 8 或 Pixel 8 Pro 构建内核,请使用以下命令:
$ ./tools/bazel run \ --config=shusky \ //private/devices/google/shusky:zuma_shusky_dist \ --config=16k [dist] INFO: Copying to ~/android14-gs-pixel-6.1/out/shusky/dist
如需为 Pixel 8a 构建内核,请使用以下命令:
$ ./tools/bazel run \ --config=akita \ //private/devices/google/akita:zuma_akita_dist \ --confige=16k [dist] INFO: Copying to ~/android14-gs-pixel-6.1/out/akita/dist
下载供应商映像
AOSP 代码库不包含启动设备所需的供应商映像。您可以从 ci.android.com
下载图片:
选择与您的设备对应的突出显示的绿色 build:
对于 Pixel 8 Pro,请点击
aosp_husky_pgagnostic
。对于 Pixel 8,请点击
aosp_shiba_pgagnostic
。对于 Pixel 8a,请点击
aosp_akita_16k
。
工件标签页会显示在页面底部。
点击 Artifacts(工件)。系统会列出设备的工件。
如需下载工件,请点击以
.sh
结尾的文件。在下载文件的目录中,运行以下命令以提取内容:
$ cd ~/Downloads $ chmod +x aosp_<selected target>-flashable-<build id>-with-license.sh ./aosp_<selected target>-flashable-<build id>-with-license.sh # After reading the license, type Type "I ACCEPT" if you agree to the terms of the license: I ACCEPT # The extracted file will be in the current directory $ ls aosp_<selected_target>-flashable-with-license.zip # unzip that file in a directory named aosp_vendor $ unzip aosp_<selected_target>-flashable-with-license.zip -d aosp_vendor # The content of the directory will look like: $ ls aosp_vendor android-info.txt init_boot.img super_empty.img system_other.img vbmeta_vendor.img vendor_kernel_boot.img boot.img product.img system_dlkm.img userdata.img vendor_boot.img bootloader.img pvmfw.img system_ext.img vbmeta.img vendor_dlkm.img dtbo.img radio.img system.img vbmeta_system.img vendor.img
将图片复制到临时目录
按以下顺序将 AOSP、内核和供应商映像复制到目录中:
$ mkdir ~/images && cd ~/images
# Copy AOSP generated images
$ cp ~/aosp_main/out/target/product/<akita|husky|shiba>/*.img ./images
# Copy kernel generated images
$ cp ~/android-gs-shusky-6.1/out/<akita|shusky>/dist ./images
# Copy the vendor images
$ cp ~/Downloads/aosp_vendor/vendor.img ./images
$ cp ~/Downloads/aosp_vendor/vbmeta_vendor.img ./images
闪烁图片
如需刷写映像,请按以下步骤操作:
刷写动态分区映像:
$ IMGS_DIR=~/images $ adb reboot fastboot $ fastboot flash product $IMGS_DIR/product.img $ fastboot flash system $IMGS_DIR/system.img $ fastboot flash system_ext $IMGS_DIR/system_ext.img $ fastboot flash system_dlkm $IMGS_DIR/system_dlkm.img $ fastboot flash vendor $IMGS_DIR/vendor.img $ fastboot flash vendor_dlkm $IMGS_DIR/vendor_dlkm.img
刷写内核映像:
$ fastboot reboot bootloader # Wipe out /data partition $ fastboot -w # Disable pkvm $ fastboot oem pkvm disable $ fastboot flash boot $IMGS_DIR/boot.img $ fastboot flash init_boot $IMGS_DIR/init_boot.img $ fastboot flash dtbo $IMGS_DIR/dtbo.img $ fastboot flash vendor_kernel_boot $IMGS_DIR/vendor_kernel_boot.img $ fastboot flash pvmfw $IMGS_DIR/pvmfw.img $ fastboot flash vendor_boot $IMGS_DIR/vendor_boot.img $ fastboot flash --disable-verity --disable-verification vbmeta $IMGS_DIR/vbmeta.img $ fastboot flash --disable-verity --disable-verification vbmeta_system $IMGS_DIR/vbmeta_system.img $ fastboot flash --disable-verity --disable-verification vbmeta_vendor $IMGS_DIR/vbmeta_vendor.img
按下电源按钮以启动设备。
使用以下命令检查页面大小:
$ adb shell getconf PAGE_SIZE 16384