From 79fccff18f1f24eb2d818edc602ace3e09866b41 Mon Sep 17 00:00:00 2001 From: Xi Ruoyao Date: Wed, 19 Feb 2025 19:18:52 +0800 Subject: [PATCH 01/14] gen-changelog: Fix HTTP 403 accessing trac Use the new anonymous ticket list URL. --- gen-changelog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gen-changelog.py b/gen-changelog.py index 3bf6bc064..473554045 100755 --- a/gen-changelog.py +++ b/gen-changelog.py @@ -62,7 +62,7 @@ rem = rem.symmetric_difference(upd) ticket = {} security = set() -url = 'https://wiki.linuxfromscratch.org/lfs/report/1?format=tab' +url = 'https://wiki.linuxfromscratch.org/lfs/query?status=!closed&order=priority&format=tab' tsv = urlopen(url) for i in tsv: fields = i.decode().split('\t') From 5616cb8ee9d787f5cbb1941c043f058af7a6d39e Mon Sep 17 00:00:00 2001 From: Xi Ruoyao Date: Wed, 19 Feb 2025 19:19:42 +0800 Subject: [PATCH 02/14] Package update - Update to man-pages-6.11 (#5646) - Update to vim-9.1.1122 (#4500) --- chapter01/changelog.xml | 14 ++++++++++++++ chapter08/man-pages.xml | 27 ++++++++++++++++++++++++++- packages.ent | 12 ++++++------ 3 files changed, 46 insertions(+), 7 deletions(-) diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index 45190d8c9..4d4d9bc0c 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -40,6 +40,20 @@ appropriate for the entry or if needed the entire day's listitem. --> + + 2025-02-19 + + + [xry111] - Update to vim-9.1.1122 (Security Update). + Addresses #4500. + + + [xry111] - Update to man-pages-6.11. Fixes + #5646. + + + + 2025-02-13 diff --git a/chapter08/man-pages.xml b/chapter08/man-pages.xml index 54029fd2d..6c196c202 100644 --- a/chapter08/man-pages.xml +++ b/chapter08/man-pages.xml @@ -48,7 +48,32 @@ Install Man-pages by running: -make prefix=/usr install +make -R GIT=false prefix=/usr install + + + The meaning of the options: + + + + -R + + This prevents make from setting any + built-in variables. The building system of man-pages does not + work well with built-in variables, but currently there is no way + to disable them except passing -R + explicitly via the command line. + + + + + GIT=false + + This prevents the building system from emitting many + git: command not found + warnings lines. + + + diff --git a/packages.ent b/packages.ent index 6966b1653..4504a8922 100644 --- a/packages.ent +++ b/packages.ent @@ -487,10 +487,10 @@ - - + + - + @@ -744,10 +744,10 @@ - + - + - + From 6f76f192b9b3befed92d66784f78e22116c15fcf Mon Sep 17 00:00:00 2001 From: Xi Ruoyao Date: Wed, 19 Feb 2025 23:19:32 +0800 Subject: [PATCH 03/14] gcc: Document tsan failures with some host distros --- chapter08/gcc.xml | 25 +++++++------------------ 1 file changed, 7 insertions(+), 18 deletions(-) diff --git a/chapter08/gcc.xml b/chapter08/gcc.xml index b3397d8be..f0616e2cd 100644 --- a/chapter08/gcc.xml +++ b/chapter08/gcc.xml @@ -173,26 +173,15 @@ su tester -c "PATH=$PATH make -k check" Results can be compared with those located at and . - + The tsan tests are known to fail on some host distros. - For g++, 21 tests (out of approximately 250,000): 14 - AddressSanitizer* - tests and 7 interception-malloc-test-1.C tests, are - known to fail. - - Additionally, several tests in the - vect directory are known to fail - if the hardware does not support AVX. ---> A few unexpected failures cannot always be avoided. In some cases test failures depend on the specific hardware of the system. From 28a01fdcab66597dd34ebcb2b72c69241e7b30ab Mon Sep 17 00:00:00 2001 From: Xi Ruoyao Date: Wed, 19 Feb 2025 23:29:44 +0800 Subject: [PATCH 04/14] systemd: Document test-copy failure (I/O congestion) --- chapter08/systemd.xml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/chapter08/systemd.xml b/chapter08/systemd.xml index 1e17c60ce..989082419 100644 --- a/chapter08/systemd.xml +++ b/chapter08/systemd.xml @@ -228,7 +228,11 @@ ninja test after initializing the system with systemd. --> One test named systemd:core / test-namespace is known to fail in the LFS chroot environment. Some other tests may - fail because they depend on various kernel configuration options. + fail because they depend on various kernel configuration options. + The test named systemd:test / test-copy may time out + due to an I/O congestion with a large parallel job number, but it + would pass if running alone with + meson test test-copy. Install the package: From 65f0a28feb4e52806551e4b00274300d4f2126ac Mon Sep 17 00:00:00 2001 From: Xi Ruoyao Date: Wed, 19 Feb 2025 23:31:55 +0800 Subject: [PATCH 05/14] e2fsprogs: Document test failure with non-ext fs Someone building LFS on btrfs reported this, and I can reproduce. --- chapter08/e2fsprogs.xml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/chapter08/e2fsprogs.xml b/chapter08/e2fsprogs.xml index d99922610..6f93dc99e 100644 --- a/chapter08/e2fsprogs.xml +++ b/chapter08/e2fsprogs.xml @@ -93,9 +93,12 @@ cd build make check - + One test named m_assume_storage_prezeroed - is known to fail. + is known to fail. Another test named m_rootdir_acl + is known to fail if the file system used for the LFS system is not + ext4. - To test the results (this takes a long time, around 3 SBUs), - issue: + To test the results, issue: make check diff --git a/chapter08/libtool.xml b/chapter08/libtool.xml index be88fa169..872495afd 100644 --- a/chapter08/libtool.xml +++ b/chapter08/libtool.xml @@ -50,7 +50,7 @@ make -To test the results, issue: +To test the results, issue: make check diff --git a/chapter08/perl.xml b/chapter08/perl.xml index 0d2937e05..b678f7f9d 100644 --- a/chapter08/perl.xml +++ b/chapter08/perl.xml @@ -104,7 +104,7 @@ export BUILD_BZIP2=0 make - To test the results (approximately 11 SBU), issue: + To test the results, issue: TEST_JOBS=$(nproc) make test_harness From 2b2e9cddbc2b6fc568f3a0510f0a7b0f01643367 Mon Sep 17 00:00:00 2001 From: Bruce Dubbs Date: Mon, 24 Feb 2025 11:52:50 -0600 Subject: [PATCH 08/14] Update to man-pages-6.12. --- chapter01/changelog.xml | 10 ++++++++++ packages.ent | 6 +++--- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index 4d4d9bc0c..a26b7a679 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -40,6 +40,16 @@ appropriate for the entry or if needed the entire day's listitem. --> + + 2025-02-24 + + + [bdubbs] - Update to man-pages-6.12. Fixes + #5658. + + + + 2025-02-19 diff --git a/packages.ent b/packages.ent index 4504a8922..74c89e39c 100644 --- a/packages.ent +++ b/packages.ent @@ -487,10 +487,10 @@ - - + + - + From 49b6a5ff00eea142f85d7dffddf3dadbfac4e424 Mon Sep 17 00:00:00 2001 From: Zeckmathederg Date: Mon, 24 Feb 2025 18:07:05 -0700 Subject: [PATCH 09/14] inetutils: Remove extra :. --- chapter08/inetutils.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapter08/inetutils.xml b/chapter08/inetutils.xml index 693c08405..5b4f32b78 100644 --- a/chapter08/inetutils.xml +++ b/chapter08/inetutils.xml @@ -40,7 +40,7 @@ Installation of Inetutils - First, make the package build with gcc-14.1 or later:: + First, make the package build with gcc-14.1 or later: sed -i 's/def HAVE_TERMCAP_TGETENT/ 1/' telnet/telnet.c From d35857c7bb1eef4554bba06fcda5c8f673ec8e2b Mon Sep 17 00:00:00 2001 From: Bruce Dubbs Date: Thu, 27 Feb 2025 11:07:22 -0600 Subject: [PATCH 10/14] Package updates and mic fixes. Update to zstd-1.5.7. Update to systemd-257.3. Update to shadow-4.17.3. Update to setuptools-75.8.1. Update to linux-6.13.4. Update to kmod-34. Update to inetutils-2.6. Update to gettext-0.24. Update to flit_core-3.11.0. Remove $LFS/{bin,lib,sbin} from the chown commands This applies to 'Section 4.3. Adding the LFS User' Remove static library in sysklogd Accomplished with adding --disable-static to the configure options. --- chapter01/changelog.xml | 42 ++++++++++++++++++++++++++++ chapter01/whatsnew.xml | 12 ++++---- chapter04/addinguser.xml | 2 +- chapter08/chapter08.xml | 2 +- chapter08/kmod.xml | 53 ++++++++--------------------------- chapter08/sysklogd.xml | 1 + packages.ent | 60 ++++++++++++++++++++-------------------- 7 files changed, 92 insertions(+), 80 deletions(-) diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index a26b7a679..f04c6ec74 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -40,6 +40,48 @@ appropriate for the entry or if needed the entire day's listitem. --> + + 2025-02-27 + + + [bdubbs] - Update to zstd-1.5.7. Fixes + #5652. + + + [bdubbs] - Update to systemd-257.3. Fixes + #5612. + + + [bdubbs] - Update to shadow-4.17.3. Fixes + #5660. + + + [bdubbs] - Update to setuptools-75.8.1. Fixes + #5662. + + + [bdubbs] - Update to linux-6.13.4. Fixes + #5647. + + + [bdubbs] - Update to kmod-34. Fixes + #5657. + + + [bdubbs] - Update to inetutils-2.6. Fixes + #5656. + + + [bdubbs] - Update to gettext-0.24. Fixes + #5661. + + + [bdubbs] - Update to flit_core-3.11.0. Fixes + #5654. + + + + 2025-02-24 diff --git a/chapter01/whatsnew.xml b/chapter01/whatsnew.xml index dc748661e..16f23520d 100644 --- a/chapter01/whatsnew.xml +++ b/chapter01/whatsnew.xml @@ -125,9 +125,9 @@ Iana-Etc-&iana-etc-version; - + @@ -140,9 +140,9 @@ Kbd-&kbd-version; - + Less-&less-version; @@ -278,9 +278,9 @@ - + - + - + - + - + - - + + - + @@ -804,10 +804,10 @@ - - + + - + From e9c3828c53b509aada4c61b92df6326a10a7e93f Mon Sep 17 00:00:00 2001 From: Bruce Dubbs Date: Sun, 2 Mar 2025 20:18:14 -0600 Subject: [PATCH 11/14] Update to vim-9.1.1166 (Security Update). --- chapter01/changelog.xml | 10 ++++++++++ packages.ent | 6 +++--- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index f04c6ec74..d6544eaf8 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -40,6 +40,16 @@ appropriate for the entry or if needed the entire day's listitem. --> + + 2025-03-02 + + + [bdubbs] - Update to vim-9.1.1166 (Security Update). Fixes + #56566. + + + + 2025-02-27 diff --git a/packages.ent b/packages.ent index eb4de2500..48fff096f 100644 --- a/packages.ent +++ b/packages.ent @@ -744,10 +744,10 @@ - + - + - + From 00d6cce3cd03cf8e836c882fe2a32892315ff049 Mon Sep 17 00:00:00 2001 From: Pierre Labastie Date: Tue, 4 Mar 2025 14:29:02 +0100 Subject: [PATCH 12/14] hangelog: fix ticket # for recent vim update --- chapter01/changelog.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index d6544eaf8..7780b3dc9 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -45,7 +45,7 @@ [bdubbs] - Update to vim-9.1.1166 (Security Update). Fixes - #56566. + #5666. From aa990ecf0a2d6dfc993a3ee9df9c3c6951d514f8 Mon Sep 17 00:00:00 2001 From: Bruce Dubbs Date: Tue, 4 Mar 2025 12:01:48 -0600 Subject: [PATCH 13/14] Update for LFS-12.3. --- chapter01/changelog.xml | 593 +--------------------------------------- chapter01/whatsnew.xml | 200 +++++++------- 2 files changed, 101 insertions(+), 692 deletions(-) diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index 7780b3dc9..fe102da7f 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -41,598 +41,7 @@ --> - 2025-03-02 - - - [bdubbs] - Update to vim-9.1.1166 (Security Update). Fixes - #5666. - - - - - - 2025-02-27 - - - [bdubbs] - Update to zstd-1.5.7. Fixes - #5652. - - - [bdubbs] - Update to systemd-257.3. Fixes - #5612. - - - [bdubbs] - Update to shadow-4.17.3. Fixes - #5660. - - - [bdubbs] - Update to setuptools-75.8.1. Fixes - #5662. - - - [bdubbs] - Update to linux-6.13.4. Fixes - #5647. - - - [bdubbs] - Update to kmod-34. Fixes - #5657. - - - [bdubbs] - Update to inetutils-2.6. Fixes - #5656. - - - [bdubbs] - Update to gettext-0.24. Fixes - #5661. - - - [bdubbs] - Update to flit_core-3.11.0. Fixes - #5654. - - - - - - 2025-02-24 - - - [bdubbs] - Update to man-pages-6.12. Fixes - #5658. - - - - - - 2025-02-19 - - - [xry111] - Update to vim-9.1.1122 (Security Update). - Addresses #4500. - - - [xry111] - Update to man-pages-6.11. Fixes - #5646. - - - - - - 2025-02-13 - - - [bdubbs] - Update to vim-9.1.1106. Addresses - #4500. - - - [bdubbs] - Update to diffutils-3.11. Fixes - #5639. - - - [bdubbs] - Update to libffi-3.4.7. Fixes - #5642. - - - [bdubbs] - Update to linux-6.13.2. Fixes - #5643. - - - [bdubbs] - Update to Python3-3.13.2. Fixes - #5640. - - - [bdubbs] - Update to sysvinit-3.14. Fixes - #5641. - - - - - - 2025-02-02 - - - [bdubbs] - Update to vim-9.1.1071. Addresses - #4500. - - - [bdubbs] - Update to iana-etc-20250123. Addresses - #5006. - - - [bdubbs] - Update to binutils-2.44.0. Fixes - #5634. - - - [bdubbs] - Update to coreutils-9.6. Fixes - #5628. - - - [bdubbs] - Update to e2fsprogs-1.47.2. Fixes - #5637. - - - [bdubbs] - Update to glibc-2.41. Fixes - #5638. - - - [bdubbs] - Update to iproute2-6.13.0. Fixes - #5631. - - - [bdubbs] - Update to libxcrypt-4.4.38. Fixes - #5626. - - - [bdubbs] - Update to linux-6.13.1. Fixes - #5629. - - - [bdubbs] - Update to man-pages-6.10. Fixes - #5632. - - - [bdubbs] - Update to meson-1.7.0. Fixes - #5636. - - - [bdubbs] - Update to perl-5.40.1. Fixes - #5630. - - - [bdubbs] - Update to tcl8.6.16. Fixes - #5635. - - - [bdubbs] - Update to tzdata2025a. Fixes - #5627. - - - [bdubbs] - Update to xz-5.6.4. Fixes - #5633. - - - - - - 2025-01-15 - - - [bdubbs] - Update to vim-9.1.1016. Addresses - #4500. - - - [bdubbs] - Update to iana-etc-20250108. Addresses - #5006. - - - [bdubbs] - Update to util-linux-2.40.4. Fixes - #5624. - - - [bdubbs] - Update to sysvinit-3.13. Fixes - #5621. - - - [bdubbs] - Update to sysklogd-2.7.0. Fixes - #5623. - - - [bdubbs] - Update to shadow-4.17.2. Fixes - #5625. - - - [bdubbs] - Update to setuptools-75.8.0. Fixes - #5622. - - - [bdubbs] - Update to linux-6.12.9. Fixes - #5620. - - - [bdubbs] - Update to gettext-0.23.1. Fixes - #5619. - - - - - - 2025-01-01 - - - [renodr] - Update to libxcrypt-4.4.37. Fixes - #5618. - - - [renodr] - Update to dbus-1.16.0. Fixes - #5609. - - - [bdubbs] - Update to iana-etc-20241220. Addresses - #5006. - - - [bdubbs] - Update to texinfo-7.2. Fixes - #5616. - - - [bdubbs] - Update to sysvinit-3.12. Fixes - #5615. - - - [bdubbs] - Update to shadow-4.17.1. Fixes - #5617. - - - [bdubbs] - Update to procps-ng-4.0.5. Fixes - #5611. - - - [bdubbs] - Update to meson-1.6.1. Fixes - #5610. - - - [bdubbs] - Update to linux-6.12.7. Fixes - #5613. - - - [bdubbs] - Update to kbd-2.7.1. Fixes - #5608. - - - [bdubbs] - Update to jinja2-3.1.5 (Security Update). Fixes - #5614. - - - - - - 2024-12-15 - - - [bdubbs] - Update to vim-9.1.0927. Addresses - #4500. - - - [bdubbs] - Update to iana-etc-20241206. Addresses - #5006. - - - [bdubbs] - Update to systemd-257. Fixes - #5559. - - - [bdubbs] - Update to Python-3.13.1 (Security Update). Fixes - #5605. - - - [bdubbs] - Update to libcap-2.73. Fixes - #5604. - - - [bdubbs] - Update to linux-6.12.5. Fixes - #5607. - - - [bdubbs] - Update to kbd-2.7. Fixes - #5608. - - - [bdubbs] - Update to gettext-0.23. Fixes - #5603. - - - - - - 2024-12-01 - - - [bdubbs] - Update to iana-etc-20241122. Addresses - #5006. - - - [bdubbs] - Update to file-5.46. Fixes - #5601. - - - [bdubbs] - Update to iproute2-6.12.0. Fixes - #5597. - - - [bdubbs] - Update to libtool-2.5.4. Fixes - #5598. - - - [bdubbs] - Update to linux-6.12.1. Fixes - #5586. - - - [bdubbs] - Update to setuptools-75.6.0 (Python Module). Fixes - #5599. - - - [bdubbs] - Update to wheel-0.45.1 (Python Module). Fixes - #5600. - - - - - - 2024-11-15 - - - [bdubbs] - Update to vim-9.1.0866. Addresses - #4500. - - - [bdubbs] - Update to iana-etc-20241024. Addresses - #5006. - - - [bdubbs] - Update to wheel-0.45.0 (Python Module). Fixes - #5593. - - - [bdubbs] - Update to setuptools-75.5.0 (Python Module). Fixes - #5595. - - - [bdubbs] - Update to linux-6.11.8. Fixes - #5582. - - - [bdubbs] - Update to libcap-2.72. Fixes - #5594. - - - - - - 2024-11-08 - - - [bdubbs] - Added binutils-2.43.1-upstream_fix-1.patch. Fixes - #5591. - - - [bdubbs] - Update to flit_core-3.10.1. Fixes - #5589. - - - [bdubbs] - Update to expat-2.6.4. Fixes - #5590. - - - - - - 2024-10-25 - - - [bdubbs] - Update to linux-6.11.6. Fixes - #5588. - - - [bdubbs] - Update to libcap-2.71. Fixes - #5584. - - - [bdubbs] - Update to setuptools-75.3.0. Fixes - #5585. - - - [bdubbs] - Update to flit_core-3.10.0. Fixes - #5587. - - - - - - 2024-10-25 - - - [bdubbs] - Update to iana-etc-20241015. Addresses - #5006. - - - [bdubbs] - Update to vim-9.1.0813. Addresses - #4500. - - - [bdubbs] - Update to xz-5.6.3. Fixes - #5572. - - - [bdubbs] - Update to sysvinit-3.11. Fixes - #5581. - - - [bdubbs] - Update to setuptools-75.2.0. Fixes - #5577. - - - [bdubbs] - Update to Python3-3.13.0. Fixes - #5575. - - - [bdubbs] - Update to openssl-3.4.0. Fixes - #5582. - - - [bdubbs] - Update to meson-1.6.0. Fixes - #5580. - - - [bdubbs] - Update to markupsafe-3.0.2. Fixes - #5576. - - - [bdubbs] - Update to linux-6.11.5. Fixes - #5574. - - - [bdubbs] - Update to less-668. Fixes - #5578. - - - [bdubbs] - Update to elfutils-0.192. Fixes - #5579. - - - - - - 2024-10-03 - - - [bdubbs] - Revert back to tcl8.6.15. - - - - - - 2024-10-01 - - - [bdubbs] - Update to Python3-3.12.7. Fixes - #5571. - - - [bdubbs] - Update to tcl9.0.0. Fixes - #5570. - - - [bdubbs] - Update to linux-6.11.1. Fixes - #5556. - - - [bdubbs] - Update to libtool-2.5.3. Fixes - #5569. - - - [bdubbs] - Update to iproute2-6.11.0. Fixes - #5561. - - - [bdubbs] - Update to bash-5.2.37. Fixes - #5567. - - - [bdubbs] - Update to bc-7.0.3. Fixes - #5568. - - - - - - 2024-09-20 - - - [bdubbs] - Update to vim-9.1.0738. Addresses - #4500. - - - [bdubbs] - Update to texinfo-7.1.1. Fixes - #5558. - - - [bdubbs] - Update to tcl8.6.15. Fixes - #5562. - - - [bdubbs] - Update to sysklogd-2.6.2. Fixes - #5557. - - - [bdubbs] - Update to setuptools-75.1.0. Fixes - #5560. - - - [bdubbs] - Update to meson-1.5.2. Fixes - #5566. - - - [bdubbs] - Update to iana-etc-20240912. Addresses - #5006. - - - [bdubbs] - Update to gawk-5.3.1. Fixes - #5564. - - - [bdubbs] - Update to bc-7.0.2. Fixes - #5563. - - - - - - 2024-09-07 - - - [bdubbs] - Update to tzdata-2024b. Fixes - #5554. - - - [bdubbs] - Update to systemd-256.5. Fixes - #5551. - - - [bdubbs] - Update to setuptools-74.1.2. Fixes - #5546. - - - [bdubbs] - Update to python3-3.12.6. Fixes - #5555. - - - [bdubbs] - Update to openssl-3.3.2. Fixes - #5552. - - - [bdubbs] - Update to man-db-2.13.0. Fixes - #5550. - - - [bdubbs] - Update to linux-6.10.8. Fixes - #5545. - - - [bdubbs] - Update to libpipeline-1.5.8. Fixes - #5548. - - - [bdubbs] - Update to expat-2.6.3. Fixes - #5553. - - - [bdubbs] - Update to bc-7.0.1. Fixes - #5547. - - - - - - 2024-09-01 + 2025-03-05 [bdubbs] - LFS-12.2 released. diff --git a/chapter01/whatsnew.xml b/chapter01/whatsnew.xml index 16f23520d..4eea31a74 100644 --- a/chapter01/whatsnew.xml +++ b/chapter01/whatsnew.xml @@ -23,9 +23,9 @@ Upgraded to: - + @@ -38,15 +38,15 @@ - + + + @@ -56,54 +56,54 @@ - + - + + + + - + - + + - + + @@ -122,54 +122,54 @@ - + + - + + + + + - + + + + + + + @@ -179,18 +179,18 @@ - + + + + @@ -203,84 +203,84 @@ - + - + - + - + - + + + + + - + + + + + + + - + - + - 2025-03-05 + 2025-03-02 + + + [bdubbs] - Update to vim-9.1.1166 (Security Update). Fixes + #5666. + + + + + + 2025-02-27 + + + [bdubbs] - Update to zstd-1.5.7. Fixes + #5652. + + + [bdubbs] - Update to systemd-257.3. Fixes + #5612. + + + [bdubbs] - Update to shadow-4.17.3. Fixes + #5660. + + + [bdubbs] - Update to setuptools-75.8.1. Fixes + #5662. + + + [bdubbs] - Update to linux-6.13.4. Fixes + #5647. + + + [bdubbs] - Update to kmod-34. Fixes + #5657. + + + [bdubbs] - Update to inetutils-2.6. Fixes + #5656. + + + [bdubbs] - Update to gettext-0.24. Fixes + #5661. + + + [bdubbs] - Update to flit_core-3.11.0. Fixes + #5654. + + + + + + 2025-02-24 + + + [bdubbs] - Update to man-pages-6.12. Fixes + #5658. + + + + + + 2025-02-19 + + + [xry111] - Update to vim-9.1.1122 (Security Update). + Addresses #4500. + + + [xry111] - Update to man-pages-6.11. Fixes + #5646. + + + + + + 2025-02-13 + + + [bdubbs] - Update to vim-9.1.1106. Addresses + #4500. + + + [bdubbs] - Update to diffutils-3.11. Fixes + #5639. + + + [bdubbs] - Update to libffi-3.4.7. Fixes + #5642. + + + [bdubbs] - Update to linux-6.13.2. Fixes + #5643. + + + [bdubbs] - Update to Python3-3.13.2. Fixes + #5640. + + + [bdubbs] - Update to sysvinit-3.14. Fixes + #5641. + + + + + + 2025-02-02 + + + [bdubbs] - Update to vim-9.1.1071. Addresses + #4500. + + + [bdubbs] - Update to iana-etc-20250123. Addresses + #5006. + + + [bdubbs] - Update to binutils-2.44.0. Fixes + #5634. + + + [bdubbs] - Update to coreutils-9.6. Fixes + #5628. + + + [bdubbs] - Update to e2fsprogs-1.47.2. Fixes + #5637. + + + [bdubbs] - Update to glibc-2.41. Fixes + #5638. + + + [bdubbs] - Update to iproute2-6.13.0. Fixes + #5631. + + + [bdubbs] - Update to libxcrypt-4.4.38. Fixes + #5626. + + + [bdubbs] - Update to linux-6.13.1. Fixes + #5629. + + + [bdubbs] - Update to man-pages-6.10. Fixes + #5632. + + + [bdubbs] - Update to meson-1.7.0. Fixes + #5636. + + + [bdubbs] - Update to perl-5.40.1. Fixes + #5630. + + + [bdubbs] - Update to tcl8.6.16. Fixes + #5635. + + + [bdubbs] - Update to tzdata2025a. Fixes + #5627. + + + [bdubbs] - Update to xz-5.6.4. Fixes + #5633. + + + + + + 2025-01-15 + + + [bdubbs] - Update to vim-9.1.1016. Addresses + #4500. + + + [bdubbs] - Update to iana-etc-20250108. Addresses + #5006. + + + [bdubbs] - Update to util-linux-2.40.4. Fixes + #5624. + + + [bdubbs] - Update to sysvinit-3.13. Fixes + #5621. + + + [bdubbs] - Update to sysklogd-2.7.0. Fixes + #5623. + + + [bdubbs] - Update to shadow-4.17.2. Fixes + #5625. + + + [bdubbs] - Update to setuptools-75.8.0. Fixes + #5622. + + + [bdubbs] - Update to linux-6.12.9. Fixes + #5620. + + + [bdubbs] - Update to gettext-0.23.1. Fixes + #5619. + + + + + + 2025-01-01 + + + [renodr] - Update to libxcrypt-4.4.37. Fixes + #5618. + + + [renodr] - Update to dbus-1.16.0. Fixes + #5609. + + + [bdubbs] - Update to iana-etc-20241220. Addresses + #5006. + + + [bdubbs] - Update to texinfo-7.2. Fixes + #5616. + + + [bdubbs] - Update to sysvinit-3.12. Fixes + #5615. + + + [bdubbs] - Update to shadow-4.17.1. Fixes + #5617. + + + [bdubbs] - Update to procps-ng-4.0.5. Fixes + #5611. + + + [bdubbs] - Update to meson-1.6.1. Fixes + #5610. + + + [bdubbs] - Update to linux-6.12.7. Fixes + #5613. + + + [bdubbs] - Update to kbd-2.7.1. Fixes + #5608. + + + [bdubbs] - Update to jinja2-3.1.5 (Security Update). Fixes + #5614. + + + + + + 2024-12-15 + + + [bdubbs] - Update to vim-9.1.0927. Addresses + #4500. + + + [bdubbs] - Update to iana-etc-20241206. Addresses + #5006. + + + [bdubbs] - Update to systemd-257. Fixes + #5559. + + + [bdubbs] - Update to Python-3.13.1 (Security Update). Fixes + #5605. + + + [bdubbs] - Update to libcap-2.73. Fixes + #5604. + + + [bdubbs] - Update to linux-6.12.5. Fixes + #5607. + + + [bdubbs] - Update to kbd-2.7. Fixes + #5608. + + + [bdubbs] - Update to gettext-0.23. Fixes + #5603. + + + + + + 2024-12-01 + + + [bdubbs] - Update to iana-etc-20241122. Addresses + #5006. + + + [bdubbs] - Update to file-5.46. Fixes + #5601. + + + [bdubbs] - Update to iproute2-6.12.0. Fixes + #5597. + + + [bdubbs] - Update to libtool-2.5.4. Fixes + #5598. + + + [bdubbs] - Update to linux-6.12.1. Fixes + #5586. + + + [bdubbs] - Update to setuptools-75.6.0 (Python Module). Fixes + #5599. + + + [bdubbs] - Update to wheel-0.45.1 (Python Module). Fixes + #5600. + + + + + + 2024-11-15 + + + [bdubbs] - Update to vim-9.1.0866. Addresses + #4500. + + + [bdubbs] - Update to iana-etc-20241024. Addresses + #5006. + + + [bdubbs] - Update to wheel-0.45.0 (Python Module). Fixes + #5593. + + + [bdubbs] - Update to setuptools-75.5.0 (Python Module). Fixes + #5595. + + + [bdubbs] - Update to linux-6.11.8. Fixes + #5582. + + + [bdubbs] - Update to libcap-2.72. Fixes + #5594. + + + + + + 2024-11-08 + + + [bdubbs] - Added binutils-2.43.1-upstream_fix-1.patch. Fixes + #5591. + + + [bdubbs] - Update to flit_core-3.10.1. Fixes + #5589. + + + [bdubbs] - Update to expat-2.6.4. Fixes + #5590. + + + + + + 2024-10-25 + + + [bdubbs] - Update to linux-6.11.6. Fixes + #5588. + + + [bdubbs] - Update to libcap-2.71. Fixes + #5584. + + + [bdubbs] - Update to setuptools-75.3.0. Fixes + #5585. + + + [bdubbs] - Update to flit_core-3.10.0. Fixes + #5587. + + + + + + 2024-10-25 + + + [bdubbs] - Update to iana-etc-20241015. Addresses + #5006. + + + [bdubbs] - Update to vim-9.1.0813. Addresses + #4500. + + + [bdubbs] - Update to xz-5.6.3. Fixes + #5572. + + + [bdubbs] - Update to sysvinit-3.11. Fixes + #5581. + + + [bdubbs] - Update to setuptools-75.2.0. Fixes + #5577. + + + [bdubbs] - Update to Python3-3.13.0. Fixes + #5575. + + + [bdubbs] - Update to openssl-3.4.0. Fixes + #5582. + + + [bdubbs] - Update to meson-1.6.0. Fixes + #5580. + + + [bdubbs] - Update to markupsafe-3.0.2. Fixes + #5576. + + + [bdubbs] - Update to linux-6.11.5. Fixes + #5574. + + + [bdubbs] - Update to less-668. Fixes + #5578. + + + [bdubbs] - Update to elfutils-0.192. Fixes + #5579. + + + + + + 2024-10-03 + + + [bdubbs] - Revert back to tcl8.6.15. + + + + + + 2024-10-01 + + + [bdubbs] - Update to Python3-3.12.7. Fixes + #5571. + + + [bdubbs] - Update to tcl9.0.0. Fixes + #5570. + + + [bdubbs] - Update to linux-6.11.1. Fixes + #5556. + + + [bdubbs] - Update to libtool-2.5.3. Fixes + #5569. + + + [bdubbs] - Update to iproute2-6.11.0. Fixes + #5561. + + + [bdubbs] - Update to bash-5.2.37. Fixes + #5567. + + + [bdubbs] - Update to bc-7.0.3. Fixes + #5568. + + + + + + 2024-09-20 + + + [bdubbs] - Update to vim-9.1.0738. Addresses + #4500. + + + [bdubbs] - Update to texinfo-7.1.1. Fixes + #5558. + + + [bdubbs] - Update to tcl8.6.15. Fixes + #5562. + + + [bdubbs] - Update to sysklogd-2.6.2. Fixes + #5557. + + + [bdubbs] - Update to setuptools-75.1.0. Fixes + #5560. + + + [bdubbs] - Update to meson-1.5.2. Fixes + #5566. + + + [bdubbs] - Update to iana-etc-20240912. Addresses + #5006. + + + [bdubbs] - Update to gawk-5.3.1. Fixes + #5564. + + + [bdubbs] - Update to bc-7.0.2. Fixes + #5563. + + + + + + 2024-09-07 + + + [bdubbs] - Update to tzdata-2024b. Fixes + #5554. + + + [bdubbs] - Update to systemd-256.5. Fixes + #5551. + + + [bdubbs] - Update to setuptools-74.1.2. Fixes + #5546. + + + [bdubbs] - Update to python3-3.12.6. Fixes + #5555. + + + [bdubbs] - Update to openssl-3.3.2. Fixes + #5552. + + + [bdubbs] - Update to man-db-2.13.0. Fixes + #5550. + + + [bdubbs] - Update to linux-6.10.8. Fixes + #5545. + + + [bdubbs] - Update to libpipeline-1.5.8. Fixes + #5548. + + + [bdubbs] - Update to expat-2.6.3. Fixes + #5553. + + + [bdubbs] - Update to bc-7.0.1. Fixes + #5547. + + + + + + 2024-09-01 [bdubbs] - LFS-12.2 released. diff --git a/chapter01/whatsnew.xml b/chapter01/whatsnew.xml index 4eea31a74..16f23520d 100644 --- a/chapter01/whatsnew.xml +++ b/chapter01/whatsnew.xml @@ -23,9 +23,9 @@ Upgraded to: - + @@ -38,15 +38,15 @@ - - - + @@ -56,54 +56,54 @@ - + - - - - + - + - - + - - + @@ -122,54 +122,54 @@ - - + - - - - - + - - - - - - - + @@ -179,18 +179,18 @@ - - - - + @@ -203,84 +203,84 @@ - + - + - + - + - - - - - + - - - - - - - + - + - +