From 60b798e000bc8fe2f67f9266b44022c1b363829a Mon Sep 17 00:00:00 2001 From: Kory Maincent Date: Fri, 22 Oct 2021 13:51:32 +0200 Subject: [PATCH] boot/grub2: add more explicit build messages This patch adds the calls to MESSAGE, to explicit the different step of the per-platform builds, following the current tuple loop. Besides a nicer output to the user, this can also help debug what step actualy failed. Signed-off-by: Kory Maincent Signed-off-by: Yann E. MORIN --- boot/grub2/grub2.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/boot/grub2/grub2.mk b/boot/grub2/grub2.mk index e72a91d21a..19047d02f7 100644 --- a/boot/grub2/grub2.mk +++ b/boot/grub2/grub2.mk @@ -149,6 +149,7 @@ HOST_GRUB2_CONF_OPTS = \ define GRUB2_CONFIGURE_CMDS $(foreach tuple, $(GRUB2_TUPLES-y), \ + @$(call MESSAGE,Configuring $(tuple)) mkdir -p $(@D)/build-$(tuple) cd $(@D)/build-$(tuple) && \ $(TARGET_CONFIGURE_OPTS) \ @@ -172,12 +173,14 @@ endef define GRUB2_BUILD_CMDS $(foreach tuple, $(GRUB2_TUPLES-y), \ + @$(call MESSAGE,Building $(tuple)) $(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/build-$(tuple) ) endef define GRUB2_INSTALL_IMAGES_CMDS $(foreach tuple, $(GRUB2_TUPLES-y), \ + @$(call MESSAGE,Installing $(tuple) to images directory) mkdir -p $(dir $(GRUB2_IMAGE_$(tuple))) $(HOST_DIR)/usr/bin/grub-mkimage \ -d $(@D)/build-$(tuple)/grub-core/ \ @@ -198,6 +201,7 @@ endef ifeq ($(BR2_TARGET_GRUB2_INSTALL_TOOLS),y) define GRUB2_INSTALL_TARGET_CMDS $(foreach tuple, $(GRUB2_TUPLES-y), \ + @$(call MESSAGE,Installing $(tuple) to target directory) $(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/build-$(tuple) DESTDIR=$(TARGET_DIR) install ) endef