在 AVD 上运行自定义 ROM

发布于 2024-12-24 19:04:28 字数 42 浏览 1 评论 0原文

有谁知道是否可以在 AVD 上运行自定义 ROM? 我该怎么做? 谢谢

Does anyone know if this it is possible to run a Custom ROM on a AVD?
ANd how can I do this?
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

翻身的咸鱼 2024-12-31 19:04:28

如果您自己构建自定义 ROM,则在构建自定义 ROM 后,您可以使用命令 emulator 启动它。但要做到这一点,您首先需要为模拟器构建 ROM(通常是full-generic午餐选项)。如果没有,您可以复制必要的图像并使用模拟器命令运行它们。例如,我通常将 .sh 脚本复制到 Android 源文件夹中并运行此脚本:

out/host/linux-x86/bin/emulator -sysdir out/target/product/generic/ -system out/target/product/generic/system.img -ramdisk out/target/product/generic/ramdisk.img -data out/target/product/generic/userdata.img -kernel prebuilt/android-arm/kernel/kernel-qemu -sdcard sdcard.img -skindir sdk/emulator/skins -skin WVGA800 -scale 0.7 -memory 512 -wipe-data -partition-size 200

If you build a custom rom by yourself, after you've built a custom rom you can launch it with the command emulator. But to do this you need at first to build your rom for emulator (usually, full-generic lunch option). If not you can just copy necessary images and also run them using emulator command. For instance, I usually copy .sh script in the folder with Android sources and run this script:

out/host/linux-x86/bin/emulator -sysdir out/target/product/generic/ -system out/target/product/generic/system.img -ramdisk out/target/product/generic/ramdisk.img -data out/target/product/generic/userdata.img -kernel prebuilt/android-arm/kernel/kernel-qemu -sdcard sdcard.img -skindir sdk/emulator/skins -skin WVGA800 -scale 0.7 -memory 512 -wipe-data -partition-size 200
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文