Merge "emulator: create qemu images for system,vendor"
am: 571e5d47b7
Change-Id: Id80d452017384769146879bec205f39da79e37ae
This commit is contained in:
@@ -2732,6 +2732,26 @@ endif # TARGET_BUILD_APPS
|
|||||||
.PHONY: dalvikfiles
|
.PHONY: dalvikfiles
|
||||||
dalvikfiles: $(INTERNAL_DALVIK_MODULES)
|
dalvikfiles: $(INTERNAL_DALVIK_MODULES)
|
||||||
|
|
||||||
|
ifeq ($(BUILD_QEMU_IMAGES),true)
|
||||||
|
INSTALLED_QEMU_SYSTEMIMAGE := $(PRODUCT_OUT)/system-qemu.img
|
||||||
|
MK_QEMU_IMAGE_SH := device/generic/goldfish/tools/mk_qemu_image.sh
|
||||||
|
SGDISK_HOST := $(HOST_OUT_EXECUTABLES)/sgdisk
|
||||||
|
$(INSTALLED_QEMU_SYSTEMIMAGE): $(INSTALLED_SYSTEMIMAGE) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST)
|
||||||
|
@echo Create system-qemu.img
|
||||||
|
(export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) ${PRODUCT_OUT}/system.img)
|
||||||
|
|
||||||
|
systemimage: $(INSTALLED_QEMU_SYSTEMIMAGE)
|
||||||
|
droidcore: $(INSTALLED_QEMU_SYSTEMIMAGE)
|
||||||
|
ifeq ($(BOARD_USES_VENDORIMAGE),true)
|
||||||
|
INSTALLED_QEMU_VENDORIMAGE := $(PRODUCT_OUT)/vendor-qemu.img
|
||||||
|
$(INSTALLED_QEMU_VENDORIMAGE): $(INSTALLED_VENDORIMAGE_TARGET) $(MK_QEMU_IMAGE_SH) $(SGDISK_HOST)
|
||||||
|
@echo Create vendor-qemu.img
|
||||||
|
(export SGDISK=$(SGDISK_HOST); $(MK_QEMU_IMAGE_SH) ${PRODUCT_OUT}/vendor.img)
|
||||||
|
|
||||||
|
vendorimage: $(INSTALLED_QEMU_VENDORIMAGE)
|
||||||
|
droidcore: $(INSTALLED_QEMU_VENDORIMAGE)
|
||||||
|
endif
|
||||||
|
endif
|
||||||
# -----------------------------------------------------------------
|
# -----------------------------------------------------------------
|
||||||
# The emulator package
|
# The emulator package
|
||||||
ifeq ($(BUILD_EMULATOR),true)
|
ifeq ($(BUILD_EMULATOR),true)
|
||||||
|
@@ -63,7 +63,7 @@ endif
|
|||||||
|
|
||||||
# Files copied in the system-image directory
|
# Files copied in the system-image directory
|
||||||
files_to_copy += \
|
files_to_copy += \
|
||||||
$(addon_dir_img):$(BUILT_SYSTEMIMAGE):images/$(TARGET_CPU_ABI)/system.img \
|
$(addon_dir_img):$(INSTALLED_QEMU_SYSTEMIMAGE):images/$(TARGET_CPU_ABI)/system.img \
|
||||||
$(addon_dir_img):$(BUILT_USERDATAIMAGE_TARGET):images/$(TARGET_CPU_ABI)/userdata.img \
|
$(addon_dir_img):$(BUILT_USERDATAIMAGE_TARGET):images/$(TARGET_CPU_ABI)/userdata.img \
|
||||||
$(addon_dir_img):$(BUILT_RAMDISK_TARGET):images/$(TARGET_CPU_ABI)/ramdisk.img \
|
$(addon_dir_img):$(BUILT_RAMDISK_TARGET):images/$(TARGET_CPU_ABI)/ramdisk.img \
|
||||||
$(addon_dir_img):$(PRODUCT_OUT)/system/build.prop:images/$(TARGET_CPU_ABI)/build.prop \
|
$(addon_dir_img):$(PRODUCT_OUT)/system/build.prop:images/$(TARGET_CPU_ABI)/build.prop \
|
||||||
|
@@ -42,6 +42,7 @@ TARGET_USES_HWC2 := true
|
|||||||
|
|
||||||
# Build OpenGLES emulation guest and host libraries
|
# Build OpenGLES emulation guest and host libraries
|
||||||
BUILD_EMULATOR_OPENGL := true
|
BUILD_EMULATOR_OPENGL := true
|
||||||
|
BUILD_QEMU_IMAGES := true
|
||||||
|
|
||||||
# Build and enable the OpenGL ES View renderer. When running on the emulator,
|
# Build and enable the OpenGL ES View renderer. When running on the emulator,
|
||||||
# the GLES renderer disables itself if host GL acceleration isn't available.
|
# the GLES renderer disables itself if host GL acceleration isn't available.
|
||||||
|
@@ -73,6 +73,7 @@ TARGET_USES_HWC2 := true
|
|||||||
|
|
||||||
# Build OpenGLES emulation host and guest libraries
|
# Build OpenGLES emulation host and guest libraries
|
||||||
BUILD_EMULATOR_OPENGL := true
|
BUILD_EMULATOR_OPENGL := true
|
||||||
|
BUILD_QEMU_IMAGES := true
|
||||||
|
|
||||||
# Build and enable the OpenGL ES View renderer. When running on the emulator,
|
# Build and enable the OpenGL ES View renderer. When running on the emulator,
|
||||||
# the GLES renderer disables itself if host GL acceleration isn't available.
|
# the GLES renderer disables itself if host GL acceleration isn't available.
|
||||||
|
@@ -50,6 +50,7 @@ TARGET_USES_HWC2 := true
|
|||||||
|
|
||||||
# Build OpenGLES emulation guest and host libraries
|
# Build OpenGLES emulation guest and host libraries
|
||||||
BUILD_EMULATOR_OPENGL := true
|
BUILD_EMULATOR_OPENGL := true
|
||||||
|
BUILD_QEMU_IMAGES := true
|
||||||
|
|
||||||
# Build and enable the OpenGL ES View renderer. When running on the emulator,
|
# Build and enable the OpenGL ES View renderer. When running on the emulator,
|
||||||
# the GLES renderer disables itself if host GL acceleration isn't available.
|
# the GLES renderer disables itself if host GL acceleration isn't available.
|
||||||
|
@@ -65,6 +65,7 @@ TARGET_USES_HWC2 := true
|
|||||||
|
|
||||||
# Build OpenGLES emulation guest and host libraries
|
# Build OpenGLES emulation guest and host libraries
|
||||||
BUILD_EMULATOR_OPENGL := true
|
BUILD_EMULATOR_OPENGL := true
|
||||||
|
BUILD_QEMU_IMAGES := true
|
||||||
|
|
||||||
# Build and enable the OpenGL ES View renderer. When running on the emulator,
|
# Build and enable the OpenGL ES View renderer. When running on the emulator,
|
||||||
# the GLES renderer disables itself if host GL acceleration isn't available.
|
# the GLES renderer disables itself if host GL acceleration isn't available.
|
||||||
|
@@ -30,6 +30,10 @@ TARGET_USES_HWC2 := true
|
|||||||
# Build OpenGLES emulation host and guest libraries
|
# Build OpenGLES emulation host and guest libraries
|
||||||
BUILD_EMULATOR_OPENGL := true
|
BUILD_EMULATOR_OPENGL := true
|
||||||
|
|
||||||
|
# Build partitioned system.img and vendor.img (if applicable)
|
||||||
|
# for qemu, otherwise, init cannot find PART_NAME
|
||||||
|
BUILD_QEMU_IMAGES := true
|
||||||
|
|
||||||
# Build and enable the OpenGL ES View renderer. When running on the emulator,
|
# Build and enable the OpenGL ES View renderer. When running on the emulator,
|
||||||
# the GLES renderer disables itself if host GL acceleration isn't available.
|
# the GLES renderer disables itself if host GL acceleration isn't available.
|
||||||
USE_OPENGL_RENDERER := true
|
USE_OPENGL_RENDERER := true
|
||||||
|
@@ -35,6 +35,7 @@ TARGET_USES_HWC2 := true
|
|||||||
|
|
||||||
# Build OpenGLES emulation host and guest libraries
|
# Build OpenGLES emulation host and guest libraries
|
||||||
BUILD_EMULATOR_OPENGL := true
|
BUILD_EMULATOR_OPENGL := true
|
||||||
|
BUILD_QEMU_IMAGES := true
|
||||||
|
|
||||||
# Build and enable the OpenGL ES View renderer. When running on the emulator,
|
# Build and enable the OpenGL ES View renderer. When running on the emulator,
|
||||||
# the GLES renderer disables itself if host GL acceleration isn't available.
|
# the GLES renderer disables itself if host GL acceleration isn't available.
|
||||||
|
Reference in New Issue
Block a user