diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-13 13:18:39 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-13 13:18:39 -0500 |
commit | 455f626a494bbdc20d30c0a4c91876b46303b6aa (patch) | |
tree | c7a2100f092e8a6aee720f57857dc78ff3103a6e /insidechroot.sh | |
parent | 137dd3cbadb9dad004cc1610dcea136b347d0015 (diff) | |
parent | 12cd3ceafb35ec95a834f3a2a1ec0a7f701e5699 (diff) |
Merge branch 'chapter9'
Diffstat (limited to 'insidechroot.sh')
-rw-r--r-- | insidechroot.sh | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/insidechroot.sh b/insidechroot.sh index 08eada0..35cc244 100644 --- a/insidechroot.sh +++ b/insidechroot.sh @@ -39,6 +39,29 @@ elif [[ "${CHAPTER}" -eq 8 ]]; then fi done +elif [[ "${CHAPTER}" -eq 9 ]]; then + + # Chapter 9 + printf "%b" "\n${IWHT}============ ${IGRN}Building ${IYLW}Chapter 9${IWHT} \ +============${RST}\n" + + source packageinstall.sh 9 lfs-bootscripts + retval=$? + if [[ "${retval}" -ne 0 ]]; then + exit 1 + fi + + printf "%b" "${GRN}Configuring network related files${RST}\n" + source chapter9/network.sh + printf "%b" "${GRN}Configuring bootscript related files${RST}\n" + source chapter9/bootscriptconf.sh + printf "%b" "${GRN}Configuring locale settings${RST}\n" + source chapter9/bashprofile.sh + printf "%b" "${GRN}Configuring inputrc${RST}\n" + source chapter9/inputrc.sh + printf "%b" "${GRN}Configuring system shells${RST}\n" + source chapter9/shells.sh + else - printf "%b" "Do Chapter 9 and 10 stuff here.\n" + printf "%b" "Do Chapter 10 stuff here.\n" fi |