diff options
Diffstat (limited to 'lfs.sh')
-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" |