在 ARM64 上使用具有 16 KB 页面大小的 Cuttlefish

此设置需要 ARM64 Linux 主机。本页面介绍了如何在 ARM64 上构建和启动支持 16 KB 页面大小的 Cuttlefish。本页面上的说明假定 Cuttlefish 软件包已安装在您的计算机上。如需了解安装说明,请参阅安装 Cuttlefish的第 1 步。

您可以通过直接从 Android Continuous Integration 网站下载预构建的工件或在需要修改源代码时从 AOSP 构建它们来启动 Cuttlefish。

通过下载工件启动 Cuttlefish

转到 Android Continuous Integration 网站,然后输入 aosp-main-throttled 作为分支名称。点击 aosp_cf_arm64_phone_pgagnostic 目标的最新构建版本。现在,按照安装 Cuttlefish的第 5 步中的说明操作。

通过从 AOSP 构建启动 Cuttlefish

使用页面不可知目标构建和启动 Cuttlefish

$ mkdir main && cd main
$ repo init -u https://android.googlesource.com/platform/manifest -b main
$ repo sync -c -j32

# Build cf agnostic target.
$ source build/envsetup.sh
$ lunch aosp_cf_arm64_phone_pgagnostic-trunk_staging-userdebug
$ m

# Launch cf with a kernel with 16 KB page size support.
$ launch_cvd
...
...
VIRTUAL_DEVICE_DISPLAY_POWER_MODE_CHANGED
virtio_input_hid_handle_status: unknown type 20
virtio_input_hid_handle_status: unknown type 20
virtio_input_hid_handle_status: unknown type 20
virtio_input_hid_handle_status: unknown type 20
Generating new secret with slot ID: 4
VIRTUAL_DEVICE_BOOT_STARTED
VIRTUAL_DEVICE_NETWORK_MOBILE_CONNECTED

验证页面大小和启动

要验证页面大小和启动状态

  1. 以 root 用户身份访问 shell

    $ adb root
    adbd is already running as root
    $ adb shell
    vsoc_arm64_pgagnostic:/ #
    
  2. 验证页面大小和启动状态

    vsoc_arm64_pgagnostic:/ # getconf PAGE_SIZE
    16384
    vsoc_arm64_pgagnostic:/ # getprop | grep sys.boot.completed
    sys.boot_completed: 1
    

使用具有自定义 16 KB 页面大小内核的 Cuttlefish

要使用自定义内核而不是预构建内核

  1. 为 Android 通用内核创建一个 repo 目录并同步该目录

    $ mkdir common-android14-6.1 && cd common-android14-6.1
    $ repo init -u https://android.googlesource.com/kernel/manifest -b common-android14-6.1
    $ repo sync -c -j$(nproc)
    
  2. 构建 16 KB 页面大小内核

    $ tools/bazel run --lto=none //common:kernel_aarch64_16k_dist
    $ tools/bazel run --lto=none //common-modules/virtual-device:virtual_device_aarch64_16k_dist -- \
        --dist_dir=out/android14-6.1/dist
    
  3. 验证构建是否成功执行

    # Generated files
    $ ls out/android14-6.1/dist/Image
    $ ls out/android14-6.1/dist/initramfs.img
    

使用自定义 16 KB 页面大小内核启动 Cuttlefish

要在 Cuttlefish 中使用新构建的内核

$ launch_cvd -kernel_path ~/common-android14-6.1/out/android14-6.1/dist/Image \
      -initramfs_path ~/common-android14-6.1/out/android14-6.1/dist/initramfs.img \
      --resume=false --userdata_format=ext4 \
      --data_policy=always_create --blank_data_image_mb=8000
      -userdata_format=ext4