在 x86_64 上使用 16 KB 页面大小模拟 Cuttlefish

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

您可以直接从 Android 持续集成站点下载预构建的工件,或者如果您需要修改源代码,可以从 AOSP 构建它们来启动 Cuttlefish。

内核实现

Android 14 6.6 GKI 的 page_size_emulation 补丁系列添加了对模拟 x86_64 16 KB 页面的支持。在命令行中传递 page_shift=14 即可启用此模拟。x86_64 目标(带有 _16k 后缀或带有 _pgagnostic 后缀的旧目标),例如 aosp_cf_x86_64_phone_pgagnostic,默认情况下会传递此选项,并在默认情况下以 16 KB 模式工作。

通过下载工件启动 Cuttlefish

转到 Android 持续集成站点,然后输入 aosp-main-throttled 作为分支名称。点击 aosp_cf_x86_64_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_x86_64_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_x86_64_pgagnostic:/ #
    
  2. 验证页面大小和启动状态

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