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 163780e..0f67080 100644
--- a/core/Makefile
+++ b/core/Makefile
@@ -492,6 +492,10 @@ endif
INSTALLED_UBOOT_MODULE := $(PRODUCT_OUT)/u-boot.bin
# -----------------------------------------------------------------
+# 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 3eb2d47..bcc94bd 100644
--- a/core/main.mk
+++ b/core/main.mk
@@ -830,6 +830,9 @@ vendorimage: $(INSTALLED_VENDORIMAGE_TARGET)
.PHONY: bootimage
bootimage: $(INSTALLED_BOOTIMAGE_TARGET)
+.PHONY: bootloaderimage
+bootloaderimage: $(INSTALLED_BOOTLOADERIMAGE_TARGET)
+
# phony target that include any targets in $(ALL_MODULES)
.PHONY: all_modules
ifndef BUILD_MODULES_IN_PATHS