diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-01 14:19:15 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-01 14:19:15 -0500 |
commit | 5253d26a3350ba0c0e65dc7c7dac5d6f5891c6f6 (patch) | |
tree | c3c14769c9253d10407daf248b9bb3079389f55c /lfs.sh | |
parent | 79a47981f1216127baae6e6c8b94a54d116fb081 (diff) | |
parent | a1d58b89f285b39a36fbc4dbbf25316161d2db27 (diff) |
Merge branch 'cleanup' into chapter7
Diffstat (limited to 'lfs.sh')
-rwxr-xr-x | lfs.sh | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -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 |