changelog.xml 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. <sect1 id="ch01-changelog">
  2. <title>Changelog</title>
  3. <para>
  4. If, for example, a change is listed for chapter 5, it (usually) means the
  5. same change has been made in the corresponding chapter for the other
  6. architectures.
  7. </para>
  8. <para>
  9. &version; - &releasedate;
  10. </para>
  11. <itemizedlist>
  12. <listitem><para>
  13. Converted the SGML source to XML.
  14. </para></listitem>
  15. <listitem><para>
  16. Chapter 4: Tell the user to use cfdisk rather than fdisk. The fdisk man
  17. page recommends cfdisk over fdisk because it's more stable.
  18. </para></listitem>
  19. <listitem><para>
  20. Chapter 4: Changed the wording to make it more general as ext2 no
  21. longer is the only used file system. Reiserfs, for example, is often used
  22. too now.
  23. </para></listitem>
  24. <listitem><para>
  25. Chapter 4: Updated the directory list to be more FHS compliant. Mainly
  26. this meant adding the opt directories and removing /usr/tmp and
  27. /usr/local/tmp
  28. </para></listitem>
  29. <listitem><para>
  30. Chapter 5: Added static mawk, texinfo, and partially gettext to facilitate
  31. the move of Glibc from Chapter 5 to Chapter 6.
  32. </para></listitem>
  33. <listitem><para>
  34. Chapter 5: Added Makedev to chapter 5. We don't create the device files
  35. here, only copy the MAKEDEV script and make a temp copy which will be
  36. used to create device files. This second file (MAKEDEV-temp) doesn't
  37. contain user names and group names but only user id's and group id's. We
  38. need a few device files to get Glibc installed, but, before Glibc is
  39. installed, user and group names are not recognized yet, only the numeric
  40. id's. This requires a slightly modified MAKEDEV script which will be
  41. generated by patching the original one. This patching is done here in
  42. chapter 5. Also, fixed the explanations on both makedev installations.
  43. </para></listitem>
  44. <listitem><para>
  45. Chapter 5: Recommended to install all the software while logged in (or
  46. su'ed to) user root.
  47. </para></listitem>
  48. <listitem><para>
  49. Chapter 5: Simplified ln commands.
  50. </para></listitem>
  51. <listitem><para>
  52. Chapter 5: Removed prefix=$LFS/usr from tar's make install.
  53. </para></listitem>
  54. <listitem><para>
  55. Chapter 5: We now copy the kernel include directories instead of linking to
  56. them. This is theoretically safer if we plan on upgrading the kernel.
  57. </para></listitem>
  58. <listitem><para>
  59. Chapter 5+6: Removed fileutils-patch. After upgrading to fileutils-4.1
  60. the patch isn't needed anymore.
  61. </para></listitem>
  62. <listitem><para>
  63. Chapter 5+6: Added the fileutils-4.0 patch which is needed to compile
  64. the fileutils package on Glibc-2.2 based systems (such as the upcoming
  65. LFS-3.0 system).
  66. </para></listitem>
  67. <listitem><para>
  68. Chapter 5+6: Removed --disable-nls from configuration of programs that don't
  69. need it (bash, diffutils, gzip, sed, m4).
  70. </para></listitem>
  71. <listitem><para>
  72. Chapter 5+6: Changed from "cd dir &amp;&amp; make" to "make -C dir"
  73. (gettext-static, sysvinit).
  74. </para></listitem>
  75. <listitem><para>
  76. Chapter 5: Beautified the static link process for mawk.
  77. </para></listitem>
  78. <listitem><para>
  79. Chapter 5+6: Upgraded gcc-2.95.2 to gcc-2.95.2.1.
  80. </para></listitem>
  81. <listitem><para>
  82. Chapter 5: Changed the links we create during gcc-installation to
  83. $LFS/usr/bin/cpp.
  84. </para></listitem>
  85. <listitem><para>
  86. Chapter 5+6: Moved Glibc from chapter 5 to chapter 6.
  87. </para></listitem>
  88. <listitem><para>
  89. Chapter 5+6: Put back the instructions on how to copy/remove the old NSS library
  90. files, in case the original distribution uses glibc-2.0.x.
  91. </para></listitem>
  92. <listitem><para>
  93. Chapter 5: Added the notice about an old version of install-info.
  94. </para></listitem>
  95. <listitem><para>
  96. Chapter 5: Removed the installation of a static gettext.
  97. </para></listitem>
  98. <listitem><para>
  99. Chapter 6: Changed libexecdir=/usr/bin in fileutils to libexecdir=/bin.
  100. </para></listitem>
  101. <listitem><para>
  102. Chapter 6: Updated Glibc installation instructions. The 'configparms' file
  103. creation has been deleted. No need to pick a compiler (either distro's
  104. native or the /usr/local/gcc2952/bin/gcc one); we're in chroot
  105. now so we'll use the one we have.
  106. </para></listitem>
  107. <listitem><para>
  108. Chapter 6: Only copy the man pages from the ld.so package. We don't need
  109. the ldconfig and ldd programs anymore; Glibc-2.2.1 comes with good
  110. working versions.
  111. </para></listitem>
  112. <listitem><para>
  113. Chapter 6: Changed the procps installation from sed'ing to an easier way.
  114. </para></listitem>
  115. <listitem><para>
  116. Chapter 6: Added the creation of the lex symlink to the flex
  117. installation.
  118. </para></listitem>
  119. <listitem><para>
  120. Chapter 6: Changed $* into "$@" in the yacc script during bison's
  121. installation. "$@" allows usage of quoted arguments with blanks.
  122. </para></listitem>
  123. <listitem><para>
  124. Chapter 6: Fixed the man page installation during console-tools'
  125. installation.
  126. </para></listitem>
  127. <listitem><para>
  128. Chapter 6: When entering chroot, the $TERM variable inside chroot is set
  129. properly. This is accomplished by: chroot ... -i HOME=/root TERM=$TERM ...
  130. </para></listitem>
  131. <listitem><para>
  132. Chapter 6: Merged the different sulogin lines from the inittab file
  133. into one line.
  134. </para></listitem>
  135. <listitem><para>
  136. Chapter 6: Changed all "rm file &amp;&amp; ln -s dest file" into
  137. "ln -sf file" (in glibc, bzip2 and gzip installations).
  138. </para></listitem>
  139. <listitem><para>
  140. Chapter 6: Added a sed to fix a problem during glibc-installation.
  141. pt_chown can not be installed setuid root, because "root" is not known by
  142. glibc yet (kind of hen and egg-problem).
  143. </para></listitem>
  144. <listitem><para>
  145. Chapter 6: Changed consoledata/tools to kbd, which is more actively developed,
  146. and less of a pain to install.
  147. </para></listitem>
  148. <listitem><para>
  149. Chapter 6: Changed bin86's installation from "make PREFIX=/usr install"
  150. to "make INSTALL_OPTS="-m 755" PREFIX=/usr install". This will prevent
  151. install from invoking strip -s on the files. This fails because a
  152. couple of the installed files are shell scripts rather than programs,
  153. so they can't be stripped.
  154. </para></listitem>
  155. <listitem><para>
  156. Chapter 6: Removed the ld.so section since we only used the man pages and
  157. replaced it with a patch to man-pages.
  158. </para></listitem>
  159. <listitem><para>
  160. Chapter 7: Fixed the delays in the killproc function in the functions
  161. script. Now, after kill, first check PIDs, then sleep 2 if needed. More
  162. details can be read in the comments in the script itself.
  163. </para></listitem>
  164. <listitem><para>
  165. Chapter 7: Added the explanation how the runlevels and boot process
  166. works when using the LFS scripts.
  167. </para></listitem>
  168. <listitem><para>
  169. Chapter 7+8: Moved the creation of /etc/fstab to chapter 8.
  170. </para></listitem>
  171. <listitem><para>
  172. Chapter 10: Added this chapter. It contains "thanks and good luck"
  173. notes and suggest creating the /etc/lfs-&version; file.
  174. </para></listitem>
  175. <listitem><para>
  176. Appendix A: Added the description of the Netkit-base and Net-tools packages.
  177. </para></listitem>
  178. <listitem><para>
  179. Appendix A: Added missing descriptions of frcode, code and bigram in
  180. the findutils-4.1 package.
  181. </para></listitem>
  182. <listitem><para>
  183. Everywhere: Added numerous FHS compliance notes. These instructions can be
  184. followed if one wishes to build a fully FHS-compliant system.
  185. </para></listitem>
  186. </itemizedlist>
  187. </sect1>