diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-03-22 13:38:10 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-03-22 13:38:10 -0500 |
commit | 1cd3ffd75ec6ccd7bdd344ae7eeb9e8ee006b6e7 (patch) | |
tree | db70d154a22ec1b4b96c26fa06b5cd25650ad805 | |
parent | 8318628330f3d1db27e773cb986be79f2ea4b0c2 (diff) |
Add lines for preparing chroot and entering chroot. Add commented lines for chapter 6 cleanup and backup.
-rwxr-xr-x | lfs.sh | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -73,3 +73,20 @@ for package in m4 ncurses bash coreutils diffutils file findutils gawk grep gzip exit 1 fi done + +#source chapter6/cleanup.sh +#source chapter6/backup.sh + +chmod ugo+x preparechroot.sh +chmod ugo+x insidechroot.sh +echo -e "${CYN}PREPARING CHROOT ENVIRONMENT...${RST}" +sudo ./preparechroot.sh ${LFS} +echo -e "${CYN}ENTERING CHROOT ENVIRONMENT...${RST}" +sleep 3 + +sudo chroot "${LFS}" /usr/bin/env \ + HOME=/root \ + TERM=${TERM} \ + PS1='(lfs chroot) \u:\w\$ ' \ + PATH=/bin:/usr/bin:/sbin:/usr/sbin \ + /bin/bash --login +h -c "/sources/insidechroot.sh" |