summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjorn Andersson <bjorn.andersson@sonymobile.com>2012-08-15 08:11:20 -0700
committerBjorn Andersson <bjorn.andersson@sonymobile.com>2012-09-05 10:31:01 -0700
commitd7424e791115a2e9d4b1ef6132c87c36b8da30a6 (patch)
tree112e5867fb4f07ea3f41fee0ad996bf992c0ed69
parent097c1374651fb684faacc84a8a77b4460572c19c (diff)
downloadlt26-d7424e791115a2e9d4b1ef6132c87c36b8da30a6.tar.gz
custom bootimage: Update path to RPM.bin
Change the path to RPM.bin to reflect the change I did in the binary package release by Sony Mobile. The change was made because all other files in etc/firmware are flashed into the file system. Change-Id: I956aa700482e68f0ce8e5e1c9ebd51ca2dc63ddb
-rw-r--r--custombootimg.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/custombootimg.mk b/custombootimg.mk
index 50bc8cd..b627d9a 100644
--- a/custombootimg.mk
+++ b/custombootimg.mk
@@ -4,10 +4,10 @@ MKELF := device/sony/lt26/tools/mkelf.py
INSTALLED_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img
$(INSTALLED_BOOTIMAGE_TARGET): $(PRODUCT_OUT)/kernel $(INSTALLED_RAMDISK_TARGET) $(MKBOOTIMG) $(MINIGZIP) $(INTERNAL_BOOTIMAGE_FILES)
$(call pretty,"Boot image: $@")
- $(hide) python $(MKELF) -o $@ $(PRODUCT_OUT)/kernel@0x40208000 $(PRODUCT_OUT)/ramdisk.img@0x41300000,ramdisk vendor/sony/lt26/proprietary/etc/firmware/RPM.bin@0x20000,rpm
+ $(hide) python $(MKELF) -o $@ $(PRODUCT_OUT)/kernel@0x40208000 $(PRODUCT_OUT)/ramdisk.img@0x41300000,ramdisk vendor/sony/lt26/proprietary/boot/RPM.bin@0x20000,rpm
INSTALLED_RECOVERYIMAGE_TARGET := $(PRODUCT_OUT)/recovery.img
$(INSTALLED_RECOVERYIMAGE_TARGET): $(MKBOOTIMG) $(recovery_ramdisk) $(recovery_kernel)
$(call pretty,"Recovery image: $@")
- $(hide) python $(MKELF) -o $@ $(PRODUCT_OUT)/kernel@0x40208000 $(PRODUCT_OUT)/ramdisk-recovery.img@0x41300000,ramdisk vendor/sony/lt26/proprietary/etc/firmware/RPM.bin@0x20000,rpm
+ $(hide) python $(MKELF) -o $@ $(PRODUCT_OUT)/kernel@0x40208000 $(PRODUCT_OUT)/ramdisk-recovery.img@0x41300000,ramdisk vendor/sony/lt26/proprietary/boot/RPM.bin@0x20000,rpm
# $(hide) $(call assert-max-image-size,$@,$(BOARD_RECOVERYIMAGE_PARTITION_SIZE),raw)