From b4029a6363cecf25514196949c4546a1747034b0 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Wed, 5 Sep 2012 12:34:26 +0200 Subject: [PATCH] [scripts] remaster_pre: signal stdout when mounting /proc --- scripts/remaster_pre.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/remaster_pre.sh b/scripts/remaster_pre.sh index 32f1d67..6c31933 100755 --- a/scripts/remaster_pre.sh +++ b/scripts/remaster_pre.sh @@ -17,6 +17,7 @@ mount --bind "${PKGS_DIR}" "${CHROOT_PKGS_DIR}" || exit 1 content=$(ls -1 "${CHROOT_DIR}/proc" | wc -l) if [ "${content}" -le 3 ]; then + echo "Mounting /proc ..." mount -t proc proc "${CHROOT_DIR}/proc" fi