From a1d58b89f285b39a36fbc4dbbf25316161d2db27 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Thu, 1 Apr 2021 14:18:19 -0500 Subject: Add informative messages for setup disk stages. --- lfs.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'lfs.sh') diff --git a/lfs.sh b/lfs.sh index 45e61c6..5b33795 100755 --- a/lfs.sh +++ b/lfs.sh @@ -49,12 +49,14 @@ printf "%b" "${GRN}Creating LFS directory at ${YLW}${LFS}${GRN} if it does not e # Setup partition, filesystem, format and mount if # LFS filesystem is not previously mounted if ! grep -q "${LFS}" /proc/mounts; then - printf "%b" "${GRN}Setting up partition on ${YLW}${LFS_DISK} ${GRN}\ -with ${YLW}ext4${GRN} filesystem at ${YLW}${LFS_DISK}${LFS_ROOT} ${GRN}\ -and mounting at ${YLW}${LFS}${RST}...\n" + printf "%b" "${GRN}Preparing LFS partition and filesystem${RST}...\n" source setupdisk.sh "${LFS_DISK}" "${LFS_PART}" + printf "%b" " ${IGRN}Mounting ${IWHT}${LFS_DISK}${LFS_PART} ${IGRN}at \ +${IWHT}${LFS}${RST}\n" sudo mount "${LFS_DISK}${LFS_PART}" "${LFS}" + printf "%b" " ${IGRN}Changing ownership of ${IWHT}${LFS} ${IGRN} \ +to user ${IWHT}${USER}${RST}\n" sudo chown -v "${USER}" "${LFS}" fi -- cgit v1.2.3-54-g00ecf