diff --git a/chapter06/chapter06.xml b/chapter06/chapter06.xml
index 98cb8b4b6..27741424c 100644
--- a/chapter06/chapter06.xml
+++ b/chapter06/chapter06.xml
@@ -31,5 +31,6 @@
+
diff --git a/chapter06/llvm-pass2.xml b/chapter06/llvm-pass2.xml
index e9023c132..b112fffe6 100644
--- a/chapter06/llvm-pass2.xml
+++ b/chapter06/llvm-pass2.xml
@@ -164,7 +164,8 @@ cp -av dest/$LFS/tools/$LFS_TGT/include/* \
- Details on this package are located in TODO.
+ Details on this package are located in
+
diff --git a/chapter06/openssl.xml b/chapter06/openssl.xml
new file mode 100644
index 000000000..645a73259
--- /dev/null
+++ b/chapter06/openssl.xml
@@ -0,0 +1,94 @@
+
+
+ %general-entities;
+]>
+
+
+
+
+
+ openssl
+ &openssl-version;
+ &openssl-url;
+
+
+ OpenSSL-&openssl-version;
+
+
+ OpenSSL
+ tools
+
+
+
+
+
+ The OpenSSL package contains management tools and libraries relating
+ to cryptography. These are useful for providing cryptographic functions
+ to other packages, such as OpenSSH, email applications, and web browsers
+ (for accessing HTTPS sites).
+
+
+ &buildtime;
+ &diskspace;
+
+
+ &openssl-tmp-sbu;
+ &openssl-tmp-du;
+
+
+
+
+
+
+ Installation of OpenSSL
+
+ Prepare OpenSSL for compilation:
+
+./config --prefix=/usr \
+ --openssldir=/etc/ssl \
+ --libdir=lib \
+ --cross-compile-prefix=$LFS_TGT- \
+ shared \
+ linux-$(uname -m | sed 's/i[0-9]/x/')
+
+
+ The meaning of the configure options:
+
+
+ --cross-compile-prefix=$LFS_TGT-
+
+ Cross compile the package with the tools of which the name
+ is prefixed with $LFS_TGT-.
+
+
+
+
+ linux-$(uname -m | sed 's/i[0-9]/x/')
+
+ Specify the cross compile target. The
+ sed command guarantees
+ linux-x86 is selected for 32-bit x86.
+
+
+
+
+ Compile the package:
+
+make
+
+ Install the package:
+
+sed -i '/INSTALL_LIBS/s/libcrypto.a libssl.a//' Makefile
+make DESTDIR=$LFS MANSUFFIX=ssl install
+
+
+
+
+
+
+ Details on this package are located in TODO.
+
+
+
diff --git a/packages.ent b/packages.ent
index 2dd891ae5..f62966edd 100644
--- a/packages.ent
+++ b/packages.ent
@@ -553,6 +553,8 @@
+
+