summaryrefslogtreecommitdiff
path: root/core/mk/macros.mk
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2014-04-20 11:40:15 +0200
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2014-04-20 11:40:15 +0200
commitbb5839a2ffc65b549a892506517f3257cf16d4a0 (patch)
treea6c28fe6bbcd01548b484f2c02410de2419ec952 /core/mk/macros.mk
parentf500c9e2ecf8c789398f330d4c86078890d5da91 (diff)
downloadembtoolkit-bb5839a2ffc65b549a892506517f3257cf16d4a0.tar.gz
embtoolkit-bb5839a2ffc65b549a892506517f3257cf16d4a0.tar.bz2
embtoolkit-bb5839a2ffc65b549a892506517f3257cf16d4a0.tar.xz
Build system: tweak displayed messages after succesful build
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
Diffstat (limited to 'core/mk/macros.mk')
-rw-r--r--core/mk/macros.mk17
1 files changed, 16 insertions, 1 deletions
diff --git a/core/mk/macros.mk b/core/mk/macros.mk
index 0ec78a9..6aeb8f9 100644
--- a/core/mk/macros.mk
+++ b/core/mk/macros.mk
@@ -139,6 +139,7 @@ define help_toolchain_summary
$(call embtk_echo_blue," ~~~~~~~~~~~ ")
$(call embtk_echo_blue,"| Toolchain |")
$(call embtk_echo_blue," ~~~~~~~~~~~ ")
+ $(call embtk_echo_blue,"\tEmbToolkit : v$(EMBTK_VERSION)")
$(call embtk_echo_blue,"\tArchitecture : $(LINUX_ARCH) ($(EMBTK_MCU_FLAG))")
$(call embtk_echo_blue,"\tLinux kernel headers: linux-$(call __embtk_pkg_version,linux)")
$(call embtk_echo_blue,"\tBinutils : binutils-$(call __embtk_pkg_version,binutils)")
@@ -171,6 +172,20 @@ define help_rootfs_summary
$(call embtk_echo_blue,"\tInitramfs : $(if $(CONFIG_EMBTK_ROOTFS_HAVE_INITRAMFS_CPIO),Yes,No)")
$(call embtk_echo_blue,"\tsquashFS : $(if $(CONFIG_EMBTK_ROOTFS_HAVE_SQUASHFS),Yes,No)")
$(call embtk_echo_blue,"\tJFFS2 : $(if $(CONFIG_EMBTK_ROOTFS_HAVE_JFFS2),Yes,No)")
- $(call embtk_echo_blue,"\tRootFS location:")
+ $(call embtk_echo_blue,"\tImages location:")
$(call embtk_echo_blue,"\t\`-->generated"))
endef
+
+define help_successful_build
+ $(call embtk_echo_blue," ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ")
+ $(call embtk_echo_blue,"| Embedded systems Toolkit |")
+ $(call embtk_echo_blue," ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ")
+ $(call embtk_echo_blue,"We hope that EmbToolkit will be useful for your project !!!")
+ $(call embtk_echo_blue,"We will be happy to know it at embtk-users@embtoolkit.org")
+ @echo
+ $(call embtk_echo_blue,"Please report any bugs/suggestion at:")
+ $(call embtk_echo_blue," $(EMBTK_BUGURL)")
+ $(call embtk_echo_blue,"You can also visit the project web site at:")
+ $(call embtk_echo_blue," http://www.embtoolkit.org")
+ $(call embtk_echo_blue,$(__embtk_msg_h))
+endef