summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2012-08-12 16:09:23 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2012-08-12 16:16:44 +0200
commitb61544556474e8a39e1ecbe0b5d27a5fbca9b42d (patch)
tree0ad6a294e81291edf1c9a7099156a9657b9e6055 /Makefile
parent8e724b3d3e1d8b272b261b586772c5415c47cb39 (diff)
downloadbarebox-b61544556474e8a39e1ecbe0b5d27a5fbca9b42d.tar.gz
barebox-b61544556474e8a39e1ecbe0b5d27a5fbca9b42d.tar.xz
Makefile: generate a barebox-flash-image link
Depending on the SoC a barebox.bin, barebox.netx, barebox.s5p, MLO image is generated. With pbl support there now is an additional arch/arm/pbl/zbarebox.bin image. To help the user to determine which image should be flashed to his device, generate a barebox-flash-image link. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 7 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 06a94c34e5..a084db3341 100644
--- a/Makefile
+++ b/Makefile
@@ -437,12 +437,6 @@ else
include/config/auto.conf: ;
endif # $(dot-config)
-# The all: target is the default when no target is given on the
-# command line.
-# This allow a user to issue only 'make' to build a kernel
-# Defaults barebox but it is usually overridden in the arch makefile
-all: barebox.bin
-
include $(srctree)/arch/$(ARCH)/Makefile
ifdef CONFIG_DEBUG_INFO
@@ -473,7 +467,12 @@ CFLAGS += $(call cc-option,-Wno-pointer-sign,)
# set in the environment
# Also any assignments in arch/$(ARCH)/Makefile take precedence over
# this default value
-export KBUILD_IMAGE ?= barebox
+export KBUILD_IMAGE ?= barebox.bin
+
+barebox-flash-image: $(KBUILD_IMAGE)
+ $(call if_changed,ln)
+
+all: barebox-flash-image
common-$(CONFIG_PBL_IMAGE) += pbl/
@@ -1009,7 +1008,7 @@ CLEAN_DIRS += $(MODVERDIR)
CLEAN_FILES += barebox System.map include/generated/barebox_default_env.h \
.tmp_version .tmp_barebox* barebox.bin barebox.map barebox.S \
.tmp_kallsyms* barebox_default_env* barebox.ldr \
- scripts/bareboxenv-target \
+ scripts/bareboxenv-target barebox-flash-image \
Doxyfile.version barebox.srec barebox.s5p
# Directories & files removed with 'make mrproper'