diff options
Diffstat (limited to 'lfs.sh')
-rwxr-xr-x | lfs.sh | 23 |
1 files changed, 22 insertions, 1 deletions
@@ -229,7 +229,7 @@ sleep 3 # Create chapter9 log directory as non root user mkdir -p "${LFS}"/sources/log/chapter9 -# Enter CHROOT for chapter 9,10 +# Enter CHROOT for chapter 9 sudo chroot "${LFS}" /usr/bin/env -i \ HOME=/root \ TERM="${TERM}" \ @@ -244,3 +244,24 @@ retval=$? printf "%b" "\n${CYN}EXITED ${RED}CHROOT${RST} ENVIRONMENT...${RST}\n" +# Create chapter10 log directory as non root user +mkdir -p "${LFS}"/sources/log/chapter10 + +# Enter CHROOT for chapter 10 +sudo chroot "${LFS}" /usr/bin/env -i \ + HOME=/root \ + TERM="${TERM}" \ + PS1='(lfs chroot) \u:\w\$ ' \ + PATH=/bin:/usr/bin:/sbin:/usr/sbin \ + NUMPROCS="${NUMPROCS}" \ + MAKEFLAGS="${MAKEFLAGS}" \ + NINJAJOBS="${NINJAJOBS}" \ + SPINNER="${SPINNER}" \ + LFS_DISK="${LFS_DISK}" \ + LFS_PART="${LFS_PART}" \ + LFS_FS="${LFS_FS}" \ + /bin/bash --login +h -c "/sources/insidechroot.sh 10" +retval=$? + +printf "%b" "\n${CYN}EXITED ${RED}CHROOT${RST} ENVIRONMENT...${RST}\n" + |