summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/Makefile4
-rw-r--r--core/main.mk3
2 files changed, 7 insertions, 0 deletions
diff --git a/core/Makefile b/core/Makefile
index c66ccc4..eef8862 100644
--- a/core/Makefile
+++ b/core/Makefile
@@ -373,6 +373,10 @@ ALL_DEFAULT_INSTALLED_MODULES += $(event_log_tags_file)
# #################################################################
# -----------------------------------------------------------------
+# the bootloader
+INSTALLED_BOOTLOADERIMAGE_TARGET := $(PRODUCT_OUT)/bootloader.img
+
+# -----------------------------------------------------------------
# the ramdisk
INTERNAL_RAMDISK_FILES := $(filter $(TARGET_ROOT_OUT)/%, \
$(ALL_PREBUILT) \
diff --git a/core/main.mk b/core/main.mk
index 68ef2e4..6794e85 100644
--- a/core/main.mk
+++ b/core/main.mk
@@ -755,6 +755,9 @@ cacheimage: $(INSTALLED_CACHEIMAGE_TARGET)
.PHONY: bootimage
bootimage: $(INSTALLED_BOOTIMAGE_TARGET)
+.PHONY: bootloaderimage
+bootloaderimage: $(INSTALLED_BOOTLOADERIMAGE_TARGET)
+
ifeq ($(BUILD_TINY_ANDROID), true)
INSTALLED_RECOVERYIMAGE_TARGET :=
endif