Into chapter 10, updating notes.

This commit is contained in:
Shaun Setlock
2025-01-20 21:55:13 -05:00
parent d1a14a34c6
commit 7cb9acf7fe
4 changed files with 314 additions and 3 deletions

View File

@@ -0,0 +1,22 @@
# Set the package we're building.
package="lfs-bootscripts-20240825"
extension=".tar.xz"
# Decompress the source.
echo "Unpacking ${package}${extension} ..."
tar xvf ${package}${extension}
# Enter the unpacked sources.
echo "Entering ${package} directory ..."
cd ${package}
# LFS commands.
make install
# Exit sources directory.
echo "Exiting ${package} directory ..."
cd ..
# Remove the directory of source files.
echo "Removing ${package} directory ..."
rm -rf ${package}