diff --git a/chapter03/introduction.xml b/chapter03/introduction.xml
index 63ec046b5..d535b644e 100644
--- a/chapter03/introduction.xml
+++ b/chapter03/introduction.xml
@@ -74,6 +74,14 @@
wget --input-file=wget-list --continue --directory-prefix=$LFS/sources
+
+ The wget-list file mentioned above retrieves all
+ packages for both the sysV and systemd versions of LFS. There are a total
+ of five additional small packages not needed for the currrent book. The
+ md5sums file mentioned below is specific to the
+ current book.
+
+
Additionally, starting with LFS-7.0, there is a separate file,
md5sums, which can be used to verify that all
the correct packages are available before proceeding. Place that file in
diff --git a/chapter05/gcc-pass1.xml b/chapter05/gcc-pass1.xml
index 1ff7d50fe..765f5b875 100644
--- a/chapter05/gcc-pass1.xml
+++ b/chapter05/gcc-pass1.xml
@@ -80,25 +80,25 @@ cd build
Prepare GCC for compilation:
-../configure \
- --target=$LFS_TGT \
- --prefix=$LFS/tools \
- --with-glibc-version=2.11 \
- --with-sysroot=$LFS \
- --with-newlib \
- --without-headers \
- --enable-initfini-array \
- --disable-nls \
- --disable-shared \
- --disable-multilib \
- --disable-decimal-float \
- --disable-threads \
- --disable-libatomic \
- --disable-libgomp \
- --disable-libquadmath \
- --disable-libssp \
- --disable-libvtv \
- --disable-libstdcxx \
+../configure \
+ --target=$LFS_TGT \
+ --prefix=$LFS/tools \
+ --with-glibc-version=2.11 \
+ --with-sysroot=$LFS \
+ --with-newlib \
+ --without-headers \
+ --enable-initfini-array \
+ --disable-nls \
+ --disable-shared \
+ --disable-multilib \
+ --disable-decimal-float \
+ --disable-threads \
+ --disable-libatomic \
+ --disable-libgomp \
+ --disable-libquadmath \
+ --disable-libssp \
+ --disable-libvtv \
+ --disable-libstdcxx \
--enable-languages=c,c++
The meaning of the configure options: