changelog.xml 66 KB

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