Files
lfs/lfs-scripts/bootscripts.sh
2025-01-20 21:55:13 -05:00

23 lines
479 B
Bash

# 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}