diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-05 14:01:56 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-05 14:01:56 -0500 |
commit | 95106e41d0abc92a05384092c93f266dbd1bd9e7 (patch) | |
tree | 494fe70c951365d5681bbbc541fe094dbd7eb2a7 /lfs.sh | |
parent | 2d6c50cadac6a03f8b57e92c3bc2f7988d0ae6a6 (diff) |
Create directories and essential files outside of chroot. Then chroot. When stripping, exit status is not 0 when strip finds uknown formats. Just return true. Make createdirs, umountvirtfs and essential files as separate scripts.
Diffstat (limited to 'lfs.sh')
-rwxr-xr-x | lfs.sh | 13 |
1 files changed, 4 insertions, 9 deletions
@@ -143,6 +143,8 @@ chmod ugo+x insidechroot.sh printf "%b" "\n${CYN}PREPARING ${RED}CHROOT${CYN} ENVIRONMENT${RST}...\n" sudo ./preparechroot.sh "${LFS}" +source createdirs.sh +source essential.sh printf "%b" "\n${CYN}ENTERING ${RED}CHROOT${CYN} ENVIRONMENT${RST}...\n" sleep 3 @@ -155,19 +157,13 @@ sudo chroot "${LFS}" /usr/bin/env \ NUMPROCS="${NUMPROCS}" \ MAKEFLAGS="${MAKEFLAGS}" \ SPINNER="${SPINNER}" \ - TESTERUID="$(id -u)" \ /bin/bash --login +h -c "/sources/insidechroot.sh 7" retval=$? printf "%b" "\n${CYN}EXITED ${RED}CHROOT${RST} ENVIRONMENT...${RST}\n" # Cleanup and Backup if chapter 7 successfully finished -if [[ "$retval" -eq 7 ]]; then - printf "%b" "${GRN}Unmounting Virtual Kernel Filesystems...\n" - sudo umount "${LFS}"/dev/pts - sudo umount "${LFS}"/dev/ - sudo umount "${LFS}"/run - sudo umount "${LFS}"/sys - sudo umount "${LFS}"/proc +if [[ "$retval" -eq 0 ]]; then + source umountvirtfs.sh printf "%b" "\n${IWHT}======= ${IYLW}Chapter 7 ${IGRN}Cleanup and Backup \ ${IWHT}=======${RST}\n" @@ -192,7 +188,6 @@ sudo chroot "${LFS}" /usr/bin/env \ NUMPROCS="${NUMPROCS}" \ MAKEFLAGS="${MAKEFLAGS}" \ SPINNER="${SPINNER}" \ - TESTERUID="$(id -u)" \ /bin/bash --login +h -c "/sources/insidechroot.sh 8" printf "%b" "\n${CYN}EXITED ${RED}CHROOT${CYN} ENVIRONMENT${RST}...\n" |