AndroidKernel.mk: Use a compressed image (Image.gz) for aarch64

Aarch64 use Image.gz to generate a compressed boot image,
it is not using zImage any more.

Change-Id: Ifa7152ce3e6885aed998f8ff44efd46b48dc56b1
Signed-off-by: Matthew Qin <yqin@codeaurora.org>
This commit is contained in:
Matthew qin 2015-03-12 02:36:10 -04:00
parent 660309ee81
commit 5713d7952f
1 changed files with 4 additions and 0 deletions

View File

@ -58,8 +58,12 @@ ifeq ($(TARGET_USES_UNCOMPRESSED_KERNEL),true)
$(info Using uncompressed kernel)
TARGET_PREBUILT_INT_KERNEL := $(KERNEL_OUT)/arch/$(KERNEL_ARCH)/boot/Image
else
ifeq ($(KERNEL_ARCH),arm64)
TARGET_PREBUILT_INT_KERNEL := $(KERNEL_OUT)/arch/$(KERNEL_ARCH)/boot/Image.gz
else
TARGET_PREBUILT_INT_KERNEL := $(KERNEL_OUT)/arch/$(KERNEL_ARCH)/boot/zImage
endif
endif
ifeq ($(TARGET_KERNEL_APPEND_DTB), true)
$(info Using appended DTB)