diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-01 14:32:37 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-01 14:32:37 -0500 |
commit | 2b4a841c985ab4181ba47d030e18f577bcc3b06b (patch) | |
tree | 4c97bcb41c409df9522bd67c807744279bedd242 | |
parent | f1d3ffce825ce5f2e46d193efb0cdb172c5098eb (diff) | |
parent | 11146d2ca0de2864033b78a99fdec03663873757 (diff) |
Merge branch 'cleanup' into chapter7
-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 |