diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-01 14:32:15 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-01 14:32:15 -0500 |
commit | 11146d2ca0de2864033b78a99fdec03663873757 (patch) | |
tree | b3e3253c04ef6bd8225342f4a3225c6b39367834 | |
parent | 47d79ddcb73cd843cdd52de67e8d421e6fef4d5a (diff) |
Adjust formatting of main download and build chapter sections.
-rwxr-xr-x | lfs.sh | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -88,7 +88,8 @@ 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" +printf "%b" "\n${IWHT}============ ${IGRN}Downloading source files and patches \ +${IWHT}============${RST}\n" source download.sh retval=$? if [ "$retval" -ne 0 ]; then @@ -96,7 +97,7 @@ if [ "$retval" -ne 0 ]; then fi # Chapter 5 -printf "%b" "${IWHT}============ ${IGRN}Building ${IYLW}Chapter 5${IWHT} \ +printf "%b" "\n${IWHT}============ ${IGRN}Building ${IYLW}Chapter 5${IWHT} \ ============${RST}\n" for package in binutils gcc linux-api-headers glibc libstdc++; do source packageinstall.sh 5 $package @@ -107,7 +108,7 @@ for package in binutils gcc linux-api-headers glibc libstdc++; do done # Chapter 6 -printf "%b" "${IWHT}============ ${IGRN}Building ${IYLW}Chapter 6${IWHT} \ +printf "%b" "\n${IWHT}============ ${IGRN}Building ${IYLW}Chapter 6${IWHT} \ ============${RST}\n" for package in m4 ncurses bash coreutils diffutils file findutils gawk grep gzip make patch sed tar xz binutils gcc; do source packageinstall.sh 6 $package |