1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
|
<sect1 id="ch01-changelog">
<title>Changelog</title>
<?dbhtml filename="changelog.html" dir="chapter01"?>
<para>&version; - &releasedate;</para>
<itemizedlist>
<listitem><para>Upgraded to:
<itemizedlist>
<listitem><para>automake-1.7.6</para></listitem>
<listitem><para>bash-2.05b</para></listitem>
<listitem><para>binutils-2.14</para></listitem>
<listitem><para>e2fsprogs-1.34</para></listitem>
<listitem><para>file-4.04</para></listitem>
<listitem><para>findutils-4.1.20</para></listitem>
<listitem><para>gawk-3.1.3</para></listitem>
<listitem><para>gcc-3.3.1</para></listitem>
<listitem><para>gettext-0.12.1</para></listitem>
<listitem><para>glibc-2.3.2</para></listitem>
<listitem><para>glibc-2.3.2-sscanf-1.patch</para></listitem>
<listitem><para>grep-2.5.1</para></listitem>
<listitem><para>groff-1.19</para></listitem>
<listitem><para>gzip-1.3.5</para></listitem>
<listitem><para>less-381</para></listitem>
<listitem><para>libtool-1.5</para></listitem>
<listitem><para>linux-2.4.22</para></listitem>
<listitem><para>man-1.5m2</para></listitem>
<listitem><para>man-1.5m2-80cols.patch</para></listitem>
<listitem><para>man-1.5m2-manpath.patch</para></listitem>
<listitem><para>man-1.5m2-pager.patch</para></listitem>
<listitem><para>man-pages-1.60</para></listitem>
<listitem><para>modutils-2.4.25</para></listitem>
<listitem><para>procps-3.1.11</para></listitem>
<listitem><para>procps-3.1.11.patch</para></listitem>
<listitem><para>psmisc-21.3</para></listitem>
<listitem><para>sed-4.0.7</para></listitem>
<listitem><para>sysvinit-2.85</para></listitem>
<listitem><para>tar-1.13.25</para></listitem>
<listitem><para>texinfo-4.6</para></listitem>
<listitem><para>util-linux-2.12</para></listitem>
<listitem><para>vim-6.2</para></listitem>
</itemizedlist>
</para></listitem>
<listitem><para>Added:
<itemizedlist>
<listitem><para>bash-2.05b-2.patch</para></listitem>
<listitem><para>bison-1.875-attribute.patch</para></listitem>
<listitem><para>coreutils-5.0</para></listitem>
<listitem><para>coreutils-5.0-uname.patch</para></listitem>
<listitem><para>coreutils-5.0-hostname-2.patch</para></listitem>
<listitem><para>dejagnu-1.4.3</para></listitem>
<listitem><para>expect-5.39.0</para></listitem>
<listitem><para>expect-5.39.0.patch</para></listitem>
<listitem><para>gawk-3.1.3.patch</para></listitem>
<listitem><para>gcc-2.95.3</para></listitem>
<listitem><para>gcc-2.95.3-2.patch</para></listitem>
<listitem><para>gcc-2.95.3-no-fixinc.patch</para></listitem>
<listitem><para>gcc-2.95.3-returntype-fix.patch</para></listitem>
<listitem><para>gcc-3.3.1-no_fixincludes-2.patch</para></listitem>
<listitem><para>gcc-&gcc-specs-version;.patch</para></listitem>
<listitem><para>gcc-3.3.1-suppress-libiberty.patch</para></listitem>
<listitem><para>grub-0.93</para></listitem>
<listitem><para>grub-0.93-gcc33-1.patch</para></listitem>
<listitem><para>inetutils-1.4.2</para></listitem>
<listitem><para>lfs-utils-0.3</para></listitem>
<listitem><para>ncurses-5.3-etip-2.patch</para></listitem>
<listitem><para>ncurses-5.3-vsscanf.patch</para></listitem>
<listitem><para>perl-5.8.0-libc-3.patch</para></listitem>
<listitem><para>shadow-4.0.3-newgroup-fix.patch</para></listitem>
<listitem><para>tcl-8.4.4</para></listitem>
<listitem><para>zlib-1.1.4-vsnprintf.patch</para></listitem>
</itemizedlist>
</para></listitem>
<listitem><para>Removed:
<itemizedlist>
<listitem><para>bin86-0.16.3</para></listitem>
<listitem><para>fileutils-4.1</para></listitem>
<listitem><para>fileutils-4.1.patch</para></listitem>
<listitem><para>findutils-4.1-segfault.patch</para></listitem>
<listitem><para>findutils-4.1.patch</para></listitem>
<listitem><para>glibc-2.3.1-libnss.patch</para></listitem>
<listitem><para>glibc-2.3.1-root-perl.patch</para></listitem>
<listitem><para>gzip-1.2.4b.patch</para></listitem>
<listitem><para>lilo-22.2</para></listitem>
<listitem><para>netkit-base-0.17</para></listitem>
<listitem><para>sh-utils-2.0</para></listitem>
<listitem><para>sh-utils-2.0.patch</para></listitem>
<listitem><para>sh-utils-2.0-hostname.patch</para></listitem>
<listitem><para>tar-1.13.patch</para></listitem>
<listitem><para>textutils-2.1</para></listitem>
<listitem><para>vim-6.1.patch</para></listitem>
</itemizedlist>
</para></listitem>
<listitem><para>September 22nd, 2003 [greg]: Chapter 8 - Creating the /etc/fstab
file: Made mounting devpts the default.</para></listitem>
<listitem><para>September 22nd, 2003 [jeremy]: Added net-tools patch to fix
mii-tool compilation</para></listitem>
<listitem><para>September 22nd, 2003 [jwrober]: Chapter 5 - Updated the Why
Static page to more accurately represent the difference between statically and
dynamically linked binaries. Thanks to Ian Molton for point this out. Fixes
Bug 602.</para></listitem>
<listitem><para>September 22nd, 2003 [jeremy]: Removed the make
command from DejaGNU, since it performs nothing.</para></listitem>
<listitem><para>September 22nd, 2003 [jeremy]: Removed the -k from TCL's make
check, since it's not expected to have failures anymore</para></listitem>
<listitem><para>September 22nd, 2003 [jeremy]: Changed the reference to the
man hint to a pointer to BLFS</para></listitem>
<listitem><para>September 22nd, 2003 [jeremy]: added a note to remember to
mount devpts if you exit and re-enter chroot</para></listitem>
<listitem><para>September 22nd, 2003 [jeremy]: removed make check from patch
and diffutils, since these tests perform no actions.</para></listitem>
<listitem><para>September 22nd, 2003 [greg]: Chapter 5 - Setting up the
environment: Added unset CC CXX CPP LD_LIBRARY_PATH LD_PRELOAD to
.bash_profile to stop accidental build breakage.</para></listitem>
<listitem><para>September 20th, 2003 [greg]: Chapter 5 - GCC Pass 2: Updated
to gcc-3.3.1-specs-2.patch. Ncurses: added --enable-overwrite and description.
</para></listitem>
<listitem><para>September 19th, 2003 [jeremy]: Corrected bash tags for proper
use of the +h flag to bash</para></listitem>
<listitem><para>September 19th, 2003 [jwrober]: Various updates to the
acknowledgements page.</para></listitem>
<listitem><para>September 18th, 2003 [jeremy]: Chapter 5 - GCC Pass 2 -
added some extra comments regarding the 3 tarballs to unpack.</para></listitem>
<listitem><para>September 17th, 2003 [greg]: Chapter 6 - GCC-2.95.3: Added
rationale notes.</para></listitem>
<listitem><para>September 17th, 2003 [jwrober]: Updated the acknowledgements
page to match the website.</para></listitem>
<listitem><para>September 17th, 2003 [jeremy]: Upgraded File to 4.04</para></listitem>
<listitem><para>September 17th, 2003 [jeremy]: Chapter 6 - changed 2 of the
occurances of exec bash --login to include the +h directive. </para></listitem>
<listitem><para>September 17th, 2003 [greg]: Chapters 5 and 6 - Locking in
Glibc and Re-adjusting the toolchain: Do "make -C ld install" instead of "make
-C ld install-data-local" to install a whole new linker instead of just the
new ldscripts.</para></listitem>
<listitem><para>September 17th, 2003 [alex]: Normalized the spelling of 'Tcl'
and 'DejaGnu', following their own documentation.</para></listitem>
<listitem><para>September 17th, 2003 [alex]: Properly alphabetized the
dependencies.</para></listitem>
<listitem><para>September 16th, 2003 [alex]: Finally updated the dependencies
for the new Coreutils.</para></listitem>
<listitem><para>September 16th, 2003 [greg]: Chapters 5 and 6 - Locking in
Glibc and Re-adjusting the toolchain: Added sanity checks.</para></listitem>
<listitem><para>September 16th, 2003 [greg]: Chapters 5 and 6 - Binutils, GCC,
and Glibc: Added notes on the test suites.</para></listitem>
<listitem><para>September 15th, 2003 [alex]: Corrected several typos and
some inconsistencies.</para></listitem>
<listitem><para>September 14th, 2003 [greg]: Chapter 6 - Revised chroot
command: Removed no longer needed set +h.</para></listitem>
<listitem><para>September 14th, 2003 [alex]: Fixed some typos, and added some
markup. Dropped the removal of program files from the Stripping section in
Chapter 5.</para></listitem>
<listitem><para>September 14th, 2003 [greg]: Chapter 6 - Create essential
symlinks: Add symlink /usr/lib/libgcc_s.so.1 to allow gcc abi_check to run.
Future NPTL needs this as well.</para></listitem>
<listitem><para>September 13th, 2003 [jwrober]: Added PLFS hint text to the
page in Chapter 6 for creating passwd and group: bug 596.</para></listitem>
<listitem><para>September 13th, 2003 [jwrober]: Updated the "How things are
going to be done" page to include more of the PLFS hint's
text.</para></listitem>
<listitem><para>September 13th, 2003 [jwrober]: Preface - Merged whoread and
whonotread into a single audience page.</para></listitem>
<listitem><para>September 13th, 2003 [greg]: Chapter 2 - Added new section
about the test suites.</para></listitem>
<listitem><para>September 12th, 2003 [jeremy]: Chapter 5 - Ncurses: Added
description for the --without-ada configure switch.</para></listitem>
<listitem><para>September 12th, 2003 [jeremy]: Chapter 5 - Gawk: Added the
test suite</para></listitem>
<listitem><para>September 12th, 2003 [jeremy]: Chapter 5 - Grep: Added
descriptions of configure switches courtesy of Anderson Lizardo</para></listitem>
<listitem><para>September 12th, 2003 [gerard]: Removed /usr/lib/locale
directory creation - it's created during Chapter 6 - Glibc where it's more
relevant.</para></listitem>
<listitem><para>September 11th, 2003 [jwrober]: Chapter 5 - Fixed GCC Pass 2
specs patch text to be more vague, but in actuality more accurate - provided by
Anderson Lizardo.</para></listitem>
<listitem><para>September 11th, 2003 [jwrober]: Chapter 5 - Grammar fix in
Tcl install directions provided by Anderson Lizardo.</para></listitem>
<listitem><para>September 11th, 2003 [jwrober]: Chapter 5 - Small textual
change in the locking in Glibc page for /lib/ld.so.1 provided by Anderson
Lizardo.</para></listitem>
<listitem><para>September 11th, 2003 [jeremy]: Added bootloader setup to
Chapter 8, after the addition of Grub to the book.</para></listitem>
<listitem><para>September 11th, 2003 [gerard]: Removed Bin86 and LILO and
replaced it with Grub.</para></listitem>
<listitem><para>September 11th, 2003 [jeremy]: Dropped non-toolchain tests
to optional actions. Added a note to use the Wiki for failed tests.</para></listitem>
<listitem><para>September 11th, 2003 [jeremy]: Added Bison patch, backported
from CVS, to fix pwlib compilation problems</para></listitem>
<listitem><para>September 11th, 2003 [jeremy]: Added Greg's patch to GCC to
suppress the installation of libiberty, and changed Binutils to allow its
libiberty to stay.</para></listitem>
<listitem><para>September 11th, 2003 [jeremy]: Added caution tags around the
reminder to not delete the Binutils source and build directories in Chapter 5.
</para></listitem>
<listitem><para>September 11th, 2003 [jeremy]: Added new perl-libc-3 patch
from Anderson Lizardo</para></listitem>
<listitem><para>September 9th, 2003 [jwrober]: Fixed the Findutils package
download link on the packages page closing bug 578.</para></listitem>
<listitem><para>September 9th, 2003 [jeremy]: Chapter 6 - GCC 2.95.3:
Removed compilation of C++, added Zack's return-type patch.</para></listitem>
<listitem><para>September 9th, 2003 [jeremy]: Chapter 6 - Coreutils:
Added coreutils-5.0-hostname-2.patch, which suppresses the build of the
hostname binary, and also suppresses its check.</para></listitem>
<listitem><para>September 9th, 2003 [jeremy]: Added some notes regarding failed
tests to Glibc and DejaGnu.</para></listitem>
<listitem><para>September 9th, 2003 [jeremy]: Glibc - Added commands to both
Chapter 5 and 6 to include minimum locales necessary for
checks.</para></listitem>
<listitem><para>September 9th, 2003 [jeremy]: Chapter 6 - Removed Zlib's
munging of CFLAGS in favor of a note to add -fPIC.</para></listitem>
<listitem><para>September 8th, 2003 [matt]: Chapter 5 - Fixed the rm command
that deletes unneeded documentation from /tools/share.</para></listitem>
<listitem><para>September 6th, 2003 [matt]: Chapter 6 - Removed a reference
to "the static" directory in the intro.</para></listitem>
<listitem><para>September 6th, 2003 [jeremy]: Chapter 4 - Updated
download locations for some packages.</para></listitem>
<listitem><para>September 5th, 2003 [jeremy]: Chapter 5 - GCC Pass 2:
Corrected the make check error explanation</para></listitem>
<listitem><para>September 5th, 2003 [jeremy]: Chapter 6 - Makedev:
Changed the default device creation to generic-nopty, because we now use devpts
by default.</para></listitem>
<listitem><para>September 5th, 2003 [jeremy]: Chapter 6 - GCC: Corrected
wording to reflect the removal of the /usr/lib/cpp symlink.</para></listitem>
<listitem><para>September 5th, 2003 [jeremy]: Corrected perl libc patch to -2,
changing the old /stage1 structure to /tools</para></listitem>
<listitem><para>September 5th, 2003 [matt]: Chapter 6 - Updated gcc specs patch
and upgraded to man-1.5m2</para></listitem>
<listitem><para>September 4th, 2003 [jeremy]: Chapter 6 - Creating
Directories: Eliminated the creation of /usr/tmp - Closes bug 176.</para></listitem>
<listitem><para>September 4th, 2003 [jeremy]: Chapter 6 - Mounting Proc:
Added mounting the devpts filesystem into chroot here. Closes bug 533.</para>
</listitem>
<listitem><para>September 4th, 2003 [jeremy]: Chapter 6 - Mounting Proc:
Added a warning at the end regarding checking that proc is still mounted
if you stop and restart the lfs process.</para></listitem>
<listitem><para>September 4th, 2003 [jeremy]: Chapter 6 - Gzip:
Altered text to better explain the reason behind the sed command
used in the gzip installation. Closes bug 551.</para></listitem>
<listitem><para>September 4th, 2003 [jeremy]: Chapter 4 - Downloading
patches: Added a note regarding Tushar's patches project, and a link
to the patches home page.</para></listitem>
<listitem><para>September 3rd, 2003 [matt]: Fixed issue with util-linux not
utilising headers and libraries installed in /stage1.</para></listitem>
<listitem><para>September 3rd, 2003 [matt]: Removed "rm /bin/pwd" instruction
from chapter06 kernel-headers installation as the link is still required by
Glibc's installation.</para></listitem>
<listitem><para>September 2nd, 2003 [alex]: Adjusted all the SBUs from the
values posted by Jeremy.</para></listitem>
<listitem><para>September 2nd, 2003 [alex]: Finally got around to renaming
/stage1 to /tools.</para></listitem>
<listitem><para>September 2nd, 2003 [alex]: Merged several of the main
book structure files.</para></listitem>
<listitem><para>September 2nd, 2003 [alex]: Alphabetized download lists,
added note to Tcl instructions.</para></listitem>
<listitem><para>September 2nd, 2003 [alex]: Reworded Organization, $LFS
and SBUs sections.</para></listitem>
<listitem><para>September 1, 2003 [jeremy] - Chapter 6 -
Groff - Added note about choice of A4 or letter for the
PAGE variable.</para></listitem>
<listitem><para>September 1, 2003 [jeremy] - Added in shadow
newgrp patch from Greg Schafer</para></listitem>
<listitem><para>August 31, 2003 [jeremy] - Chapter 6 -
Inetutils - added the --disable-whois and --disable-servers
flags</para></listitem>
<listitem><para>August 31, 2003 [jeremy] - Added in Greg's new instructions
for GCC 3.3.1 with respect to the fixincludes process. Also added extra
verbiage to the locking-in and GCC pass 2 pages on the fixincludes
process.</para></listitem>
<listitem><para>August 31, 2003 [jeremy] - Added user nobody to
passwd and group files, so coreutils tests will pass.</para></listitem>
<listitem><para>August 31st, 2003 [alex]: Reworded some paragraphs, added
missing markup, and rearranged the changelog.</para></listitem>
<listitem><para>August 31st, 2003 [alex]: Wrapped the 'Last checked' lines
in parentheses. Several other small retouches.</para></listitem>
<listitem><para>August 30, 2003 [jeremy] - Updated fix-includes
patch to GCC 3.3.1</para></listitem>
<listitem><para>August 29, 2003 [jeremy] - Glibc - updated
instructions with the sscanf patch from patches.</para></listitem>
<listitem><para>August 29, 2003 [jeremy] - Updated GCC
to version 3.3.1, including fixes based on Zack's mini-hint
for GCC 3.3, and patches from his docs.</para></listitem>
<listitem><para>August 29th, 2003 [alex]: Removed obsolete Netkit-base,
Fileutils, Sh-utils, and Textutils files.</para></listitem>
<listitem><para>August 29th, 2003 [alex]: Added some missing markup, changed
a few /static's to /stage1's.</para></listitem>
<listitem><para>August 29th, 2003 [alex]: Chapter 06 - Added all the missing
text lines before the make checks, and reworded other lines.</para></listitem>
<listitem><para>August 28, 2003 [matt] - Updated packages
to linux-2.4.22, man-pages-1.60, expect-5.39.0,
findutils-4.1.20 and tcl-8.4.4</para></listitem>
<listitem><para>August 28, 2003 [jeremy] - New
bash-2.05b-2.patch file to include the 7 patches
from ftp.gnu.org</para></listitem>
<listitem><para>August 28th, 2003 [alex]: Chapter 06 - Re-adjusting toolchain:
Added a forgotten backslash.</para></listitem>
<listitem><para>August 28th, 2003 [alex]: Fixed a few typos and added some
missing markup.</para></listitem>
<listitem><para>August 28th, 2003 [alex]: Chapter 06 - Binutils and GCC:
Integrated text from the pure-lfs hint.</para></listitem>
<listitem><para>August 27, 2003 [jeremy] - Chapter 06 -
Inetutils: Added --sysconfdir=/etc --localstatedir=/var
and moved the ping binary from /usr/bin to /bin</para>
</listitem>
<listitem><para>August 27th, 2003 [alex]: Chapter 06 - Glibc: Integrated text
from the pure-lfs hint.</para></listitem>
<listitem><para>August 26, 2003 [jeremy] - Chapter 07 -
Creating /etc/hosts: Changed www.mydomain.org to
<value of HOSTNAME>.mydomain.org</para></listitem>
<listitem><para>August 26th, 2003 [alex]: Chapter 06 & 08 - Moved the
installation of the kernel manpages from chapter 6 to 8.</para></listitem>
<listitem><para>August 26, 2003 [jeremy] - Chapter 04 -
Mounting the LFS partition: Added text regarding mounting
with too restrictive permissions.</para></listitem>
<listitem><para>August 26, 2003 [jeremy] - Chapter 06 -
Creating Directories: Added the creation of the /dev/shm
directory.</para></listitem>
<listitem><para>August 26, 2003 [jeremy] - Chapter 08 -
Creating fstab: Added the mount of tmpfs filesystem to
/dev/shm.</para></listitem>
<listitem><para>August 26, 2003 [jeremy] - Chapter 08 -
Kernel Installation: Added a reminder to compile tmpfs
support into the kernel.</para></listitem>
<listitem><para>August 25th, 2003 [alex]: Chapter 06 - Rewrote the installation
text of Shadow and Util-Linux while correcting some typos.</para></listitem>
<listitem><para>August 25th, 2003 [alex]: Chapter 05 & 06 - Made the
"Locking in" and "Re-adjusting" look similar.</para></listitem>
<listitem><para>August 24th, 2003 [alex]: Chapter 04 - Merged the many little
files into one file. Gave packages and patches a separate page.</para></listitem>
<listitem><para>August 17th, 2003 [alex]: Chapter 05 - From Bash to Perl:
put text in between commands. Added a section on stripping unneeded
symbols to decrease the size of the tools.</para></listitem>
<listitem><para>August 16th, 2003 [alex]: Chapter 05 - From Make to Texinfo:
put text in between commands.</para></listitem>
<listitem><para>August 11th, 2003 [alex]: Chapter 05 - From Binutils Pass 1 to
Findutils: several small textual adjustments. For the second passes not giving
the contents and dependencies.</para></listitem>
<listitem><para>August 11th, 2003 [alex]: Chapter 04 - Listed separate
core, g++, and test suite tarballs for GCC.</para></listitem>
<listitem><para>August 11th, 2003 [alex]: Chapter 04 - Suppressed the
mention of a wget script.</para></listitem>
<listitem><para>August 9th, 2003 [alex]: Chapter 05 - Binutils Pass2 and GCC
Pass 2: integrated some text from the pure-lfs hint.</para></listitem>
<listitem><para>August 8th, 2003 [alex]: Chapter 05 - Tcl, Expect, and DejaGnu:
added some text.</para></listitem>
<listitem><para>August 6th, 2003 [gerard]: Applied Alex Groenewoud's patch
that adds Appendix B, providing a list of all installed programs and
libraries plus references to the installation pages.</para></listitem>
<listitem><para>July 30th, 2003 [gerard]: Chapter 06 - Vim: Changed the way
the global <filename>vimrc</filename> and <filename>gvimrc</filename>
locations are defined.</para></listitem>
<listitem><para>July 30th, 2003 [gerard]: Chapter 05 - Binutils Pass2:
removed the lib patch, it's no longer needed with the binutils-2.14
upgrade.</para></listitem>
<listitem><para>July 30th, 2003 [gerard]: Chapter 05 Binutils Pass1: Added
<userinput>make configure-host</userinput>.</para></listitem>
<listitem><para>July 30th, 2003 [gerard]: Upgraded to binutils-2.14,
linux-2.4.21, expect-5.38.4, gawk-3.1.3, texinfo-4.6, util-linux-2.12,
man-pages-1.58, lfs-utils-0.3, vim-6.2, gettext-0.12.1, automake-1.7.6,
file-4.03, e2fsprogs-1.34, procps-3.1.11, psmisc-21.3</para></listitem>
<listitem><para>June 3rd, 2003 [gerard]: Chapter 06 - Gawk: removed the
removal of <filename>/bin/awk</filename>. This symlink isn't created
anymore.</para></listitem>
<listitem><para>May 21st, 2003 [gerard]: Chapter 06 - GCC-2.95.3: Added
/opt/gcc-2.95.3/lib to the /etc/ld.so.conf file so the libraries can be
found during run-time.</para></listitem>
<listitem><para>May 21st, 2003 [gerard]: Chapter 05 - Gzip: Simplified
commands.</para></listitem>
<listitem><para>May 21st, 2003 [gerard]: Chapter 05 - Bzip2: Simplified
commands.</para></listitem>
<listitem><para>May 21st, 2003 [gerard]: Chapter 06 - Shadow: Added the
<userinput>grpconv</userinput> command to complement the enabling of all
shadowed passwords.</para></listitem>
<listitem><para>May 21st, 2003 [winkie]: Chapter 06 - Creating Files: All
those <userinput>ln</userinput> commands can be made into a few long ln
commands.</para></listitem>
<listitem><para>May 21st, 2003 [winkie]: Chapter 05 - Installing
Glibc: Create an ld.so.conf file before building Glibc, to prevent an
(harmless) error.</para></listitem>
<listitem><para>May 21st, 2003 [winkie]: Chapter 06 - Installing Glibc:
Don't bother doing the 'exec /stage1/bin/bash' stuff, it doesn't do anything
now that we use PLFS.</para></listitem>
<listitem><para>May 21st, 2003 [winkie]: Chapter 05 & 06 - Installing
Coreutils: Only test the non-root stuff in Chapter 05, but test everything
in Chapter 06.</para></listitem>
<listitem><para>May 21st, 2003 [winkie]: Chapter 05 - Installing Expect:
Don't bother passing anything more than --prefix=/stage1. None of it is
needed.</para></listitem>
<listitem><para>May 16th, 2003 [gerard]: Chapter 06: Net-tools: Changed
<userinput>make install</userinput> to <userinput>make
update</userinput>.</para></listitem>
<listitem><para>May 15th, 2003 [timothy]: Chapter 05: Installing Patch:
Added <userinput>CPPFLAGS=-D_GNU_SOURCE</userinput> before
<userinput>./configure</userinput> to fix patch build on PPC.</para></listitem>
<listitem><para>May 13th, 2003 [gerard]: Chapter 06: When we
<userinput>exec /path/to/bash --login</userinput>, also run <userinput>set
+h</userinput> to keep the hashing option turned off. Fixes bug
#531</para></listitem>
<listitem><para>May 13th, 2003 [gerard]: Chapter 06 - Basic Network:
Changed the single quotes to double quotes in the echo command. Without it,
$(hostname) won't expand which defeats the sole purpose of this command -
to make Perl's hostname check work.</para></listitem>
<listitem><para>May 13th, 2003 [winkie]: Removed all occurrences &&.
Updated bug syntax. Added "make check/test" where necessary in Chapter
6.</para></listitem>
<listitem><para>May 13th, 2003 [winkie]: Chapter 06: Applied "Changing
ownership" patch to polish the text. Closes bug #511.</para></listitem>
<listitem><para>May 13th, 2003 [winkie]: Chapter 06: Applied "Configuring
system components" patch to polish the text. Closes bug #510.</para></listitem>
<listitem><para>May 13th, 2003 [gerard]: Chapter 06: Removed Tcl, Expect
and DejaGnu. Nothing uses this once past GCC in chapter 6. The versions
in /stage1/bin do the job just fine.</para></listitem>
<listitem><para>May 13th, 2003 [winkie]: Chapter 06 - Installing Shadow:
Touching the /usr/bin/passwd file before installation. Not doing so results in
Shadow thinking passwd will be in /bin/passwd.</para></listitem>
<listitem><para>May 13th, 2003 [winkie]: Chapter 06 - Installing Procps:
Remove the /lib/libproc.so symlink. No package outside of Procps itself
uses this library, and none should.</para></listitem>
<listitem><para>May 13th, 2003 [winkie]: Chapter 06 - Installing Net-tools:
Run "make config" before doing make. Fixes bugs #462 and
#497.</para></listitem>
<listitem><para>May 13th, 2003 [gerard]: Chapter 06 - Ncurses: Added the
vsscanf patch.</para></listitem>
<listitem><para>May 12th, 2003 [gerard]: Chapter 05 - Gzip: Removed
<userinput>make check</userinput>. It doesn't do
anything.</para></listitem>
<listitem><para>May 12th, 2003 [winkie]: Chapter 05 - Installing Texinfo:
Don't install the texmf data. It's not used by anything.</para></listitem>
<listitem><para>May 12th, 2003 [winkie]: Chapter 05 & 06 - Installing
Ncurses: In Chapter 6, symlink creation has been updated to include
libcurses.*, and libncurses++.a has its properties changed to 644.
Chapter 5 doesn't need any libcurses.* so those are removed.</para></listitem>
<listitem><para>May 12th, 2003 [gerard]: Chapter 06 - Basic Network: Added
$(hostname) to /etc/hosts, without it Perl's hostname test doesn't
pass.</para></listitem>
<listitem><para>May 12th, 2003 [gerard]: Chapter 06 - Installing GCC:
Don't try to remove /usr/include/libiberty.h. It isn't installed in the
first place.</para></listitem>
<listitem><para>May 12th, 2003 [winkie]: Upgraded to findutils-4.1.7,
gzip-1.3.5, and tar-1.13.25.</para></listitem>
<listitem><para>May 12th, 2003 [winkie]: Chapter 05 - Installing Perl:
Added extra commands to build certain modules into Perl. This is to accommodate
the Coreutils "make check". Partially fixes bug #528.</para></listitem>
<listitem><para>May 12th, 2003 [winkie]: Chapter 05 - Installing Gzip:
Nothing in Chapter 6 checks for or uses the uncompress command,
therefore we shouldn't create it.</para></listitem>
<listitem><para>May 12th, 2003 [winkie]: Chapter 05 - Installing Bzip2:
Running "make" implies "make check", therefore there is no reason
whatsoever for us to run it manually.</para></listitem>
<listitem><para>May 12th, 2003 [winkie]: Chapter 05 - Installing
Lfs-Utils: Removed. The only package that checks for mktemp before it is
installed is GCC, and that's only for gccbug.</para></listitem>
<listitem><para>May 11th, 2003 [gerard]: Chapter 06 - GCC-2.95.3: Added
--enable-threads=posix as well to complete the C++ addition.</para></listitem>
<listitem><para>May 11th, 2003 [gerard]: Chapter 06 - GCC-2.95.3: Added
--enable-languages=c,c++ to fix that GCC's version bug with regards to
-Wreturn-type. Fixes bug #525</para></listitem>
<listitem><para>May 11th, 2003 [gerard]: Chapter 05 - Bash: Removed the
--without-bash-malloc configure option.</para></listitem>
<listitem><para>May 11th, 2003 [gerard]: Updated to
gcc-3.2.3-specs-4.patch.</para></listitem>
<listitem><para>May 11th, 2003 [winkie]: Chapter 06 - Setting up Basic
Networking: Added section. Create a basic /etc/hosts files, and create
/etc/services and /etc/protocols from IANA. Fixes bugs #359 &
#515.</para></listitem>
<listitem><para>May 11th, 2003 [winkie]: Upgrading to lfs-utils-0.2.2.
This adds two files needed for proper networking configuration.</para></listitem>
<listitem><para>May 11th, 2003 [winkie]: Removed Netkit-base 0.17. Added
Inetutils 1.4.2. Fixes bug #490.</para></listitem>
<listitem><para>May 11th, 2003 [winkie]: Added lfs-utils-0.2.1. Fixes bug
#493.</para></listitem>
<listitem><para>May 11th, 2003 [winkie]: Chapter 06 - Installing Ncurses:
Fix up the symlinks so that they follow suit of other library symlinks.
No more weirdness here.</para></listitem>
<listitem><para>May 11th, 2003 [winkie]: Chapter 06 - Installing Procps:
Removed XSCPT="" cruft and its corresponding paragraph. This stuff
isn't needed anymore.</para></listitem>
<listitem><para>May 11th, 2003 [winkie]: Chapter 06 - Installing Ncurses:
Pass --without-debug to the configure script. It seems to have gotten
lost at some point.</para></listitem>
<listitem><para>May 11th, 2003 [timothy]: Chapter 5 & 6 - Installing
Bzip2, Installing Zlib: Modified build commands per bug #524.</para></listitem>
<listitem><para>May 11th, 2003 [winkie]: Chapter 06 - Installing Glibc:
Install the linuxthreads man pages, too. This got lost somewhere.</para></listitem>
<listitem><para>May 11th, 2003 [winkie]: Chapter 06 - Installing Grep:
Added --with-included-regex to prevent Grep from using Glibc's somewhat
bugged regex.</para></listitem>
<listitem><para>May 11th, 2003 [winkie]: Chapter 06 - Installing Coreutils:
Fix some functionality of the uname command with a patch.</para></listitem>
<listitem><para>May 11th, 2003 [winkie]: Chapter 06 - Installing Net-tools:
Just do regular old "make install" instead of "make update". The latter
works fine now.</para></listitem>
<listitem><para>May 11th, 2003 [winkie]: Chapter 06 - Installing GCC:
After installation, remove /usr/include/libiberty.h. It is not used
outside of the GCC build tree.</para></listitem>
<listitem><para>May 11th, 2003 [winkie]: Upgraded to Bash 2.05b and
added its patch.</para></listitem>
<listitem><para>May 11th, 2003 [winkie]: Chapter 06 - Installing Zlib:
Apply a patch to fix the buffer overflow in gzprintf().</para></listitem>
<listitem><para>May 11th, 2003 [winkie]: Chapter 06 - Configuring system
components: Moved the creation of the btmp, wtmp, lastlog and utmp to
just before Shadow, so that they are detected at their proper locations.</para></listitem>
<listitem><para>May 10th, 2003 [winkie]: Chapter 06 - Installing Automake:
Run "make" before installing. This is needed now with the newer releases
of Automake.</para></listitem>
<listitem><para>May 10th, 2003 [winkie]: Chapter 06 - Installing Vim:
Removed the patch. It hasn't been required since GCC 3.2.1.</para></listitem>
<listitem><para>May 10th, 2003 [winkie]: Chapter 06 - Creating the mtab
file: Removed. Mounting /proc has the side effect of creating /etc/mtab
for us.</para></listitem>
<listitem><para>May 10th, 2003 [winkie]: Chapter 06 - Installing Make:
Removed modification of /usr/bin/make file. It is no longer mistakenly
installed with strange ownership or permissions.</para></listitem>
<listitem><para>May 10th, 2003 [winkie]: Chapter 06 - Installing Glibc:
Made /etc/localtime a file instead of a symlink. The symlink method breaks
on systems where /usr is a separate partition.</para></listitem>
<listitem><para>May 10th, 2003 [winkie]: Chapter 06 - Installing E2fsprogs:
Removed install-info commands for e2fsprogs. The "make install" target
handles this for us.</para></listitem>
<listitem><para>May 10th, 2003 [gerard]: Removed all CFLAGS and LDFLAGS
variables where they are not essential (so, not including static binutils,
GCC and compiling Zlib with -fPIC).</para></listitem>
<listitem><para>May 10th, 2003 [gerard]: Chapter 05 - Binutils (pass1,
pass2), locking in Glibc and adjusting toolchain: Changed tooldir to /stage1
(likewise we use tooldir=/usr in Chapter 6).</para></listitem>
<listitem><para>May 10th, 2003 [gerard]: Chapter 05 - Kernel headers:
Removed the usage of <userinput>cp -H</userinput> because there are
distributions out there that do not know about the
<userinput>-H</userinput> option.</para></listitem>
<listitem><para>May 10th, 2003 [gerard]: New
gcc-3.2.3-specs-3.patch.</para></listitem>
<listitem><para>May 10th, 2003 [gerard]: Chapter 06 - Adjusting toolchain:
Made it more architecture-independent.</para></listitem>
<listitem><para>May 10th, 2003 [gerard]: Chapter 05 - Locking in Glibc:
Made it more architecture-independent.</para></listitem>
<listitem><para>May 7th, 2003 [gerard]: Removed GCC No Debug patches. No
longer assume gcc-core and gcc-g++ packages are downloaded, so added
appropriate --enable-languages options.</para></listitem>
<listitem><para>May 7th, 2003 [gerard]: Removed Chapter 6 - Glibc-Pass2.
It's not needed anymore with the pure-lfs integration.</para></listitem>
<listitem><para>May 7th, 2003 [gerard]: Downgraded to flex-2.5.4a again.
Newer versions just don't work properly.</para></listitem>
<listitem><para>May 5th, 2003 [gerard]: Removed zlib installation from
chapter 5 (its inclusion was a mistake).</para></listitem>
<listitem><para>May 5th, 2003 [gerard]: Various bug fixes that were
introduced during the pure-lfs integration.</para></listitem>
<listitem><para>May 2nd, 2003 [gerard]: Upgraded to: automake-1.7.4,
e2fsprogs-1.33, file-4.02, flex-2.5.31, gawk-3.1.2, gcc-3.2.3, glibc-2.3.2,
grep-2.5.1, groff-1.19, less-381, libtool-1.5, man-1.5l, man-pages-1.56,
modutils-2.4.25, procps-3.1.8, sed-4.0.7, sysvinit-2.85, texinfo-4.5,
util-linux-2.11z</para></listitem>
<listitem><para>May 2nd, 2003 [gerard]: Removed fileutils-4.1,
sh-utils-2.0, textutils-2.1 (all replaced with
coreutils-5.0).</para></listitem>
<listitem><para>May 2nd, 2003 [gerard]: Added binutils-2.13.2-libc.patch,
coreutils-5.0, dejagnu-1.4.3, expect-5.38, gawk-3.1.2, gcc-2.95.3,
tcl-8.4.2</para></listitem>
<listitem><para>May 2nd, 2003 [gerard] - Integrated new installation method
from the Pure LFS hint written by Greg Schafer and Ryan Oliver.</para></listitem>
</itemizedlist>
<para>4.1 - April 28th, 2003</para>
<itemizedlist>
<listitem><para>Upgraded to:
<itemizedlist>
<listitem><para>autoconf-2.57</para></listitem>
<listitem><para>automake-1.7.2</para></listitem>
<listitem><para>bison-1.875</para></listitem>
<listitem><para>e2fsprogs-1.32</para></listitem>
<listitem><para>gawk-3.1.1-3.patch</para></listitem>
<listitem><para>gcc-3.2.1</para></listitem>
<listitem><para>glibc-2.3.1</para></listitem>
<listitem><para>groff-1.18.1</para></listitem>
<listitem><para>kbd-1.08</para></listitem>
<listitem><para>less-378</para></listitem>
<listitem><para>lfs-bootscripts-1.11</para></listitem>
<listitem><para>libtool-1.4.3</para></listitem>
<listitem><para>linux-2.4.20</para></listitem>
<listitem><para>make-3.80</para></listitem>
<listitem><para>man-1.5k-2.patch</para></listitem>
<listitem><para>man-pages-1.54</para></listitem>
<listitem><para>modutils-2.4.22</para></listitem>
<listitem><para>ncurses-5.3</para></listitem>
<listitem><para>procps-3.1.5</para></listitem>
<listitem><para>psmisc-21.2</para></listitem>
<listitem><para>sed-4.0.5</para></listitem>
<listitem><para>texinfo-4.3</para></listitem>
<listitem><para>util-linux-2.11y</para></listitem>
</itemizedlist>
</para></listitem>
<listitem><para>Added:
<itemizedlist>
<listitem><para>findutils-4.1-segfault.patch</para></listitem>
<listitem><para>glibc-2.3.1-libnss.patch</para></listitem>
<listitem><para>glibc-2.3.1-root-perl.patch</para></listitem>
<listitem><para>kbd-1.08.patch</para></listitem>
<listitem><para>man-1.5k-80cols.patch</para></listitem>
<listitem><para>man-1.5k-manpath.patch</para></listitem>
<listitem><para>man-1.5k-pager.patch</para></listitem>
</itemizedlist>
</para></listitem>
<listitem><para>Removed:
<itemizedlist>
<listitem><para>gcc-3.2.1-nofixincludes-2.patch</para></listitem>
<listitem><para>glibc-2.3.1.patch</para></listitem>
<listitem><para>kbd-1.06-3.patch</para></listitem>
<listitem><para>man-1.5k-2.patch</para></listitem>
<listitem><para>ncurses-5.2-2.patch</para></listitem>
</itemizedlist>
</para></listitem>
<listitem><para>February 3rd, 2003 [gerard]: Upgraded to
lfs-bootscripts-1.11 to implement Seth Klein's mtab changes (see entry
below this one).</para></listitem>
<listitem><para>February 3rd, 2003 [sklein]: Chapter 06: Changed
<filename>/etc/mtab</filename> from a symlink to a file.</para></listitem>
<listitem><para>January 29th, 2003 [gerard]: Chapter 06 - GCC: Changed the
install target to install-no-fixedincludes.</para></listitem>
<listitem><para>January 29th, 2003 [gerard]: Downgraded to binutils-2.13.2
due to a GCC bug that can't parse the version string of binutils 2.13.2.1.
The only changes between 2.13.2 and 2.13.2.1 are documentation changes, so
there is no actual code downgrade. A better fix will be added to the book
later.</para></listitem>
<listitem><para>January 27th, 2003 [gerard, timothy, billy]: Converted the
software installation pages into a new format. Also merged software
installations with their configure components from "Configuring essential
software".</para></listitem>
<listitem><para>January 22nd, 2003 [timothy]: Chapter 06 - Configuring
essential software: Corrected kernel directory for keymap
location.</para></listitem>
<listitem><para>January 10th, 2003 [gerard]: Added a new chroot command after
the second Glibc installation that is to be used from that point
onwards.</para></listitem>
<listitem><para>January 9th, 2003 [timothy]: Appendix A - Gzip:
Added patch URL.</para></listitem>
<listitem><para>January 9th, 2003 [timothy]: Chapter 05 - Findutils:
Removed -D_GNU_SOURCE flag for now because it's breaking compilation;
4 people have reported this bug.</para></listitem>
<listitem><para>January 8th, 2003 [timothy]: Chapter 05 - Findutils:
Added missing <emphasis>/</emphasis> before <filename>configure</filename>
line.</para></listitem>
<listitem><para>January 6th, 2003 [gerard]: Chapter 06 - Bison: removed
yacc script creation. Bison now installs this by default.</para></listitem>
<listitem><para>January 6th, 2003 [gerard]: Upgraded to Binutils-2.13.2.1,
Bison-1.875 and Man-pages-1.54</para></listitem>
<listitem><para>January 6th, 2003 [gerard]: Chapter 05+06 - Findutils:
Added <emphasis>CPPFLAGS=-D_GNU_SOURCE</emphasis> to promote proper
compiling on non-x86 architectures.</para></listitem>
<listitem><para>January 6th, 2003 [gerard]: Chapter 06 - Zlib: Added CFLAGS
variable to define -fPIC so the dynamic library gets compiled properly at
all times.</para></listitem>
<listitem><para>January 5th, 2003 [timothy]: Chapter 05 - Applied a revised
version of Alex's patch to split the <emphasis>Install all software as an
unprivileged user</emphasis> page into two pages: <emphasis>Adding the user
lfs</emphasis> and <emphasis>Setting up the
environment</emphasis>.</para></listitem>
<listitem><para>January 2nd, 2003 [gerard]: Chapter 05 - All packages whose
configure script supports the LDFLAGS environment variable now use it
rather than passing the variable down to
<userinput>make</userinput>.</para></listitem>
<listitem><para>January 2nd, 2003 [gerard]: Chapter 06 - Fixed the gawk
patch. <userinput>make uninstall</userinput> will no longer wipe out the
<filename class="directory">/usr/bin</filename> directory. Also, renamed
<filename class="directory">/usr/share/gawk</filename> to
<filename class="directory">/usr/share/gawk-3.1.1</filename>.</para></listitem>
<listitem><para>January 2nd, 2003 [gerard]: Replaced the glibc-2.3.1
mega-patch with two separate patches (glibc-2.3.1-root-perl.patch and
glibc-2.3.1-libnss.patch).</para></listitem>
<listitem><para>January 2nd, 2003 [gerard]: Replaced the man-1.5k
mega-patch with three separate patches (man-1.5k-80cols.patch,
man-1.5k-manpath.patch and man-1.5k-pager.patch).</para></listitem>
<listitem><para>January 1st, 2003 [gerard]: Chapter 06 - Glibc Second Pass:
Fixed typo in linuxthreads man pages installation.</para></listitem>
<listitem><para>January 1st, 2003 [gerard]: Chapter 06 - Linux Kernel: The
man pages can't be installed here because it requires Perl. Moved to end of
chapter 6.</para></listitem>
<listitem><para>December 31st, 2002 [gerard]: Chapter 06 - Man: Updated the
patch so man pages are formatted properly on screens with more than 80
columns.</para></listitem>
<listitem><para>December 31st, 2002 [gerard]: Chapter 06 - Linux: Added
<emphasis>make mandocs</emphasis> to create man pages and copy them to
<filename
class="directory">/usr/share/man/man9</filename></para></listitem>
<listitem><para>December 31st, 2002 [gerard]: Appendix A - Bzip2: Changed
the download location to http://sources.redhat.com/bzip2</para></listitem>
<listitem><para>December 31st, 2002 [gerard]: Chapter 06: Added second
Glibc installation at the end of the chapter. Removed the separate
linuxthreads man-pages installation and moved that to the second Glibc
installation.</para></listitem>
<listitem><para>December 31st, 2002 [gerard]: Upgraded to
Glibc-2.3.1</para></listitem>
<listitem><para>December 31st, 2002 [gerard]: Chapter 05 - GCC: Removed
nofixincludes patch and use the built-in
<emphasis>install-no-fixedincludes</emphasis> make
target.</para></listitem>
<listitem><para>December 31st, 2002 [gerard]: Chapter 05 - GCC: Removed
<emphasis>HAVE_GAS_HIDDEN</emphasis>, added <emphasis>--with-ld and
--with-as</emphasis> configure switches.</para></listitem>
<listitem><para>December 29th, 2002 [timothy]: Updated to
binutils-2.13.2, procps-3.1.5.</para></listitem>
<listitem><para>December 29th, 2002 [timothy]: Chapter 05:
Changed all LDFLAGS=-static to LDFLAGS="-static".</para></listitem>
<listitem><para>December 29th, 2002 [timothy]: Chapter 06 - Flex:
Added symlink from libfl.a to libl.a.</para></listitem>
<listitem><para>December 20th, 2002 [timothy]: Updated to
sed-4.0.5.</para></listitem>
<listitem><para>December 18th, 2002 [timothy]: Updated to
procps-3.1.4.</para></listitem>
<listitem><para>December 17th, 2002 [timothy]: Chapter 5 & 6: Modified
paragraphs about unpacking patches since they are no longer
compressed.</para></listitem>
<listitem><para>December 15th, 2002 [timothy]: Updated to autoconf-2.57,
automake-1.7.2, binutils-2.13.1, e2fsprogs-1.32, gcc-3.2.1, libtool-1.4.3,
linux-2.4.20, modutils-2.4.22, procps-3.1.3, sed-4.0.4, texinfo-4.3,
util-linux-2.11y.</para></listitem>
<listitem><para>December 15th, 2002 [timothy]: Chapter 06 - Glibc: Removed
warning about --enable-kernel.</para></listitem>
<listitem><para>December 10th, 2002 [gerard]: Chapter 04 - Changed all
links into Freshmeat.net project links, removed lfs-packages tarball. This
was done because the LFS FTP archive won't contain the packages anymore,
instead you have to go to the package's download sites to get
them.</para></listitem>
<listitem><para>December 5th, 2002 [gerard]: Chapter 08 - Renamed
<emphasis>usbdevfs</emphasis> into <emphasis>usbfs</emphasis> as the kernel
guys made this change to reduce confusion with
<emphasis>devfs</emphasis>.</para></listitem>
<listitem><para>December 3rd, 2002 [gerard]: Chapter 05 - Sed: Added
--disable-nls</para></listitem>
<listitem><para>December 3rd, 2002 [gerard]: Chapter 03 - Creating
filesystem: Added a note that <userinput>mkswap</userinput> has to be run
if a new swap partition has been created.</para></listitem>
<listitem><para>December 3rd, 2002 [gerard]: Chapter 06 - Bzip2: Removed
unnecessary lines that first create a symlink, then remove it
again.</para></listitem>
<listitem><para>December 3rd, 2002 [gerard]: Appendix A - Bzip2: Updated
the download URL.</para></listitem>
<listitem><para>December 3rd, 2002 [gerard]: Chapter 06 - Groff: Removed
the <emphasis>PROCESSEDEXAMPLEFILES=""</emphasis>
variables.</para></listitem>
<listitem><para>October 25th, 2002 [timothy]: Preface: Added
"Prerequisites" section.</para></listitem>
<listitem><para>October 25th, 2002 [timothy]: Chapter 09: Added "What now?"
section.</para></listitem>
<listitem><para>October 25th, 2002 [timothy]: Removed
Appendix B.</para></listitem>
<listitem><para>October 25th, 2002 [timothy]: Chapter 02: Removed "Which
Platform" section.</para></listitem>
<listitem><para>October 23rd, 2002 [timothy]: Swapped chapter03 and
chapter04.</para></listitem>
<listitem><para>October 23rd, 2002 [timothy]: Chapter 02: Removed "Where
to store the downloaded software" and "How to install the software"
sections.</para></listitem>
<listitem><para>October 23rd, 2002 [timothy]: Upgraded to bison-1.75,
sed-4.0. Moved m4 before bison to meet its dependency.</para></listitem>
<listitem><para>October 21st, 2002 [timothy]: Chapter 06 - Linux-2.4.19:
Replaced <userinput>mkdir /usr/include/asm</userinput> and
<userinput>cp</userinput> command with
<userinput>cp -HR</userinput>.</para></listitem>
<listitem><para>October 21st, 2002 [timothy]: Added findutils-4.1-segfault.patch
to fix a segfault in locate when it encounters a very long path
name.</para></listitem>
<listitem><para>October 21st, 2002 [timothy]: Added libtool-1.4.2.patch to fix
an incompatibility between Autoconf 2.53 and Libtool 1.4.x.</para></listitem>
<listitem><para>October 21st, 2002 [timothy]: Upgraded to automake-1.7.1,
modutils-2.4.21, man-pages-1.53, kbd-1.08, util-linux-2.11w, autoconf-2.54,
e2fsprogs-1.29, groff-1.18.1, psmisc-21.2, less-378, procps-3.0.4,
make-3.80, ncurses-5.3.</para></listitem>
<listitem><para>October 20th, 2002 [timothy]: Uncompressed
patches.</para></listitem>
<listitem><para>October 13th, 2002 [markh]: Chapter 05 - Bzip2: Added -s
to CC argument to make it consistent.</para></listitem>
<listitem><para>October 6th, 2002 [timothy]: Switched to gcc-core and
gcc-g++.</para></listitem>
<listitem><para>October 6th, 2002 [timothy]: Chapter 06 - Applied Bill
Maltby's grammatic-fixes patch.</para></listitem>
</itemizedlist>
</sect1>
|