aboutsummaryrefslogtreecommitdiffstats
path: root/chapter08
Commit message (Collapse)AuthorAgeFilesLines
* m4: test-posix_spawn-script does not failXi Ruoyao2021-08-061-2/+0
| | | | Reported on lfs-dev and confirmed with jhalfs.
* gcc: fix PR101749Xi Ruoyao2021-08-061-4/+8
| | | | | https://wiki.linuxfromscratch.org/blfs/ticket/15350 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101749
* minor wording changeXi Ruoyao2021-08-061-1/+1
|
* Make stripping work fo rboth x86 and x86_64Bruce Dubbs2021-08-031-1/+6
|
* minor typoXi Ruoyao2021-08-041-1/+1
|
* bash: minor command style fixXi Ruoyao2021-08-041-2/+2
|
* strip: restore versions in online_usrlib and save_usrlibXi Ruoyao2021-08-041-11/+9
| | | | | | | | | | | | | | | Without them, for example: cp /usr/lib/libbfd.so /tmp/libbfd.so # now /tmp/libbfd.so is a hardcopy of /usr/lib/libbfd-2.37.so strip --strip-unneeded /tmp/libbfd.so install -vm755 /tmp/libbfd.so /usr/lib/libbfd.so # now /usr/lib/libbfd.so is *not* a symlink, but a real file We don't want this to happen. libdl and libpthread removed: they are now dummy libs and is not used by anything built in LFS/BLFS.
* gcc: document new test failures with glibc-2.34Xi Ruoyao2021-08-031-17/+15
| | | | The links to gcc bugzilla is in XML comments.
* Fix spacingBruce Dubbs2021-08-021-8/+8
|
* Package updates.Bruce Dubbs2021-08-023-47/+42
| | | | | | Update to glibc-2.34. Update to diffutils-3.8. Update to libcap-2.52.
* binutils: typoXi Ruoyao2021-08-021-1/+1
|
* Update test results for several packages.Bruce Dubbs2021-08-0111-18/+27
| | | | | Most of the changes were removing documentation of failed tests that no longer fail.
* Fackage updates and fixes.Bruce Dubbs2021-08-012-2/+4
| | | | | | Remove unneeded sed commands from automake and coreutils. Update to linux-5.13.7. Update to e2fsprogs-1.46.3.
* Revert "util-linux: explain ioctl_ns failure more precisely"Xi Ruoyao2021-07-291-3/+3
| | | | This reverts commit 79902f4e5120549197b50e735c812b2ec545e520.
* package updateXi Ruoyao2021-07-281-5/+0
| | | | | | | | | Update to GCC-11.2.0 (#4883) Update to inetutils-2.1 (#4892) Update to automake-1.16.4 (#4894) SHA256 checksum entities for the three packages are added. I think we can start a transition to SHA256 now.
* Revert coreutils library location changeXi Ruoyao2021-07-281-1/+0
| | | | | libstdbuf.so is a LD_PRELOAD hook, instead of a library which would be used at link time. So let's keep the upstream default.
* always use --strip-unneeded for strippingXi Ruoyao2021-07-281-18/+5
| | | | | | | The behavior of --strip-unneeded and --strip-all are same for executables and shared libraries. For static libraries, --strip-unneeded keeps the symbols needed for relocation processing so it won't break static archives.
* util-linux: explain ioctl_ns failure more preciselyXi Ruoyao2021-07-281-3/+3
|
* Minor instruction changes and text updates.Bruce Dubbs2021-07-274-21/+27
| | | | | | | | | | | Move coreutils library from /usr/libexec to /usr/lib in both Chapter 6 and Chapter 8. Text updates in chapter08/pkgmgt.xml and chapter09/locale.xml. Restore deletion of hanging test in chapter08/util-linux.xml. Text changes in stripping and make instruction compatible with jhalfs.
* stripping: add libnss_*.so* into online_usrlibXi Ruoyao2021-07-281-1/+2
| | | | | | | | | | | | | Glibc loads these "NSS modules" (see man 5 nss) on startup. This is implemented with something like dlopen() so "ldd" won't show them up. So they should be considered "online" here. Without this addition, overwriting libnss_files-2.33.so reproducibly triggers a crash during jhalfs runs where stripping is enabled. In manual builds, it reproducibly triggers a crash exiting from chroot. After this change I reran stripping 5 times and there was no crash observed.
* Simplify the new sedThomas Trepl (Moody)2021-07-271-1/+1
|
* Fix a programming error in shadow-4.9Thomas Trepl (Moody)2021-07-261-0/+4
|
* Hopefully, complete strip workaroundXi Ruoyao2021-07-262-16/+65
| | | | | | | | | | | In stripping, /usr/bin/bash, /usr/bin/find, and /usr/bin/strip are running. Strip them, and all libraries used by them in /tmp, then install them back. We can't use this for all libraries or binaries: the process above discouples hard links (for example /usr/bin/perl and perl5.34.0). So unfortunately the stripping instruction is now a stupidly long bash script...
* Package updates and stripping fixesBruce Dubbs2021-07-254-15/+21
| | | | | | Add workaround to strip libraries correctly. Update to shadow-4.9. Update to util-linux 2.37.1.
* binutils: workaround empty man pages issueXi Ruoyao2021-07-251-0/+7
|
* Update to binutils-2.37Douglas R. Reno2021-07-231-9/+2
| | | | | | Update to less-590 Update to meson-0.59.0 Guard systemd against CVE-2021-33910
* Ensure that glibc installs ldconfig and sln to /usr/sbin.DJ Lucas2021-07-211-0/+6
|
* Correct page IDs in Chapter 08 dejagnu, expect, and tcl.DJ Lucas2021-07-213-13/+13
|
* Minor grammar fixesBruce Dubbs2021-07-201-3/+3
|
* add changelog for tester-nohack mergeXi Ruoyao2021-07-201-1/+1
|
* bash: pass "make test" exitcode through expectxry111/tester-nohackXi Ruoyao2021-07-191-0/+2
|
* bash: disable timeout to prevent Expect from exiting earlyXi Ruoyao2021-07-191-1/+3
| | | | | | The default timeout is only 10 seconds, where the bash tests won't complete on most systems. Then expect will exit early, with bash tests running in background. We won't like this.
* bash: use eof in expect commands instead of EOFXi Ruoyao2021-07-191-1/+1
| | | | (for jhalfs)
* bash: add an explanation why use expect to run the testXi Ruoyao2021-07-191-1/+4
|
* Merge branch 'trunk' into xry111/tester-nohackXi Ruoyao2021-07-197-6/+18
|\
| * GrammarBruce Dubbs2021-07-183-3/+3
| |
| * Perl - fixes for 5.34 test failures.Ken Moffat2021-07-172-1/+6
| |
| * Remove modifications to m4 that are no longer needed.Bruce Dubbs2021-07-151-2/+2
| |
| * Work around a util-linux that can hang the tests.Bruce Dubbs2021-07-101-0/+7
| | | | | | | | | | If CONFIG_USER_NS or CONFIG_PID_NS are not set in the kernel, the tests will hang forever. To work around the problem, delete one test.
* | do not use UID hack for testerXi Ruoyao2021-07-181-2/+2
|/ | | | | It's causing "root-tester namesis" (both have UID 0) if the tty is owned by root. To fix bash test, use Expect to spawn a new PTY for it.
* fix installed directories in jinja2 & markupsafeXi Ruoyao2021-07-093-2/+5
|
* Add missing filesDouglas R. Reno2021-07-092-0/+132
|
* Package Updates and AdditionsDouglas R. Reno2021-07-082-4/+9
| | | | | | | | | | Add MarkupSafe Add Jinja2 Update to texinfo-6.8 Update to iproute2-5.13.0 Update to Python-3.9.6 (Security Update) Update to systemd-249 (Security Update) Update to Linux-5.13.1
* DejaGNU: build in seperate directoryXi Ruoyao2021-07-061-3/+9
| | | | | Upstream recommends it. And there are reports about test failure when DejaGNU is build in source directory ("./configure").
* man-pages: add prefix=/usrXi Ruoyao2021-07-021-1/+1
| | | | Thanks John Burrell for reporting the issue.
* Fix gcc patch name in Chapter 8.Bruce Dubbs2021-07-011-1/+1
|
* Patch gcc :Ken Moffat2021-07-011-0/+5
| | | | | Fix some regressions, and cope with removal of a kernel header in linux-5.13 which broke the build in chapter 8's bootstrap.
* gcc: correct desc of locale related testsXi Ruoyao2021-06-301-1/+1
|
* gcc: correct the desc of constexpr-52830 XPASS and FAILXi Ruoyao2021-06-301-2/+4
|
* Add more locales used in gcc's libstdc++ testsuite.Ken Moffat2021-06-292-5/+19
|