changelog.xml 78 KB

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