changelog.xml 76 KB

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