summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kocialkowski <contact@paulk.fr>2014-04-20 22:54:40 +0200
committerWolfgang Wiedmeyer <wolfgit@wiedmeyer.de>2017-06-05 13:48:14 +0200
commit147407d0a1de958b515b784061e5084336ebfe97 (patch)
treebf09569a65c5e0361a97edede06aa9c34f0204e7
parent68916eb9cbc87029993fe60aef9b70ae4d6189a0 (diff)
downloadbuild-147407d0a1de958b515b784061e5084336ebfe97.zip
build-147407d0a1de958b515b784061e5084336ebfe97.tar.gz
build-147407d0a1de958b515b784061e5084336ebfe97.tar.bz2
bootloaderimage target
Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
-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