summaryrefslogtreecommitdiffstats
path: root/rules/at91bootstrap2.make
diff options
context:
space:
mode:
authorAlexander Dahl <ada@thorsis.com>2019-01-28 10:09:07 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2019-02-03 18:31:16 +0100
commit658d8c721685bd14dab6b69b0195b1e4dc03ed11 (patch)
treee4ffde64b13c2cf6cfbf3065a7c0908fb134e11a /rules/at91bootstrap2.make
parentc3e4d5e7ffde2894615419784d94bfc188b2dc48 (diff)
downloadptxdist-658d8c721685bd14dab6b69b0195b1e4dc03ed11.tar.gz
ptxdist-658d8c721685bd14dab6b69b0195b1e4dc03ed11.tar.xz
at91bootstrap2: Make targetinstall verbose and fix message
The additional -vD is also used in several other rules, it's nice to see the image(s) are actually copied to the right place. If there's no kconfig file yet, the message shown is right, but the additional single quote leads to an error, when directly copy/paste to the commandline. Signed-off-by: Alexander Dahl <ada@thorsis.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/at91bootstrap2.make')
-rw-r--r--rules/at91bootstrap2.make10
1 files changed, 5 insertions, 5 deletions
diff --git a/rules/at91bootstrap2.make b/rules/at91bootstrap2.make
index a0ee1e0df..aae51fe6d 100644
--- a/rules/at91bootstrap2.make
+++ b/rules/at91bootstrap2.make
@@ -46,9 +46,9 @@ AT91BOOTSTRAP2_MAKE_OPT := \
ifdef PTXCONF_AT91BOOTSTRAP2
$(AT91BOOTSTRAP2_CONFIG):
@echo
- @echo "************************************************************************************"
- @echo "* Please generate a at91bootstrap config with 'ptxdist menuconfig 'at91bootstrap2' *"
- @echo "************************************************************************************"
+ @echo "***********************************************************************************"
+ @echo "* Please generate a at91bootstrap config with 'ptxdist menuconfig at91bootstrap2' *"
+ @echo "***********************************************************************************"
@echo
@echo
@exit 1
@@ -69,10 +69,10 @@ $(STATEDIR)/at91bootstrap2.install:
$(STATEDIR)/at91bootstrap2.targetinstall:
@$(call targetinfo)
@if [ -e $(AT91BOOTSTRAP2_DIR)/binaries/at91bootstrap.bin ]; then \
- install -m644 $(AT91BOOTSTRAP2_DIR)/binaries/at91bootstrap.bin \
+ install -vD -m644 $(AT91BOOTSTRAP2_DIR)/binaries/at91bootstrap.bin \
$(IMAGEDIR)/at91bootstrap.bin; \
else \
- install -m644 $(AT91BOOTSTRAP2_DIR)/binaries/*boot-$(AT91BOOTSTRAP2_VERSION).bin \
+ install -vD -m644 $(AT91BOOTSTRAP2_DIR)/binaries/*boot-$(AT91BOOTSTRAP2_VERSION).bin \
$(IMAGEDIR)/at91bootstrap.bin; \
fi
@$(call touch)