aboutsummaryrefslogtreecommitdiffstats
path: root/lfs.sh
diff options
context:
space:
mode:
Diffstat (limited to 'lfs.sh')
-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"