summaryrefslogtreecommitdiffstats
path: root/shbootimg.mk
diff options
context:
space:
mode:
authorPawit Pornkitprasan <p.pawit@gmail.com>2012-04-16 13:08:21 +0700
committerPawit Pornkitprasan <p.pawit@gmail.com>2012-04-16 17:36:52 +0700
commitc9d2bf05f0c99d059485d136ac6a97a7d6abdc66 (patch)
treecd452b8a0456a054f06b8dbb795f090b40119724 /shbootimg.mk
parent9ccb221cefb47fb7961ab7392b525e166d476347 (diff)
downloaddevice_samsung_aries-common-c9d2bf05f0c99d059485d136ac6a97a7d6abdc66.zip
device_samsung_aries-common-c9d2bf05f0c99d059485d136ac6a97a7d6abdc66.tar.gz
device_samsung_aries-common-c9d2bf05f0c99d059485d136ac6a97a7d6abdc66.tar.bz2
aries-common: Support integrated kernel building
- shbookimg.mk needs to be updated to use the built kernel - Added kernel source path Change-Id: Ic34bf51f22d091056940529df3313a3159b37857
Diffstat (limited to 'shbootimg.mk')
-rw-r--r--shbootimg.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/shbootimg.mk b/shbootimg.mk
index 5412568..c90f874 100644
--- a/shbootimg.mk
+++ b/shbootimg.mk
@@ -1,9 +1,9 @@
LOCAL_PATH := $(call my-dir)
INSTALLED_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img
-$(INSTALLED_BOOTIMAGE_TARGET): $(TARGET_PREBUILT_KERNEL) $(recovery_ramdisk) $(INSTALLED_RAMDISK_TARGET) $(PRODUCT_OUT)/utilities/flash_image $(PRODUCT_OUT)/utilities/busybox $(PRODUCT_OUT)/utilities/make_ext4fs $(PRODUCT_OUT)/utilities/erase_image $(PRODUCT_OUT)/modem.bin
+$(INSTALLED_BOOTIMAGE_TARGET): $(INSTALLED_KERNEL_TARGET) $(recovery_ramdisk) $(INSTALLED_RAMDISK_TARGET) $(PRODUCT_OUT)/utilities/flash_image $(PRODUCT_OUT)/utilities/busybox $(PRODUCT_OUT)/utilities/make_ext4fs $(PRODUCT_OUT)/utilities/erase_image $(PRODUCT_OUT)/modem.bin
$(call pretty,"Boot image: $@")
- $(hide) ./device/samsung/aries-common/mkshbootimg.py $@ $(TARGET_PREBUILT_KERNEL) $(INSTALLED_RAMDISK_TARGET) $(recovery_ramdisk)
+ $(hide) ./device/samsung/aries-common/mkshbootimg.py $@ $(INSTALLED_KERNEL_TARGET) $(INSTALLED_RAMDISK_TARGET) $(recovery_ramdisk)
$(INSTALLED_RECOVERYIMAGE_TARGET): $(INSTALLED_BOOTIMAGE_TARGET)
$(ACP) $(INSTALLED_BOOTIMAGE_TARGET) $@