From f2e9645d4fa4d21c3938ec24cd7539c812fc8f03 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Thu, 1 Apr 2021 12:58:04 -0500 Subject: Add warning message about potential loss of data when not manually setting up the LFS partition, filesystem and mounting. --- lfs.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'lfs.sh') diff --git a/lfs.sh b/lfs.sh index f2b170c..46cbfdd 100755 --- a/lfs.sh +++ b/lfs.sh @@ -18,7 +18,15 @@ source functions.sh #source versioncheck.sh printf "%b" "\n\n\n${CYN}BUILDING ${YLW}${LFS_VER} $(uname -m)${CYN} at \ -${IWHT}${LFS}${CYN} on ${IWHT}${LFS_DISK}${LFS_PART}${RST}\n\n\n" +${IWHT}${LFS}${CYN} on ${IWHT}${LFS_DISK}${LFS_PART}${RST}\n\n" + +printf "%b" "${IRED}*** ${IREDB}WARNING${RST} \ +${IWHT}POTENTIAL DATA LOSS \ +${IREDB}WARNING ${RST}${IRED}***${GRN}\n${RST}" + +printf "%b" "${GRN}Automatic creation of partition(s), filesystem(s) \n\ +and mounting will occur unless manually performed\n\ +before continuing.${RST}\n\n\n" # Continue or Abort printf "%b" "${IGRN}CONTINUE ${IWHTB}(C)${RST} / ${IRED}ABORT ${IWHTB}(OTHER)${RST}\n" -- cgit v1.2.3-54-g00ecf From 6d9b057d88dba4d2f7cd8cf0043cc5fad7f52478 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Thu, 1 Apr 2021 13:43:43 -0500 Subject: Add message when copying requierd files for build to LFS sources target directory. --- lfs.sh | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lfs.sh') diff --git a/lfs.sh b/lfs.sh index 46cbfdd..4e77095 100755 --- a/lfs.sh +++ b/lfs.sh @@ -79,6 +79,9 @@ esac #printf "%b" "${LFS_PWD}\n${LFS_PWD}\n" | sudo passwd lfs # Copy scripts and csv files to LFS sources target +printf "%b" "${GRN}Copying required files to ${YLW}${LFS}/sources \ +${GRN}target directory.${RST}\n" + cp -rf ./*.sh chapter* ./*.csv "${LFS}/sources" cd "${LFS}/sources" || exit 1 -- cgit v1.2.3-54-g00ecf From 1711f4725f3f01241dd5097fd9ecf72aaa5283b2 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Thu, 1 Apr 2021 13:46:17 -0500 Subject: Add download message when downloading packages and patches. --- lfs.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lfs.sh') diff --git a/lfs.sh b/lfs.sh index 4e77095..a056eab 100755 --- a/lfs.sh +++ b/lfs.sh @@ -80,12 +80,13 @@ esac # Copy scripts and csv files to LFS sources target printf "%b" "${GRN}Copying required files to ${YLW}${LFS}/sources \ -${GRN}target directory.${RST}\n" +${GRN}target directory...${RST}\n" cp -rf ./*.sh chapter* ./*.csv "${LFS}/sources" cd "${LFS}/sources" || exit 1 # Download packages and patches +printf "%b" "${GRN}Downloading source packages and patches... \n" source download.sh retval=$? if [ "$retval" -ne 0 ]; then -- cgit v1.2.3-54-g00ecf