summaryrefslogtreecommitdiff
path: root/mk/rootfs.mk
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2011-09-02 13:33:57 +0200
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2011-09-02 13:33:57 +0200
commitb98d932eafac9781487f50975711472cd452197e (patch)
treec5e861418292ac5376878c5e93ac7357fd6fd15d /mk/rootfs.mk
parenta333f1c61aa9d8187d8bdc91736682866f09613c (diff)
downloadembtoolkit-b98d932eafac9781487f50975711472cd452197e.tar.gz
embtoolkit-b98d932eafac9781487f50975711472cd452197e.tar.bz2
embtoolkit-b98d932eafac9781487f50975711472cd452197e.tar.xz
Build system: generalize use of embtk_{pinfo,perror,pwarning} in place of existing print macros
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
Diffstat (limited to 'mk/rootfs.mk')
-rw-r--r--mk/rootfs.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/rootfs.mk b/mk/rootfs.mk
index 3822b19..e477481 100644
--- a/mk/rootfs.mk
+++ b/mk/rootfs.mk
@@ -67,12 +67,12 @@ ROOTFS_STRIPPED_FILES += `[ -d $$ROOTFS/usr/libexec ] && find $$ROOTFS/usr/libex
endif
rootfs_build:
- $(call embtk_generic_message,"Building selected root filesystems...")
+ $(call embtk_pinfo,"Building selected root filesystems...")
@$(MAKE) rootfs_clean mkinitialrootfs $(ROOTFS_HOSTTOOLS-y) \
$(ROOTFS_COMPONENTS-y) build_rootfs_devnodes rootfs_fill \
build_tarbz2_rootfs $(FILESYSTEMS-y)
$(Q)rm -rf $(ROOTFS)
- $(call embtk_generic_message,"Build of selected root filesystems \
+ $(call embtk_pinfo,"Build of selected root filesystems \
ended successfully!")
rootfs_fill:
@@ -102,7 +102,7 @@ endif
@-cp -R $(SYSROOT)/etc/* $(ROOTFS)/etc/ >/dev/null 2>/dev/null
@cp -R $(SYSROOT)/root $(ROOTFS)/
ifeq ($(CONFIG_EMBTK_TARGET_STRIPPED),y)
- $(call embtk_generic_message,"Stripping binaries as specified...")
+ $(call embtk_pinfo,"Stripping binaries as specified...")
@-$(FAKEROOT_BIN) -i $(EMBTK_ROOT)/.fakeroot.001 -- \
$(TARGETSTRIP) $(ROOTFS_STRIPPED_FILES) >/dev/null 2>&1
endif