编译Android Qemu镜像
我想开始尝试 Android。 下载源代码并按照 下载页面 中的说明
进行操作 制作了一个简单的通用构建:
============================================
TARGET_PRODUCT=generic
TARGET_BUILD_VARIANT=eng
TARGET_SIMULATOR=
TARGET_BUILD_TYPE=release
TARGET_ARCH=arm
HOST_ARCH=x86
HOST_OS=linux
HOST_BUILD_TYPE=release
BUILD_ID=
============================================
但是我如何创建来自其中的egqemu 图像。 我环顾了一下 /out 目录,找到了主机工具和模拟器,但不知道从哪里开始运行它。
I want to start playing around with Android. Downloaded the sources and followed the instructions from the download page
Made a plain generic build:
============================================
TARGET_PRODUCT=generic
TARGET_BUILD_VARIANT=eng
TARGET_SIMULATOR=
TARGET_BUILD_TYPE=release
TARGET_ARCH=arm
HOST_ARCH=x86
HOST_OS=linux
HOST_BUILD_TYPE=release
BUILD_ID=
============================================
But how can i create an e.g.qemu image from that. I looked around the /out dir,found the host tools and the emulator but dont know where to start to get this running.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否正在尝试为模拟器构建?
如果是这样,请按照以下步骤操作:
这应该可以帮助您开始。
如果您需要快速重建子集并在模拟器中加载更改,请使用“adb remount && adbsync”。
如果您想重建系统映像,请使用“make snod”
希望这会有所帮助。
Are you trying to build for the emulator?
if so follow these steps:
That should get you started.
if you need to quickly rebuild a subset and load the changes in the emulator use "adb remount && adb sync".
if you want to rebuild the system image use "make snod"
Hope this helps.