aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Harrington <kb0iic@berzerkula.org>2021-03-22 13:38:10 -0500
committerWilliam Harrington <kb0iic@berzerkula.org>2021-03-22 13:38:10 -0500
commit1cd3ffd75ec6ccd7bdd344ae7eeb9e8ee006b6e7 (patch)
treedb70d154a22ec1b4b96c26fa06b5cd25650ad805
parent8318628330f3d1db27e773cb986be79f2ea4b0c2 (diff)
Add lines for preparing chroot and entering chroot. Add commented lines for chapter 6 cleanup and backup.
-rwxr-xr-xlfs.sh17
1 files changed, 17 insertions, 0 deletions
diff --git a/lfs.sh b/lfs.sh
index 7d28cfa..57415f0 100755
--- a/lfs.sh
+++ b/lfs.sh
@@ -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"