changelog.xml 71 KB

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