changelog.xml 75 KB

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