changelog.xml 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
  4. <!ENTITY % general-entities SYSTEM "../general.ent">
  5. %general-entities;
  6. ]>
  7. <sect1 id="ch-scatter-changelog">
  8. <?dbhtml filename="changelog.html"?>
  9. <title>Changelog</title>
  10. <para>This is version &version; of the Linux From Scratch book, dated
  11. &releasedate;. If this book is more than six months old, a newer and better
  12. version is probably already available. To find out, please check one of the
  13. mirrors via <ulink url="&lfs-root;mirrors.html"/>.</para>
  14. <para>Below is a list of changes made since the previous release of the
  15. book.</para>
  16. <itemizedlist>
  17. <title>Changelog Entries:</title>
  18. <!-- Changelog template
  19. <listitem>
  20. <para>Date</para>
  21. <itemizedlist>
  22. <listitem>
  23. <para>[name] - New changelog entry.</para>
  24. </listitem>
  25. <listitem>
  26. <para>[name] - Previous changelog entry.</para>
  27. </listitem>
  28. </itemizedlist>
  29. </listitem>
  30. -->
  31. <listitem>
  32. <para>April 13, 2006</para>
  33. <itemizedlist>
  34. <listitem>
  35. <para>[archaic] - Merged the udev_update branch to trunk.</para>
  36. </listitem>
  37. </itemizedlist>
  38. </listitem>
  39. <listitem>
  40. <para>April 12, 2006</para>
  41. <itemizedlist>
  42. <listitem>
  43. <para>[jhuntwork] - Rewrote section explaining IP Addresses.
  44. Thanks Bryan Kadzban and Bruce Dubbs. Resolves Ticket 1663.</para>
  45. </listitem>
  46. <listitem>
  47. <para>[jhuntwork] - Added a pointer to GDBM in Berkeley DB page.
  48. Also added explanatory text concerning why LFS chose Debian's
  49. convention for storing man pages. Thanks to Tushar Teredesai and
  50. Alexander Patrakov. Resolves Ticket 1694.</para>
  51. </listitem>
  52. <listitem>
  53. <para>[jhuntwork] - Remove symlink of zsoelim to groff's soelim
  54. in chapter 6. Man-DB produces a sufficient zsoelim which overwrites
  55. the symlink we used to create.</para>
  56. </listitem>
  57. </itemizedlist>
  58. </listitem>
  59. <listitem>
  60. <para>April 11, 2006</para>
  61. <itemizedlist>
  62. <listitem>
  63. <para>[jhuntwork] - Updated bash-3.1 patch. (Ticket 1758)</para>
  64. </listitem>
  65. </itemizedlist>
  66. </listitem>
  67. <listitem>
  68. <para>April 8, 2006</para>
  69. <itemizedlist>
  70. <listitem>
  71. <para>[jhuntwork] - Added a command to create an empty /etc/mtab file early
  72. in chapter 6. This avoids testsuite failures in e2fsprogs and possibly other
  73. programs that expect /etc/mtab to be present. Explanation from Dan Nicholson,
  74. slightly modified. Also merged the 'Creating Essential Symlinks' section with
  75. 'Creating passwd, group and log Files'.</para>
  76. </listitem>
  77. </itemizedlist>
  78. </listitem>
  79. <listitem>
  80. <para>April 6, 2006</para>
  81. <itemizedlist>
  82. <listitem>
  83. <para>[manuel] - Placed home page (when available) and full download
  84. links for all packages in chapter03/packages.xml.</para>
  85. </listitem>
  86. <listitem>
  87. <para>[jhuntwork] - Merged alphabetical branch to trunk.</para>
  88. </listitem>
  89. </itemizedlist>
  90. </listitem>
  91. <listitem>
  92. <para>April 2, 2006</para>
  93. <itemizedlist>
  94. <listitem>
  95. <para>[archaic] - Moved the chowning of /tools to the end of chapter 5
  96. and rewrote note about backing up or re-using /tools. Moved the
  97. mounting of kernel filesystems before pkgmgt page and rewrote the page
  98. to mount --bind /dev and mount all other kernel filesystems while
  99. outside chroot. Rewrote note about re-entering chroot and remounting
  100. kernel filesystems. Removed /dev from the list of dirs created in
  101. chroot and added it before chroot.</para>
  102. </listitem>
  103. </itemizedlist>
  104. </listitem>
  105. <listitem>
  106. <para>March 30, 2006</para>
  107. <itemizedlist>
  108. <listitem>
  109. <para>[ken] - Correct my erroneous comment about UTF-8 locales in
  110. Man-DB. Thanks to Alexander for explaining it.</para>
  111. </listitem>
  112. <listitem>
  113. <para>[ken] - upgraded to Linux-2.6.16.1, Iproute2-2.6.16-060323,
  114. and Udev-088.</para>
  115. </listitem>
  116. </itemizedlist>
  117. </listitem>
  118. <listitem>
  119. <para>March 29, 2006</para>
  120. <itemizedlist>
  121. <listitem>
  122. <para>[ken] - Upgrade to shadow-4.0.15 and add convert-mans script
  123. to convert its UTF-8 man pages. Thanks to Alexander and Archaic for
  124. the script and commands. Fixes tickets #1748 and #1750.</para>
  125. </listitem>
  126. </itemizedlist>
  127. </listitem>
  128. <listitem>
  129. <para>March 22, 2006</para>
  130. <itemizedlist>
  131. <listitem>
  132. <para>[archaic] - Updated to
  133. lfs-bootscripts-udev_update-20060321.</para>
  134. </listitem>
  135. </itemizedlist>
  136. </listitem>
  137. <listitem>
  138. <para>March 21, 2006</para>
  139. <itemizedlist>
  140. <listitem>
  141. <para>[archaic] - Updated the bootscripts. Removed references to
  142. hotplug and the bootscripts udev patch. Removed reference to
  143. udevstart. Added text and commands for generating Udev bug reports.
  144. </para>
  145. </listitem>
  146. </itemizedlist>
  147. </listitem>
  148. <listitem>
  149. <para>March 18, 2006</para>
  150. <itemizedlist>
  151. <listitem>
  152. <para>[matthew] - Do not run configure manually for iproute2 as it
  153. is run automatically by the Makefile. Thanks to Chris Staub for the
  154. patch. Fixes ticket #1734.</para>
  155. </listitem>
  156. <listitem>
  157. <para>[matthew] - Make bzdiff use mktemp instead of the deprecated
  158. tempfile command. Thanks to Chris Staub for the patch. Fixes ticket
  159. #1713.</para>
  160. </listitem>
  161. <listitem>
  162. <para>[matthew] - Upgrade to flex-2.5.33.</para>
  163. </listitem>
  164. <listitem>
  165. <para>[matthew] - Upgrade to readline-5.1.004.</para>
  166. </listitem>
  167. <listitem>
  168. <para>[matthew] - Upgrade to bash-3.1.014.</para>
  169. </listitem>
  170. <listitem>
  171. <para>[matthew] - Upgrade to psmisc-22.2.</para>
  172. </listitem>
  173. <listitem>
  174. <para>[matthew] - Upgrade to file-4.17.</para>
  175. </listitem>
  176. <listitem>
  177. <para>[matthew] - Use updated version of the coreutils suppression
  178. patch to prevent coreutils version of the su man page from being
  179. installed. Fixes #1690.</para>
  180. </listitem>
  181. </itemizedlist>
  182. </listitem>
  183. <listitem>
  184. <para>March 11, 2006</para>
  185. <itemizedlist>
  186. <listitem>
  187. <para>[matthew] - Upgrade to GCC 4.0.3.</para>
  188. </listitem>
  189. </itemizedlist>
  190. </listitem>
  191. <listitem>
  192. <para>March 8, 2006</para>
  193. <itemizedlist>
  194. <listitem>
  195. <para>[matthew] - Upgrade to Man-pages 2.25.</para>
  196. </listitem>
  197. <listitem>
  198. <para>[matthew] - Remove an example of poor Udev support as it
  199. does not apply to the kernel used in the book. Thanks to Alexander
  200. Patrakov.</para>
  201. </listitem>
  202. <listitem>
  203. <para>[matthew] - Upgrade to Linux 2.6.15.6.</para>
  204. </listitem>
  205. <listitem>
  206. <para>[matthew] - Upgrade to udev-087.</para>
  207. </listitem>
  208. <listitem>
  209. <para>[matthew] - Udev's run_program rules require a null device to be
  210. present at an early stage, so create one in /lib/udev/devices.</para>
  211. </listitem>
  212. </itemizedlist>
  213. </listitem>
  214. <listitem>
  215. <para>March 7, 2006</para>
  216. <itemizedlist>
  217. <listitem>
  218. <para>[matthew] - Update Udev rules file to load SCSI modules and
  219. upload firmware to devices that need it. Improve explanations of
  220. device and module handling. Thanks to Alexander Patrakov.</para>
  221. </listitem>
  222. <listitem>
  223. <para>[archaic] - Replaced the debian-specific groff patch with an
  224. LFS-style patch.</para>
  225. </listitem>
  226. </itemizedlist>
  227. </listitem>
  228. <listitem>
  229. <para>March 3, 2006</para>
  230. <itemizedlist>
  231. <listitem>
  232. <para>[gerard] - Remove -D_GNU_SOURCE from chapter 5 - Patch. Thanks
  233. to Dan Nicholson for the patch.</para>
  234. </listitem>
  235. </itemizedlist>
  236. </listitem>
  237. <listitem>
  238. <para>March 1, 2006</para>
  239. <itemizedlist>
  240. <listitem>
  241. <para>[archaic] - Create the Udev directories before creating the
  242. symlinks.</para>
  243. </listitem>
  244. <listitem>
  245. <para>[jhuntwork] - Added a description of perl configure flags that
  246. help perl deal with a lack of groff. Thanks Dan Nicholson.</para>
  247. </listitem>
  248. </itemizedlist>
  249. </listitem>
  250. <listitem>
  251. <para>February 27, 2006</para>
  252. <itemizedlist>
  253. <listitem>
  254. <para>[archaic] - New bash fixes patch adds patch 011 from Bash
  255. upstream. Bash patch 010 broke quoting in certain situations.</para>
  256. </listitem>
  257. </itemizedlist>
  258. </listitem>
  259. <listitem>
  260. <para>February 20, 2006</para>
  261. <itemizedlist>
  262. <listitem>
  263. <para>[matthew] - Use non-deprecated format for accessing MODALIAS
  264. keys in the Udev rules file, and prevent the &quot;$&quot; from being
  265. expanded by the shell.</para>
  266. </listitem>
  267. <listitem>
  268. <para>[matthew] - Add patches 009 and 010 from Bash upstream.</para>
  269. </listitem>
  270. <listitem>
  271. <para>[matthew] - Upgrade to Man-pages 2.24.</para>
  272. </listitem>
  273. </itemizedlist>
  274. </listitem>
  275. <listitem>
  276. <para>February 19, 2006</para>
  277. <itemizedlist>
  278. <listitem>
  279. <para>[matthew] - Upgrade Perl libc patch to prevent Perl from trying
  280. to find headers on the host system. Fixes bug 1695.</para>
  281. </listitem>
  282. <listitem>
  283. <para>[matthew] - Expand the Udev module handling rule to run for
  284. every subsystem, not just USB.</para>
  285. </listitem>
  286. <listitem>
  287. <para>[matthew] - Upgrade to Linux 2.6.15.4.</para>
  288. </listitem>
  289. <listitem>
  290. <para>[matthew] - Upgrade to Udev 085.</para>
  291. </listitem>
  292. <listitem>
  293. <para>[matthew] - Install Sed's HTML documentation by using
  294. --enable-html instead of editing the Makefile. Thanks to Greg Schafer
  295. for the report and the fix.</para>
  296. </listitem>
  297. <listitem>
  298. <para>[matthew] - Add upstream fixes 001-002 for Readline.</para>
  299. </listitem>
  300. <listitem>
  301. <para>[matthew] - Add upstream fixes 001-008 for Bash.</para>
  302. </listitem>
  303. <listitem>
  304. <para>[matthew] - Upgrade to Sed 4.1.5.</para>
  305. </listitem>
  306. <listitem>
  307. <para>[matthew] - Upgrade to Man-pages 2.23.</para>
  308. </listitem>
  309. <listitem>
  310. <para>[matthew] - Upgrade to Coreutils-5.94.</para>
  311. </listitem>
  312. <listitem>
  313. <para>[matthew] - Upgrade to DB-4.4.20.</para>
  314. </listitem>
  315. <listitem>
  316. <para>[matthew] - Upgrade to Perl-5.8.8, removing the now unneeded
  317. vulnerability and DB module patches.</para>
  318. </listitem>
  319. <listitem>
  320. <para>[matthew] - Add the verbose parameter to a couple of commands in
  321. Linux-Libc-Headers and DB.</para>
  322. </listitem>
  323. <listitem>
  324. <para>[matthew] - Create udev specific directories in udev's
  325. instructions instead of the more generic creatingdirs.xml. Add
  326. &quot;pts&quot; and &quot;shm&quot; directories to
  327. <filename class="directory">/lib/udev/devices</filename> so that they
  328. can be mounted successfully at boot time.</para>
  329. </listitem>
  330. </itemizedlist>
  331. </listitem>
  332. <listitem>
  333. <para>February 10, 2006</para>
  334. <itemizedlist>
  335. <listitem>
  336. <para>[manuel] - Finished the XML indentation plus few tags
  337. changes.</para>
  338. </listitem>
  339. </itemizedlist>
  340. </listitem>
  341. <listitem>
  342. <para>February 8, 2006</para>
  343. <itemizedlist>
  344. <listitem>
  345. <para>[matthew] - Rewrite the majority of chapter07/udev.xml to
  346. reflect the new configuration for handling dynamic device naming and
  347. module loading.</para>
  348. </listitem>
  349. </itemizedlist>
  350. </listitem>
  351. <listitem>
  352. <para>February 3, 2006</para>
  353. <itemizedlist>
  354. <listitem>
  355. <para>[matthew] - Create the
  356. <filename class="directory">/lib/firmware</filename> directory that
  357. can be used by Udev's <command>firmware_helper</command> utility.
  358. </para>
  359. </listitem>
  360. <listitem>
  361. <para>[matthew] - Add descriptions of Udev's helper binaries.</para>
  362. </listitem>
  363. <listitem>
  364. <para>[manuel] - Add udev bootscript patch to whatsnew. Removed
  365. hotplug from list of packages to download.</para>
  366. </listitem>
  367. <listitem>
  368. <para>[ken] - Add udev bootscript patch to list of patches to
  369. download.</para>
  370. </listitem>
  371. <listitem>
  372. <para>[ken] - Correct the size of the udev tarball.</para>
  373. </listitem>
  374. </itemizedlist>
  375. </listitem>
  376. <listitem>
  377. <para>February 2, 2006</para>
  378. <itemizedlist>
  379. <listitem>
  380. <para>[matthew] - Upgrade to Udev-084 and build all its extras to
  381. enable custom rules to be written more easily. Also, change the
  382. rules file to handle kernel module loading and patch the udev
  383. bootscript to work with this version of udev.</para>
  384. </listitem>
  385. <listitem>
  386. <para>[matthew] - Remove the hotplug package and related bootscript
  387. Udev will now handle device creation and module loading.</para>
  388. </listitem>
  389. <listitem>
  390. <para>[matthew] - Upgrade to Linux-2.6.15.2.</para>
  391. </listitem>
  392. </itemizedlist>
  393. </listitem>
  394. <listitem>
  395. <para>January 30, 2006</para>
  396. <itemizedlist>
  397. <listitem>
  398. <para>[jhuntwork] - Adjust binutils-pass1 so we don't need to hang
  399. on to its source directories. Also use 'gcc -dumpmachine' instead
  400. of the MACHTYPE var.</para>
  401. </listitem>
  402. <listitem>
  403. <para>[jhuntwork] - Various textual corrections. Thanks Chris
  404. Staub.</para>
  405. </listitem>
  406. <listitem>
  407. <para>[jhuntwork] - Remove unnecessary LDFLAGS variables in binutils
  408. pass 1 and 2. Thanks Dan Nicholson.</para>
  409. </listitem>
  410. </itemizedlist>
  411. </listitem>
  412. <listitem>
  413. <para>January 29, 2006</para>
  414. <itemizedlist>
  415. <listitem>
  416. <para>[jhuntwork] - Restore the use of *startfile_prefix_spec.</para>
  417. </listitem>
  418. <listitem>
  419. <para>[jhuntwork] - Remove a spurious -i from the perl command when
  420. readjusting the toolchain. Thanks Dan Nicholson.</para>
  421. </listitem>
  422. </itemizedlist>
  423. </listitem>
  424. <listitem>
  425. <para>January 26, 2006</para>
  426. <itemizedlist>
  427. <listitem>
  428. <para>[jhuntwork] - Modify chapter 6 Glibc's make install command to
  429. allow test-installation.pl to run.</para>
  430. </listitem>
  431. <listitem>
  432. <para>[jhuntwork] - Adjust chapter 5 binutils to build a static ld-new
  433. for use in the chapter 6 readjusting section. Also add some extended
  434. sanity checks. These fixes are adapted from DIY-Linux and Greg Schafer.
  435. Thanks to Dan Nicholson for the report, as well.</para>
  436. </listitem>
  437. <listitem>
  438. <para>[jhuntwork] - Added 'nodump' to commands in the Package Management
  439. section.</para>
  440. </listitem>
  441. </itemizedlist>
  442. </listitem>
  443. <listitem>
  444. <para>January 25, 2006</para>
  445. <itemizedlist>
  446. <listitem>
  447. <para>[jhuntwork] - Remove ppc specific instructions from chapter 6
  448. patch. Cross-LFS can handle non-x86 arch specifics at this point.</para>
  449. </listitem>
  450. <listitem>
  451. <para>[jhuntwork] - Fix chapter 6 Glibc's test-installation.pl to test
  452. the correct Glibc. Fixes bug 1675. Thanks to Dan Nicholson for the report
  453. and Greg Schafer for the fix.</para>
  454. </listitem>
  455. <listitem>
  456. <para>[jhuntwork] - Fixed the re-adjusting of the toolchain in chapter
  457. 6 so that chapter 6 GCC and Binutils links against the proper Glibc and
  458. so that we don't have to keep the binutils directories from chapter 5.
  459. Also moved a note about saving the /tools directory to the beginning of
  460. chapter 6. Fixes bug 1677. Thanks to Chris Staub, Alexander Patrakov,
  461. Greg Schafer and Tushar Teredesai for reporting and resolving this
  462. issue.</para>
  463. </listitem>
  464. <listitem>
  465. <para>[matthew] - Upgrade coreutils i18n patch to version 2 to fix
  466. <command>sort -n</command> and add the en_US.UTF-8 locale to improve
  467. coreutils' test coverage. Fixes bugs 1688 and 1689. Thanks to
  468. Alexander Patrakov.</para>
  469. </listitem>
  470. <listitem>
  471. <para>[matthew] - Add information about package management. Thanks to
  472. the BLFS project for the text.</para>
  473. </listitem>
  474. </itemizedlist>
  475. </listitem>
  476. <listitem>
  477. <para>January 24, 2006</para>
  478. <itemizedlist>
  479. <listitem>
  480. <para>[matthew] - Upgrade to Groff-1.18.1.1-11.</para>
  481. </listitem>
  482. </itemizedlist>
  483. </listitem>
  484. <listitem>
  485. <para>January 23, 2006</para>
  486. <itemizedlist>
  487. <listitem>
  488. <para>[matthew] - Upgrade to Man-pages 2.21.</para>
  489. </listitem>
  490. <listitem>
  491. <para>[matthew] - Upgrade to Psmisc 22.1.</para>
  492. </listitem>
  493. <listitem>
  494. <para>[matthew] - Upgrade to Shadow 4.0.14.</para>
  495. </listitem>
  496. <listitem>
  497. <para>[matthew] - Install documentation for the Linux kernel. Thanks
  498. to Tushar for the report. Fixes bug 1683.</para>
  499. </listitem>
  500. <listitem>
  501. <para>[matthew] - Added a patch to enable Perl's DB_File module to
  502. compile with the latest version of Berkeley DB. Thanks to Alexander
  503. Patrakov for the patch.</para>
  504. </listitem>
  505. </itemizedlist>
  506. </listitem>
  507. <listitem>
  508. <para>January 20, 2006</para>
  509. <itemizedlist>
  510. <listitem>
  511. <para>[jhuntwork] - Added a patch to fix the sprintf security
  512. vulnerability in Perl. Thanks to Tim van der Molen for pointing
  513. it out.</para>
  514. </listitem>
  515. </itemizedlist>
  516. </listitem>
  517. <listitem>
  518. <para>January 17, 2006</para>
  519. <itemizedlist>
  520. <listitem>
  521. <para>[jhuntwork] - Fixed locale generation for French UTF-8. Thanks
  522. to Dan McGhee for the report and Alexander Patrakov for the fix.</para>
  523. </listitem>
  524. </itemizedlist>
  525. </listitem>
  526. <listitem>
  527. <para>January 10, 2006</para>
  528. <itemizedlist>
  529. <listitem>
  530. <para>[ken]: Define YYENABLE_NLS in bison, to resolve a code
  531. difference shown up by Iterative Comparison Analysis. Thanks
  532. to Greg Schafer.</para>
  533. </listitem>
  534. <listitem>
  535. <para>[ken]: Revert my move of mktemp and add a sed to correct
  536. gccbug.</para>
  537. </listitem>
  538. </itemizedlist>
  539. </listitem>
  540. <listitem>
  541. <para>January 7, 2006</para>
  542. <itemizedlist>
  543. <listitem>
  544. <para>[ken]: Alter the Perl instructions to always create an
  545. /etc/hosts file. This fixes a potential difference in the
  546. 'hostcat' recorded in Config_heavy.pl. Thanks to Bryan Kadzban
  547. for explaining this.</para>
  548. </listitem>
  549. <listitem>
  550. <para>[ken]: Move grep ahead of libtool, so that the latter
  551. will correctly reference /bin/grep in references to EGREP.</para>
  552. </listitem>
  553. <listitem>
  554. <para>[ken]: Move mktemp ahead of gcc so that gccbug will
  555. use mktemp.</para>
  556. </listitem>
  557. <listitem>
  558. <para>[ken]: Give Berkeley DB its full name, and remove the
  559. '-lpthread' overrides. Also add pointer to BLFS, thanks to
  560. Randy McMurchy.</para>
  561. </listitem>
  562. </itemizedlist>
  563. </listitem>
  564. <listitem>
  565. <para>January 5, 2006</para>
  566. <itemizedlist>
  567. <listitem>
  568. <para>[jhuntwork]: Remove mention of news server until we actually
  569. have one. Thanks Randy.</para>
  570. </listitem>
  571. <listitem>
  572. <para>[jhuntwork]: Initial addition of UTF-8 support. Thanks to
  573. Alexander Patrakov.</para>
  574. </listitem>
  575. </itemizedlist>
  576. </listitem>
  577. <listitem>
  578. <para>January 3, 2006</para>
  579. <itemizedlist>
  580. <listitem>
  581. <para>[matt]: Clarify the description of mktemp's --with-libc
  582. configure parameter (fixes bug 1667).</para>
  583. </listitem>
  584. <listitem>
  585. <para>[matt]: Upgrade to libtool 1.5.22.</para>
  586. </listitem>
  587. <listitem>
  588. <para>[matt]: Upgrade to man-pages 2.18.</para>
  589. </listitem>
  590. <listitem>
  591. <para>[matt]: Remove the -v flag from the example mkswap command in
  592. chapter 2 as it does not affect verbosity (fixes bug 1674).</para>
  593. </listitem>
  594. </itemizedlist>
  595. </listitem>
  596. <listitem>
  597. <para>December 31, 2005</para>
  598. <itemizedlist>
  599. <listitem>
  600. <para>[ken]: Alter installation of Linux Libc asm Headers in chroot,
  601. to be repeatable.</para>
  602. </listitem>
  603. </itemizedlist>
  604. </listitem>
  605. <listitem>
  606. <para>December 23, 2005</para>
  607. <itemizedlist>
  608. <listitem>
  609. <para>[jim]: Corrected version on Vim symlink</para>
  610. </listitem>
  611. </itemizedlist>
  612. </listitem>
  613. <listitem>
  614. <para>December 21, 2005</para>
  615. <itemizedlist>
  616. <listitem>
  617. <para>[matt]: Correctly symlink Vim's documentation to /usr/share/doc.
  618. Thanks to Jeremy for the report and the fix.</para>
  619. </listitem>
  620. </itemizedlist>
  621. </listitem>
  622. <listitem>
  623. <para>December 17, 2005</para>
  624. <itemizedlist>
  625. <listitem>
  626. <para>[matt]: Pass a valid path to module-init-tools' --prefix
  627. configure switch and remove the now unnecessary --mandir switch</para>
  628. </listitem>
  629. <listitem>
  630. <para>[matt]: Symlink Vim's documentation to /usr/share/doc. Fixes
  631. bug 1610. Thanks to Randy McMurchy for the original report and to
  632. Ken and Jeremy for their investigations into the fix.</para>
  633. </listitem>
  634. <listitem>
  635. <para>[matt]: Upgrade to psmisc-21.9</para>
  636. </listitem>
  637. <listitem>
  638. <para>[matt]: Upgrade to man-pages-2.17</para>
  639. </listitem>
  640. </itemizedlist>
  641. </listitem>
  642. <listitem>
  643. <para>December 16, 2005</para>
  644. <itemizedlist>
  645. <listitem>
  646. <para>[jhuntwork]: Move Procps to before Perl in chapter 6. Perl's
  647. testsuite uses 'ps'.</para>
  648. </listitem>
  649. </itemizedlist>
  650. </listitem>
  651. <listitem>
  652. <para>December 13, 2005</para>
  653. <itemizedlist>
  654. <listitem>
  655. <para>[jhuntwork]: Install Tcl's internal headers to /tools/include,
  656. allowing us to drop its source directory right away. Origin is
  657. Greg Schafer, and thanks to Dan Nicholson for the report (fixes
  658. bug 1670).</para>
  659. </listitem>
  660. </itemizedlist>
  661. </listitem>
  662. <listitem>
  663. <para>December 12, 2005</para>
  664. <itemizedlist>
  665. <listitem>
  666. <para>[jhuntwork]: Updated texinfo patch. Fixes segfault issues
  667. with texindex. Thanks to Randy McMurchy for the report and Bruce
  668. Dubbs and Joe Ciccone for the fix.</para>
  669. </listitem>
  670. </itemizedlist>
  671. </listitem>
  672. <listitem>
  673. <para>December 11, 2005</para>
  674. <itemizedlist>
  675. <listitem>
  676. <para>[jhuntwork]: Upgrade to tcl-8.4.12</para>
  677. </listitem>
  678. <listitem>
  679. <para>[jhuntwork]: Upgrade to less-394.</para>
  680. </listitem>
  681. <listitem>
  682. <para>[jhuntwork]: Upgrade to readline-5.1. Also removed bash-3.0
  683. and readline-5.0 specific patches.</para>
  684. </listitem>
  685. <listitem>
  686. <para>[jhuntwork]: Upgrade to bash-3.1. Also fixed Tcl to work with
  687. the new bash version. Thanks to Alexander Patrakov and ultimately,
  688. Greg Schafer for the fix.</para>
  689. </listitem>
  690. <listitem>
  691. <para>[jhuntwork]: Changed variable used in readline for linking
  692. in ncurses. Thanks to Alexander Patrakov for the fix.</para>
  693. </listitem>
  694. </itemizedlist>
  695. </listitem>
  696. <listitem>
  697. <para>December 9, 2005</para>
  698. <itemizedlist>
  699. <listitem>
  700. <para>[matt]: Upgrade to man-pages-2.16</para>
  701. </listitem>
  702. <listitem>
  703. <para>[matt]: Upgrade to module-init-tools-3.2.2
  704. </para>
  705. </listitem>
  706. <listitem>
  707. <para>[matt]: Upgrade to findutils-4.2.27</para>
  708. </listitem>
  709. </itemizedlist>
  710. </listitem>
  711. <listitem>
  712. <para>December 7, 2005</para>
  713. <itemizedlist>
  714. <listitem>
  715. <para>[matt]: Mention the testsuites (or lack of them) for all
  716. packages (fixes bug 1664). Thanks to Chris Staub for the report
  717. and analysis of affected packages.</para>
  718. </listitem>
  719. </itemizedlist>
  720. </listitem>
  721. <listitem>
  722. <para>November 26, 2005</para>
  723. <itemizedlist>
  724. <listitem>
  725. <para>[matt]: Don't install the Linuxthreads man pages, the POSIX
  726. threading API is documented in the man3p section provided by the
  727. man-pages package (fixes bug 1660).</para>
  728. </listitem>
  729. <listitem>
  730. <para>[matt]: Remove the incorrect note about not having to dump/check
  731. a journalled filesystem (fixes bug 1662).</para>
  732. </listitem>
  733. <listitem>
  734. <para>[matt]: Upgrade to module-init-tools 3.2.1.</para>
  735. </listitem>
  736. <listitem>
  737. <para>[matt]: Prevent installing the internationalized man pages
  738. for Shadow's <command>groups</command> binary (thanks to Randy
  739. McMurchy for the report).</para>
  740. </listitem>
  741. <listitem>
  742. <para>[matt]: Upgrade to man-pages 2.14.</para>
  743. </listitem>
  744. <listitem>
  745. <para>[matt]: Upgrade to findutils-4.2.26</para>
  746. </listitem>
  747. <listitem>
  748. <para>[manuel]: Changed --strip-path to --strip-components in the
  749. unpack of module-init-tools-testsuite package.</para>
  750. </listitem>
  751. </itemizedlist>
  752. </listitem>
  753. <listitem>
  754. <para>November 24, 2005</para>
  755. <itemizedlist>
  756. <listitem>
  757. <para>[matt]: LFS-6.1.1-pre2 release.</para>
  758. </listitem>
  759. </itemizedlist>
  760. </listitem>
  761. <listitem>
  762. <para>November 23, 2005</para>
  763. <itemizedlist>
  764. <listitem>
  765. <para>[gerard]: Corrected reference to 'man page' to 'HTML
  766. documentation' in chapter 6/sec</para>
  767. </listitem>
  768. </itemizedlist>
  769. </listitem>
  770. <listitem>
  771. <para>November 18, 2005</para>
  772. <itemizedlist>
  773. <listitem>
  774. <para>[manuel]: Fixed the unpack of the module-init-tools-testsuite
  775. package.</para>
  776. </listitem>
  777. </itemizedlist>
  778. </listitem>
  779. <listitem>
  780. <para>November 17, 2005</para>
  781. <itemizedlist>
  782. <listitem>
  783. <para>[matt]: LFS-6.1.1-pre1 release.</para>
  784. </listitem>
  785. </itemizedlist>
  786. </listitem>
  787. <listitem>
  788. <para>November 16, 2005</para>
  789. <itemizedlist>
  790. <listitem>
  791. <para>[jhuntwork]: Textual correction concerning gettext in
  792. chapter 5 and the use of --disable-shared</para>
  793. </listitem>
  794. </itemizedlist>
  795. </listitem>
  796. <listitem>
  797. <para>November 15, 2005</para>
  798. <itemizedlist>
  799. <listitem>
  800. <para>[archaic]: Changed the chapter 6 Perl Dpager configure option
  801. to reflect the new location of the less binary.</para>
  802. </listitem>
  803. </itemizedlist>
  804. </listitem>
  805. <listitem>
  806. <para>November 14, 2005</para>
  807. <itemizedlist>
  808. <listitem>
  809. <para>[jhuntwork]: Only install <command>msgfmt</command> from
  810. gettext in chapter 5. This is all that is necessary and prevents
  811. gettext from trying to pull in unnecessary elements from the host.
  812. Thanks to Greg Schafer for pointing this out.</para>
  813. </listitem>
  814. </itemizedlist>
  815. </listitem>
  816. <listitem>
  817. <para>November 12, 2005</para>
  818. <itemizedlist>
  819. <listitem>
  820. <para>[matt]: Improve the heuristic for determining a locale that
  821. is supported by both Glibc and packages outside LFS (bug 1642).
  822. Many thanks to Alexander Patrakov for highlighting the numerous
  823. issues and for reviewing the various suggested fixes.</para>
  824. </listitem>
  825. <listitem>
  826. <para>[jhuntwork]: Move sed to earlier in the build.</para>
  827. </listitem>
  828. <listitem>
  829. <para>[jhuntwork]: Move m4 to earlier in the build. Thanks
  830. Chris Staub.</para>
  831. </listitem>
  832. </itemizedlist>
  833. </listitem>
  834. <listitem>
  835. <para>November 11, 2005</para>
  836. <itemizedlist>
  837. <listitem>
  838. <para>[matt]: Omit running Bzip2's testsuite as a separate step,
  839. as <command>make</command> runs it automatically (bug 1652).</para>
  840. </listitem>
  841. </itemizedlist>
  842. </listitem>
  843. <listitem>
  844. <para>November 10, 2005</para>
  845. <itemizedlist>
  846. <listitem>
  847. <para>[jhuntwork]: Initial re-ordering of packages. Thanks to
  848. Chris Staub (bug 684).</para>
  849. </listitem>
  850. </itemizedlist>
  851. </listitem>
  852. <listitem>
  853. <para>November 7, 2005</para>
  854. <itemizedlist>
  855. <listitem>
  856. <para>[matt]: Install the binaries from Less to /usr/bin instead
  857. of /bin (fixes bug 1643).</para>
  858. </listitem>
  859. <listitem>
  860. <para>[matt]: Remove the --libexecdir option from both passes of
  861. GCC in chapter 5 (fixes bug 1646). Also change the --libexecdir
  862. option for Findutils to conform with the /usr/lib/packagename
  863. convention already prevalent in the book (fixes bug 1644).</para>
  864. </listitem>
  865. </itemizedlist>
  866. </listitem>
  867. <listitem>
  868. <para>November 6, 2005</para>
  869. <itemizedlist>
  870. <listitem>
  871. <para>[matt]: Remove the optimization related warnings from the
  872. toolchain packages (bug 1650).</para>
  873. </listitem>
  874. <listitem>
  875. <para>[matt]: Install Vim's documentation to
  876. /usr/share/doc/vim-&vim-version; instead of /usr/share/vim/vim64/doc
  877. (bug 1610). Thanks to Randy McMurchy for the report, and Jeremy
  878. Huntwork for the fix.</para>
  879. </listitem>
  880. <listitem>
  881. <para>[matt]: Stop Udev from killing udevd processes on the host
  882. system (fixes bug 1651). Thanks to Alexander Patrakov for the
  883. report and the fix.</para>
  884. </listitem>
  885. <listitem>
  886. <para>[matt]: Upgrade to Coreutils 5.93.</para>
  887. </listitem>
  888. <listitem>
  889. <para>[matt]: Upgrade to Psmisc 21.8.</para>
  890. </listitem>
  891. <listitem>
  892. <para>[matt]: Upgrade to Glibc 2.3.6.</para>
  893. </listitem>
  894. </itemizedlist>
  895. </listitem>
  896. <listitem>
  897. <para>November 5, 2005</para>
  898. <itemizedlist>
  899. <listitem>
  900. <para>[matt]: Add a note to the toolchain sanity check in chapter 5
  901. to explain that if TCL fails to build, it's an indication of a broken
  902. toolchain (bug 1581).</para>
  903. </listitem>
  904. </itemizedlist>
  905. </listitem>
  906. <listitem>
  907. <para>November 3, 2005</para>
  908. <itemizedlist>
  909. <listitem>
  910. <para>[matt]: Upgrade to man-pages 2.13.</para>
  911. </listitem>
  912. <listitem>
  913. <para>[matt]: Correct the instructions for running Module-Init-Tools'
  914. testsuite (fixes bug 1597). Thanks to Greg Schafer, Tushar Teredesai
  915. and to Randy McMurchy for providing the patch.</para>
  916. </listitem>
  917. </itemizedlist>
  918. </listitem>
  919. <listitem>
  920. <para>October 31, 2005</para>
  921. <itemizedlist>
  922. <listitem>
  923. <para>[matt]: Upgrade to shadow-4.0.13.</para>
  924. </listitem>
  925. <listitem>
  926. <para>[matt]: Upgrade to vim-6.4.</para>
  927. </listitem>
  928. <listitem>
  929. <para>[matt]: Upgrade to procps-3.2.6.</para>
  930. </listitem>
  931. <listitem>
  932. <para>[matt]: Build udev_run_devd and udev_run_hotplugd and alter
  933. the udev rules file so that udev once again executes programs in
  934. the /etc/dev.d and /etc/hotplug.d directories (fixes bug 1635).
  935. Also change the udev rules to prevent udev from handling the "card"
  936. and "dm" devices as these are managed entirely by programs outside
  937. of LFS.</para>
  938. </listitem>
  939. </itemizedlist>
  940. </listitem>
  941. <listitem>
  942. <para>October 29, 2005</para>
  943. <itemizedlist>
  944. <listitem>
  945. <para>[matt]: Upgrade to udev-071</para>
  946. </listitem>
  947. <listitem>
  948. <para>[matt]: Upgrade to man-pages 2.11.</para>
  949. </listitem>
  950. <listitem>
  951. <para>[matt]: Upgrade to coreutils-5.92. This involved removing
  952. the DEFAULT_POSIX2_VERSION environment variable as it is no longer
  953. required. The testsuite also requires the Data::Dumper module from
  954. Perl, so it is now built in chapter05/perl.xml.</para>
  955. </listitem>
  956. </itemizedlist>
  957. </listitem>
  958. <listitem>
  959. <para>October 22, 2005</para>
  960. <itemizedlist>
  961. <listitem>
  962. <para>[archaic]: Upgrade to m4-1.4.4.</para>
  963. </listitem>
  964. </itemizedlist>
  965. </listitem>
  966. <listitem>
  967. <para>October 21, 2005</para>
  968. <itemizedlist>
  969. <listitem>
  970. <para>[matt]: Upgrade to file-4.16.</para>
  971. </listitem>
  972. <listitem>
  973. <para>[matt]: Upgrade to man-pages 2.10.</para>
  974. </listitem>
  975. <listitem>
  976. <para>[matt]: Upgrade to ncurses 5.5.</para>
  977. </listitem>
  978. </itemizedlist>
  979. </listitem>
  980. <listitem>
  981. <para>October 15, 2005</para>
  982. <itemizedlist>
  983. <listitem>
  984. <para>[matt]: Upgrade to man-pages 2.09.</para>
  985. </listitem>
  986. <listitem>
  987. <para>[matt]: Use an updated version of the Udev rules file
  988. (fixes bug 1639).</para>
  989. </listitem>
  990. <listitem>
  991. <para>[matt]: Add a cdrom group as required by the Udev rules
  992. file</para>
  993. </listitem>
  994. </itemizedlist>
  995. </listitem>
  996. <listitem>
  997. <para>October 9, 2005</para>
  998. <itemizedlist>
  999. <listitem>
  1000. <para>[matt]: Emphasise the fact that one must delete the source
  1001. directory after each package has been installed. Fixes bug 1638.
  1002. Thanks to Chris Staub.</para>
  1003. </listitem>
  1004. </itemizedlist>
  1005. </listitem>
  1006. <listitem>
  1007. <para>October 8, 2005</para>
  1008. <itemizedlist>
  1009. <listitem>
  1010. <para>[archaic]: Added patch to fix poor tempfile creation in
  1011. Texinfo-4.8 that can lead to a symlink attack.</para>
  1012. </listitem>
  1013. <listitem>
  1014. <para>[matt]: Upgrade to iproute2-051007.</para>
  1015. </listitem>
  1016. </itemizedlist>
  1017. </listitem>
  1018. <listitem>
  1019. <para>October 7, 2005</para>
  1020. <itemizedlist>
  1021. <listitem>
  1022. <para>[matt]: Upgrade to gcc-4.0.2.</para>
  1023. </listitem>
  1024. </itemizedlist>
  1025. </listitem>
  1026. <listitem>
  1027. <para>October 4, 2005</para>
  1028. <itemizedlist>
  1029. <listitem>
  1030. <para>[matt]: Prevent GCC from running the <command>fixincludes</command>
  1031. script in chapter5 pass2 and chapter 6 (fixes bug 1636). Thanks to Tushar
  1032. and Greg for their contributions on this issue.</para>
  1033. </listitem>
  1034. </itemizedlist>
  1035. </listitem>
  1036. <listitem>
  1037. <para>September 29, 2005</para>
  1038. <itemizedlist>
  1039. <listitem>
  1040. <para>[matt]: Add more explicit reader prerequisites (fixes
  1041. bug 1629).</para>
  1042. </listitem>
  1043. <listitem>
  1044. <para>[matt]: Add <option>-v</option> to commands that accept it
  1045. (fixes bug 1612).</para>
  1046. </listitem>
  1047. </itemizedlist>
  1048. </listitem>
  1049. <listitem>
  1050. <para>September 26, 2005</para>
  1051. <itemizedlist>
  1052. <listitem>
  1053. <para>[matt]: Upgrade to man-pages-2.08.</para>
  1054. </listitem>
  1055. </itemizedlist>
  1056. </listitem>
  1057. <listitem>
  1058. <para>September 24, 2005</para>
  1059. <itemizedlist>
  1060. <listitem>
  1061. <para>[matt]: Upgrade to gawk-3.1.5.</para>
  1062. </listitem>
  1063. <listitem>
  1064. <para>[matt]: Upgrade to man-1.6b.</para>
  1065. </listitem>
  1066. <listitem>
  1067. <para>[matt]: Upgrade to util-linux-2.12r.</para>
  1068. </listitem>
  1069. </itemizedlist>
  1070. </listitem>
  1071. <listitem>
  1072. <para>September 20, 2005</para>
  1073. <itemizedlist>
  1074. <listitem>
  1075. <para>[matt]: Upgrade to bison-2.1.</para>
  1076. </listitem>
  1077. </itemizedlist>
  1078. </listitem>
  1079. <listitem>
  1080. <para>September 17, 2005</para>
  1081. <itemizedlist>
  1082. <listitem>
  1083. <para>[matt]: Upgrade to udev-070 and remove the unnecessary
  1084. &quot;udevdir=/dev&quot; parameter.</para>
  1085. </listitem>
  1086. <listitem>
  1087. <para>[matt]: Added patch for coreutils to improve echo's POSIX
  1088. and bash compatibility and to recognise &quot;\xhh&quot; syntax
  1089. as required by the test suite in udev-069 and later.</para>
  1090. </listitem>
  1091. </itemizedlist>
  1092. </listitem>
  1093. <listitem>
  1094. <para>September 15, 2005</para>
  1095. <itemizedlist>
  1096. <listitem>
  1097. <para>[archaic]: Added patch for util-linux to prevent a umount
  1098. vulnerability.</para>
  1099. </listitem>
  1100. </itemizedlist>
  1101. </listitem>
  1102. <listitem>
  1103. <para>September 8, 2005</para>
  1104. <itemizedlist>
  1105. <listitem>
  1106. <para>[jhuntwork]: Upgrade to groff-1.19.2</para>
  1107. </listitem>
  1108. </itemizedlist>
  1109. </listitem>
  1110. <listitem>
  1111. <para>September 6, 2005</para>
  1112. <itemizedlist>
  1113. <listitem>
  1114. <para>[ken]: Reworded the glibc text to expect test failures.</para>
  1115. </listitem>
  1116. </itemizedlist>
  1117. </listitem>
  1118. <listitem>
  1119. <para>September 5, 2005</para>
  1120. <itemizedlist>
  1121. <listitem>
  1122. <para>[ken]: Add patch to fix some of the math tests in glibc.</para>
  1123. </listitem>
  1124. </itemizedlist>
  1125. </listitem>
  1126. <listitem><para>September 4, 2005</para>
  1127. <itemizedlist>
  1128. <listitem>
  1129. <para>[matt]: Add patch to stop <command>cfdisk</command> segfaulting
  1130. when invoked on devices with partitions that don't contain an ext2,
  1131. ext3, xfs or jfs filesystem (see bug 1604)</para>
  1132. </listitem>
  1133. <listitem>
  1134. <para>[matt]: Upgrade to libtool-1.5.20</para>
  1135. </listitem>
  1136. <listitem>
  1137. <para>[matt]: Upgrade to findutils-4.2.25</para>
  1138. </listitem>
  1139. </itemizedlist>
  1140. </listitem>
  1141. <listitem>
  1142. <para>September 2, 2005</para>
  1143. <itemizedlist>
  1144. <listitem>
  1145. <para>[matt]: The optimization flag for util-linux comes from
  1146. <filename>configure</filename> rather than <filename>MCONFIG</filename>,
  1147. so adjust the <command>sed</command> in order for the segfault fix
  1148. to actually work.</para>
  1149. </listitem>
  1150. <listitem>
  1151. <para>[matt]: Avoid the potential race condition when invoking
  1152. <command>find</command> to remove GCC's fixed headers.</para>
  1153. </listitem>
  1154. </itemizedlist>
  1155. </listitem>
  1156. <listitem>
  1157. <para>August 30th, 2005</para>
  1158. <itemizedlist>
  1159. <listitem>
  1160. <para>[matt]: Work around a segfault in cfdisk by compiling with -O
  1161. instead of the default -O2 optimization setting (fixes bug 1604).</para>
  1162. </listitem>
  1163. <listitem>
  1164. <para>[matt]: Update the inetutils patch to use the upstream fix
  1165. for GCC-4.x compilation problems (fixes bug 1602).</para>
  1166. </listitem>
  1167. <listitem>
  1168. <para>[matt]: Upgrade to shadow-2.0.12</para>
  1169. </listitem>
  1170. <listitem>
  1171. <para>[ken]: Remove <command>sed -i</command> commands from
  1172. gcc-pass2.</para>
  1173. </listitem>
  1174. </itemizedlist>
  1175. </listitem>
  1176. <listitem>
  1177. <para>August 28th, 2005</para>
  1178. <itemizedlist>
  1179. <listitem>
  1180. <para>[jhuntwork]: Adjusted tar commands in Bash and Glibc chapter 6
  1181. builds for consistency</para>
  1182. </listitem>
  1183. </itemizedlist>
  1184. </listitem>
  1185. <listitem>
  1186. <para>August 23rd, 2005</para>
  1187. <itemizedlist>
  1188. <listitem>
  1189. <para>[matt]: <command>find</command> may fail due to a race
  1190. condition when deleting files. Remove the &amp;&amp; construct in
  1191. chapter05/adjusting.xml so that the rest of the commands for removing
  1192. fixed headers will be executed (fixes bug 1621).</para>
  1193. </listitem>
  1194. <listitem>
  1195. <para>[matt]: Install Udev's documentation relating to configuring
  1196. rules (fixes bug 1622)</para>
  1197. </listitem>
  1198. <listitem>
  1199. <para>[matt]: Upgrade to Man-1.6a</para>
  1200. </listitem>
  1201. </itemizedlist>
  1202. </listitem>
  1203. <listitem>
  1204. <para>August 20th, 2005</para>
  1205. <itemizedlist>
  1206. <listitem>
  1207. <para>[matt]: Stop moving some of coreutils binaries to /bin as
  1208. they aren't required to be there (fixes bug 1620).</para>
  1209. </listitem>
  1210. </itemizedlist>
  1211. </listitem>
  1212. <listitem>
  1213. <para>August 19th, 2005</para>
  1214. <itemizedlist>
  1215. <listitem>
  1216. <para>[matt]: Upgrade to Udev-068</para>
  1217. </listitem>
  1218. <listitem>
  1219. <para>[matt]: Upgrade to IANA-etc-2.00</para>
  1220. </listitem>
  1221. <listitem>
  1222. <para>[matt]: Upgrade to file-4.15</para>
  1223. </listitem>
  1224. </itemizedlist>
  1225. </listitem>
  1226. <listitem>
  1227. <para>August 18th, 2005</para>
  1228. <itemizedlist>
  1229. <listitem>
  1230. <para>[matt]: Simplify the method for finding where GCC's default
  1231. specs file and private include directory live. Additionally, don't
  1232. assume the host's sed supports the -i switch.</para>
  1233. </listitem>
  1234. <listitem>
  1235. <para>[ken]: Add a patch to sanitise bzgrep's handling of
  1236. filenames.</para>
  1237. </listitem>
  1238. </itemizedlist>
  1239. </listitem>
  1240. <listitem>
  1241. <para>August 16th, 2005</para>
  1242. <itemizedlist>
  1243. <listitem>
  1244. <para>[matt]: Install sed's man page to /usr/share/doc/sed-4.1.4
  1245. instead of /usr/share/doc (fixes bug 1600).</para>
  1246. </listitem>
  1247. <listitem>
  1248. <para>[matt]: Upgraded to linux-2.6.12.5.</para>
  1249. </listitem>
  1250. </itemizedlist>
  1251. </listitem>
  1252. <listitem>
  1253. <para>August 15th, 2005</para>
  1254. <itemizedlist>
  1255. <listitem>
  1256. <para>[matt]: Alter the GCC -fomit-frame-pointer sed to protect
  1257. from multiple invocations (Greg Schafer)</para>
  1258. </listitem>
  1259. </itemizedlist>
  1260. </listitem>
  1261. <listitem>
  1262. <para>August 14th, 2005</para>
  1263. <itemizedlist>
  1264. <listitem>
  1265. <para>[ken]: Upgrade shadow to 4.0.11.1 with --enable-shadowgrp as
  1266. advised by Greg Schafer.</para>
  1267. </listitem>
  1268. <listitem>
  1269. <para>[matt]: Mention the common libmudflap test failures in GCC
  1270. (fixes bug 1615).</para>
  1271. </listitem>
  1272. <listitem>
  1273. <para>[matt]: Added patch to install documentation for bzip2 (fixes
  1274. bug 1603).</para>
  1275. </listitem>
  1276. <listitem>
  1277. <para>[matt]: Upgrade to linux-2.6.12.4.</para>
  1278. </listitem>
  1279. <listitem>
  1280. <para>[matt]: Add sed to chapter05/gcc-pass2 and chapter06/gcc to
  1281. ensure they get built with -fomit-frame-pointer so it matches the
  1282. bootstrap build in chapter05/gcc-pass1 (fixes bug 1609).</para>
  1283. </listitem>
  1284. <listitem>
  1285. <para>[matt]: Upgrade to udev-067 including a fix for the failing
  1286. test (bug 1611).</para>
  1287. </listitem>
  1288. </itemizedlist>
  1289. </listitem>
  1290. <listitem>
  1291. <para>August 12th, 2005</para>
  1292. <itemizedlist>
  1293. <listitem>
  1294. <para>[matt]: Explain that libiconv isn't required on an LFS
  1295. system (fixes bug 1614).</para>
  1296. </listitem>
  1297. <listitem>
  1298. <para>[matt]: Fix ownership of libtool's libltdl data files
  1299. (fixes bug 1601).</para>
  1300. </listitem>
  1301. <listitem>
  1302. <para>[matt]: Change findutils and vim's configure switch explanations
  1303. to the convention used in the rest of the book (Bug 1613).</para>
  1304. </listitem>
  1305. <listitem>
  1306. <para>[matt]: Expand explanation of device node creation at the start
  1307. of chapter 6.</para>
  1308. </listitem>
  1309. <listitem>
  1310. <para>[matt]: Fix incorrect version number for expect's installed
  1311. library (Bug 1608)</para>
  1312. </listitem>
  1313. </itemizedlist>
  1314. </listitem>
  1315. <listitem>
  1316. <para>August 7th, 2005</para>
  1317. <itemizedlist>
  1318. <listitem>
  1319. <para>[archaic]: Added note in Shadow regarding building Cracklib
  1320. from BLFS first.</para>
  1321. </listitem>
  1322. </itemizedlist>
  1323. </listitem>
  1324. <listitem>
  1325. <para>August 6th, 2005</para>
  1326. <itemizedlist>
  1327. <listitem>
  1328. <para>[matt]: Add texi2pdf to list of Texinfo's installed files.</para>
  1329. </listitem>
  1330. <listitem>
  1331. <para>[matt]: Updated Vim's security patch to address the latest
  1332. modeline vulnerability.</para>
  1333. </listitem>
  1334. </itemizedlist>
  1335. </listitem>
  1336. <listitem>
  1337. <para>July 30th, 2005</para>
  1338. <itemizedlist>
  1339. <listitem>
  1340. <para>[matt]: Added instructions for installing Bash documentation
  1341. (Randy McMurchy).</para>
  1342. </listitem>
  1343. <listitem>
  1344. <para>[matt]: Remove GCC linkonce patch from chapter03/patches.xml
  1345. as it's no longer used in the book</para>
  1346. </listitem>
  1347. </itemizedlist>
  1348. </listitem>
  1349. <listitem>
  1350. <para>July 29th, 2005</para>
  1351. <itemizedlist>
  1352. <listitem>
  1353. <para>[manuel]: Removed the text about defining gvimrc.</para>
  1354. </listitem>
  1355. </itemizedlist>
  1356. </listitem>
  1357. <listitem>
  1358. <para>July 28th, 2005</para>
  1359. <itemizedlist>
  1360. <listitem>
  1361. <para>[matt]: Add GCC-4 related patch for kbd</para>
  1362. </listitem>
  1363. <listitem>
  1364. <para>[matt]: Add GCC-4 related patch for inetutils</para>
  1365. </listitem>
  1366. <listitem>
  1367. <para>[matt]: Remove the note regarding a known test failure in GRUB.
  1368. The test no longer fails under GCC-4</para>
  1369. </listitem>
  1370. <listitem>
  1371. <para>[matt]: Add GCC-4 related patch to chapter06 tar</para>
  1372. </listitem>
  1373. </itemizedlist>
  1374. </listitem>
  1375. <listitem>
  1376. <para>July 27th, 2005</para>
  1377. <itemizedlist>
  1378. <listitem>
  1379. <para>[matt]: Don't define gvim's configuration file as we don't
  1380. compile gvim in LFS (Bruce Dubbs).</para>
  1381. </listitem>
  1382. </itemizedlist>
  1383. </listitem>
  1384. <listitem>
  1385. <para>July 26th, 2005</para>
  1386. <itemizedlist>
  1387. <listitem>
  1388. <para>[matt]: Remove <quote>groups</quote> from the list of programs
  1389. installed by shadow, as we use the version provided by coreutils
  1390. instead (Randy McMurchy).</para>
  1391. </listitem>
  1392. <listitem>
  1393. <para>[matt]: Updated to mktemp-1.5-add_tempfile-3.patch, which adds
  1394. license and copyright information to the previous version.</para>
  1395. </listitem>
  1396. </itemizedlist>
  1397. </listitem>
  1398. <listitem>
  1399. <para>July 23rd, 2005</para>
  1400. <itemizedlist>
  1401. <listitem>
  1402. <para>[matt]: Moved FORMER_CONTRIBUTORS information into the book,
  1403. so as people can actually see it. The space constraint argument in
  1404. that file was weak - it only added another 10 lines to a 255 page
  1405. document (PDF). Now at least we <emphasis>publically</emphasis>
  1406. acknowledge the efforts of previous contributors.</para>
  1407. </listitem>
  1408. <listitem>
  1409. <para>[matt]: Updated to man-pages-2.07.</para>
  1410. </listitem>
  1411. <listitem>
  1412. <para>[matt]: Updated to zlib-1.2.3.</para>
  1413. </listitem>
  1414. </itemizedlist>
  1415. </listitem>
  1416. <listitem>
  1417. <para>July 22nd, 2005</para>
  1418. <itemizedlist>
  1419. <listitem>
  1420. <para>[manuel]: Added obfuscate.sh and modified the Makefile to
  1421. obfuscate e-mail addresses in XHTML output.</para>
  1422. </listitem>
  1423. </itemizedlist>
  1424. </listitem>
  1425. <listitem>
  1426. <para>July 21st, 2005</para>
  1427. <itemizedlist>
  1428. <listitem>
  1429. <para>[matt]: Add GCC-4 related patches to chapter06 glibc</para>
  1430. </listitem>
  1431. <listitem>
  1432. <para>[matt]: Unset the GCC_INCLUDEDIR variable once it's no longer
  1433. needed.</para>
  1434. </listitem>
  1435. </itemizedlist>
  1436. </listitem>
  1437. <listitem>
  1438. <para>July 19th, 2005</para>
  1439. <itemizedlist>
  1440. <listitem>
  1441. <para>[matt]: Removed flex++ from the list of installed files, as
  1442. it is no longer present (Randy McMurchy)</para>
  1443. </listitem>
  1444. </itemizedlist>
  1445. </listitem>
  1446. <listitem>
  1447. <para>July 18th, 2005</para>
  1448. <itemizedlist>
  1449. <listitem>
  1450. <para>[matt]: Re-added the explanation of the fixincludes process
  1451. and rewording where necessary (Chris Staub), and reworded description
  1452. of the specs patch.</para>
  1453. </listitem>
  1454. <listitem>
  1455. <para>[matt]: Remove all host headers brought in via the fixincludes
  1456. process, not just pthread.h and sigaction.h</para>
  1457. </listitem>
  1458. </itemizedlist>
  1459. </listitem>
  1460. <listitem>
  1461. <para>July 17th, 2005</para>
  1462. <itemizedlist>
  1463. <listitem>
  1464. <para>[matt]: Slightly adjusted the specs file seds, to prevent
  1465. multiple seds from adversely affecting them.</para>
  1466. </listitem>
  1467. <listitem>
  1468. <para>[matt]: Removed the fixincludes sed from gcc-pass1 as we may
  1469. need to fix up host's headers. Also reinstate the associated removal
  1470. of pthread.h and sigthread.h.</para>
  1471. </listitem>
  1472. </itemizedlist>
  1473. </listitem>
  1474. <listitem>
  1475. <para>July 16th, 2005</para>
  1476. <itemizedlist>
  1477. <listitem>
  1478. <para>[jhuntwork]: Added sed to chapter 5 gcc builds to force the
  1479. fixincludes to use the headers in /tools and not the host.</para>
  1480. </listitem>
  1481. <listitem>
  1482. <para>[jhuntwork]: Removed no_fixincludes and linkonce patches for
  1483. gcc4. Also removed the command to remove the fixed pthread.h.</para>
  1484. </listitem>
  1485. <listitem>
  1486. <para>[jhuntwork]: Fixed adjusting toolchain sed for both chapters
  1487. 5 and 6.</para>
  1488. </listitem>
  1489. </itemizedlist>
  1490. </listitem>
  1491. <listitem>
  1492. <para>July 15th, 2005</para>
  1493. <itemizedlist>
  1494. <listitem>
  1495. <para>[matt]: Updated to Linux-2.6.12.3.</para>
  1496. </listitem>
  1497. <listitem>
  1498. <para>[matt]: Added a patch to enable tar to build with gcc-4.0.1</para>
  1499. </listitem>
  1500. <listitem>
  1501. <para>[matt]: GCC-4.x no longer installs its specs file by default.
  1502. Alter the toolchain adjustment stage to first dump the specs file
  1503. where GCC will find it, then alter it.</para>
  1504. </listitem>
  1505. <listitem>
  1506. <para>[matt]: Added patches for chapter 5's Glibc to build with
  1507. gcc-4.0.1</para>
  1508. </listitem>
  1509. <listitem>
  1510. <para>[matt]: Updated to gcc-4.0.1.</para>
  1511. </listitem>
  1512. <listitem>
  1513. <para>[matt]: Updated to udev-063.</para>
  1514. </listitem>
  1515. </itemizedlist>
  1516. </listitem>
  1517. <listitem>
  1518. <para>July 13th, 2005</para>
  1519. <itemizedlist>
  1520. <listitem>
  1521. <para>[matt]: Updated to automake-1.9.6.</para>
  1522. </listitem>
  1523. </itemizedlist>
  1524. </listitem>
  1525. <listitem>
  1526. <para>July 8th, 2005</para>
  1527. <itemizedlist>
  1528. <listitem>
  1529. <para>[matt]: Updated to udev-062.</para>
  1530. </listitem>
  1531. <listitem>
  1532. <para>[matt]: Updated to linux-libc-headers-2.6.12.0.</para>
  1533. </listitem>
  1534. <listitem>
  1535. <para>[matt]: Updated to linux-2.6.12.2.</para>
  1536. </listitem>
  1537. <listitem>
  1538. <para>[matt]: Updated to shadow-4.0.10.</para>
  1539. </listitem>
  1540. <listitem>
  1541. <para>[matt]: Updated to iana-etc-1.10.</para>
  1542. </listitem>
  1543. </itemizedlist>
  1544. </listitem>
  1545. <listitem>
  1546. <para>July 6th, 2005</para>
  1547. <itemizedlist>
  1548. <listitem>
  1549. <para>[archaic]: Pulled the inetutils kernel header patch out again
  1550. as it is not needed.</para>
  1551. </listitem>
  1552. <listitem>
  1553. <para>[matt]: Updated to e2fsprogs-1.38.</para>
  1554. </listitem>
  1555. <listitem>
  1556. <para>[matt]: Updated to binutils-2.16.1.</para>
  1557. </listitem>
  1558. </itemizedlist>
  1559. </listitem>
  1560. <listitem>
  1561. <para>July 5th, 2005</para>
  1562. <itemizedlist>
  1563. <listitem>
  1564. <para>[matt]: Updated to tcl-8.4.11.</para>
  1565. </listitem>
  1566. <listitem>
  1567. <para>[matt]: Updated to man-1.6.</para>
  1568. </listitem>
  1569. <listitem>
  1570. <para>[matt]: Updated to file 4.14.</para>
  1571. </listitem>
  1572. <listitem><para>[matt]: Updated to man-pages 2.05.</para>
  1573. </listitem>
  1574. </itemizedlist>
  1575. </listitem>
  1576. <listitem>
  1577. <para>June 12th, 2005</para>
  1578. <itemizedlist>
  1579. <listitem>
  1580. <para>[matt]: Upgraded to gettext-0.14.5.</para>
  1581. </listitem>
  1582. <listitem>
  1583. <para>[matt]: Upgraded to perl-5.8.7.</para>
  1584. </listitem>
  1585. <listitem>
  1586. <para>[matt]: Upgraded to tcl-8.4.10.</para>
  1587. </listitem>
  1588. <listitem>
  1589. <para>[matt]: Upgraded to man-pages-2.03.</para>
  1590. </listitem>
  1591. </itemizedlist>
  1592. </listitem>
  1593. <listitem>
  1594. <para>May 24th, 2005</para>
  1595. <itemizedlist>
  1596. <listitem>
  1597. <para>[jim]: Changed gcc-specs patch to -2.</para>
  1598. </listitem>
  1599. </itemizedlist>
  1600. </listitem>
  1601. <listitem>
  1602. <para>May 23nd, 2005</para>
  1603. <itemizedlist>
  1604. <listitem>
  1605. <para>[jim]: Changed changelog to use version entities.</para>
  1606. </listitem>
  1607. </itemizedlist>
  1608. </listitem>
  1609. <listitem>
  1610. <para>May 22nd, 2005</para>
  1611. <itemizedlist>
  1612. <listitem>
  1613. <para>[matt]: Updated to Udev-058.</para>
  1614. </listitem>
  1615. <listitem>
  1616. <para>[matt]: Updated to Libtool-1.5.18.</para>
  1617. </listitem>
  1618. <listitem>
  1619. <para>[matt]: Updated to Gcc-3.4.4.</para>
  1620. </listitem>
  1621. <listitem>
  1622. <para>[matt]: Updated to Binutils-2.16.</para>
  1623. </listitem>
  1624. </itemizedlist>
  1625. </listitem>
  1626. <listitem>
  1627. <para>May 15th, 2005</para>
  1628. <itemizedlist>
  1629. <listitem>
  1630. <para>[matt]: Updated to Grub 0.97.</para>
  1631. </listitem>
  1632. <listitem>
  1633. <para>[matt]: Updated to Libtool 1.5.16.</para>
  1634. </listitem>
  1635. <listitem>
  1636. <para>[jim]: Updated to udev 057.</para>
  1637. </listitem>
  1638. </itemizedlist>
  1639. </listitem>
  1640. <listitem>
  1641. <para>April 14, 2005</para>
  1642. <itemizedlist>
  1643. <listitem>
  1644. <para>[jim]: Updated to man-pages 2.02.</para>
  1645. </listitem>
  1646. </itemizedlist>
  1647. </listitem>
  1648. <listitem>
  1649. <para>April 13, 2005</para>
  1650. <itemizedlist>
  1651. <listitem>
  1652. <para>[jim]: Updated to glibc 2.3.5.</para>
  1653. </listitem>
  1654. <listitem>
  1655. <para>[jim]: Updated to gettext 0.14.4.</para>
  1656. </listitem>
  1657. </itemizedlist>
  1658. </listitem>
  1659. <listitem>
  1660. <para>April 12, 2005</para>
  1661. <itemizedlist>
  1662. <listitem>
  1663. <para>[manuel]: Small redaction changes.</para>
  1664. </listitem>
  1665. </itemizedlist>
  1666. </listitem>
  1667. <listitem>
  1668. <para>April 11, 2005</para>
  1669. <itemizedlist>
  1670. <listitem>
  1671. <para>[manuel]: Several tags and text corrections.</para>
  1672. </listitem>
  1673. </itemizedlist>
  1674. </listitem>
  1675. <listitem>
  1676. <para>April 6, 2005</para>
  1677. <itemizedlist>
  1678. <listitem>
  1679. <para>[jim]: Removed IPRoute2 patch for a sed (Ryan Oliver).</para>
  1680. </listitem>
  1681. </itemizedlist>
  1682. </listitem>
  1683. </itemizedlist>
  1684. <para>Branch frozen for LFS 6.1 as of April 5, 2005. Some packages
  1685. and patches updates related with security up to July 9, 2005.</para>
  1686. </sect1>