aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add wheel-0.37.1 (Python module).Bruce Dubbs2022-04-177-0/+77
|
* Merge branch 'trunk' of git.linuxfromscratch.org:lfs into trunkBruce Dubbs2022-04-175-0/+23
|\
| * Patch xz for the xzgrep vulnerability.Ken Moffat2022-04-155-0/+23
| |
* | Suppress a waring if running pip3 as root.Bruce Dubbs2022-04-171-0/+12
|/ | | | | | | | | | In serveral places we use the pip3 command to install Python 3 programs and modules for all users as root. This conflicts with the Python developers' recommendation to build packages in a virtual environment as a regular user. To this end, a multi-line warning is written when using pip3 as the root user. This change shows users how to avoid this warning.
* procps: update library and include directory nameXi Ruoyao2022-04-151-6/+6
|
* Package updates.Bruce Dubbs2022-04-144-15/+34
| | | | | | Update to libcap-2.64. Update to linux-5.17.3. Update to gzip-1.12.
* TyposBruce Dubbs2022-04-122-3/+3
|
* Note that linux-5.17.1 and zlib-1.2.12 are security updates.Ken Moffat2022-04-041-2/+2
|
* procps-ng: remove an outdated noteXi Ruoyao2022-04-051-8/+0
| | | | It now just untars into procps-ng-4.0.0 directory, as we expect.
* Add in the patch needed for systemd with the 5.17 kernelBruce Dubbs2022-03-313-0/+17
|
* Package updates.Bruce Dubbs2022-03-305-54/+94
| | | | | | | | | | | | | Update to sysvinit-3.02. Update to zlib-1.2.12. Update to expat-2.4.8. Update to Jinja2-3.1.1. Update to Python-3.10.4. Update to procps-ng-4.0.0. Update to iproute2-5.17.0. Update to meson-0.62.0. Update to linux-5.17.1. Update to util-linux-2.38.
* Merge branch 'trunk' of git.linuxfromscratch.org:lfs into trunkBruce Dubbs2022-03-272-5/+5
|\
| * Fix a stupid typo in bootscripts/MakefilePierre Labastie2022-03-272-5/+5
| | | | | | | | copy/paste error rc0.d -> rc6.d. Brown paperbag commit...
* | Remove refereces to RussiaBruce Dubbs2022-03-272-6/+8
|/
* libffi: reword the note about "building for another system"Xi Ruoyao2022-03-261-2/+4
| | | | | | | | | | | Telling the user to override CFLAGS and CXXFLAGS may cause two problems: 1. We've added --with-gcc-arch=native, so the configure script will add "-march=native" into CFLAGS. Then we've not really verified which -march= value is the last one in the GCC command line and being really used. 2. User may just export CFLAGS="-march=x86_64", without "-O2". This will produce unoptimized binaries.
* Upstate bootscripts to 20220324Pierre Labastie2022-03-251-0/+10
|
* Bump bootscripts versionPierre Labastie2022-03-251-1/+1
|
* Update bootscripts/ChangeLog for recent changesPierre Labastie2022-03-251-0/+5
|
* Remove the 0/6 exception explanation in usage.xmlPierre Labastie2022-03-251-2/+2
| | | | It's not true anymore with the new semantics of K/S files.
* network bootscript: Don't run ifup if route already setPierre Labastie2022-03-251-0/+2
| | | | | | | Otherwise, warnings are issued when changing runlevel. "ip route" is a good test of whether network is already up. If users want to change some config, they should use ifup/down, not the network bootscript.
* New semantics for S/K files in boot scriptsPierre Labastie2022-03-252-7/+15
| | | | | | | Now start and reboot should be called as "script start", and they should be the last in their runlevel. Note that install_initd needs to be patched for this to work; see https://github.com/lfs-book/LSB-Tools/pull/12
* Fix Makefile for new semantics of S/K symlinksPierre Labastie2022-03-251-8/+8
| | | | | In runlevel 0/6, services which must be stopped should be with Kxx symlinks
* Adapt template to new semantics of S/K symlinksPierre Labastie2022-03-251-0/+14
|
* Change semantics of S and K filesPierre Labastie2022-03-251-35/+26
| | | | | | | | | | | | | | | | | | | | | | | | | Presently, there are a lot of special cases: - runlevel 0 and 6 unconditionally run "script stop" if they find a Kxxscript symlink. This may lead to trying to stop an already stopped device if for example switching to runlevel 0/6 from runlevel 1. This can be fixed by stating the convention that it is the responsability of scripts to check that the service is running before killing it (or not running before starting it). Still, we shouldn't try to stop a service if it was marked K in the previous runlevel. And same for S files: we shouldn't try to start a service that was marked S in the previous runlevel. Note that changing runlevel is not a "reset": if a user has manually changed the state of a daemon, this state will remain the same upon changing runlevel if the S/K status of that dameon is the same in both runlevels. - Sxxscript symlinks in runlevel 0/6 are run as "script stop" instead of the more intuitive "script start". This does not interact well with LSB-tools (some scripts would need "Default-Start: S 0 6" but then it is impossible to get correct "Required-Start" or "Should-Start" fields). Furthermore, having a counter-intuitive behavior is error prone. So now runlevel 0/6 will run "script sart" for a Sxxscript.
* Do not redefine is_true in the console scriptPierre Labastie2022-03-251-5/+0
| | | | There is a better version in init-functions
* Make runlevel 2 equivalent to 3 by default: MakefilePierre Labastie2022-03-251-2/+2
|
* Make runlevel 2 equivalent to 3 by default: networkPierre Labastie2022-03-251-2/+2
|
* Make runlevel 2 equivalent to 3 by default: sysklogdPierre Labastie2022-03-251-5/+2
|
* Typo in init-functionsPierre Labastie2022-03-251-1/+1
|
* Merge branch 'trunk' of git.linuxfromscratch.org:lfs into trunkBruce Dubbs2022-03-243-17/+44
|\
| * inputrc: "8bit" -> "8-bit"Xi Ruoyao2022-03-251-1/+1
| | | | | | | | | | | | The info page of readline says "eight-bit", so I guess a dash is proper. Suggested-by: rhubarbpieguy <rhubarbpieguy@vivaldi.net>
| * fix typosXi Ruoyao2022-03-258-8/+8
| | | | | | | | Suggested-by: rhubarbpieguy <rhubarbpieguy@vivaldi.net>
| * Fix kernel config to mount the devtmpfs before bootPierre Labastie2022-03-221-10/+21
| | | | | | | | Also make the order and the layout the same as in menu.
| * Update comments in the mountvirtfs booscriptPierre Labastie2022-03-221-3/+5
| | | | | | | | | | | | Since the kernel can mount /dev if given the proper config parameter, and we tell users to set this parameter when building the kernel, this should be mentioned in the script
| * Update references to active display managersBruce Dubbs2022-03-211-1/+1
| |
| * Clarify SysV run levels.Bruce Dubbs2022-03-211-3/+17
| | | | | | | | | | | | Update the meaning of run level 2. Add some clarifying remarks about run levels 0 and 6 (halt and reboot).
* | SpelingBruce Dubbs2022-03-249-9/+9
|/
* zstd: add prefix=/usr for makeXi Ruoyao2022-03-211-1/+1
| | | | | | | libzstd.pc is created during "make", so without prefix=/usr here "-L/usr/local/lib" will show up in libzstd.pc. Thanks Ryan Marsaw for the report.
* libffi: update the desc for --disable-exec-static-trampXi Ruoyao2022-03-211-5/+2
| | | | | Now BLFS has gobject-introspection-1.72, which is already fixed. GJS fix will be released in GNOME 43 (not 42).
* package updatesXi Ruoyao2022-03-203-25/+51
| | | | | | | | * Update to Python-3.10.3 (#5028) * Update to libtool-2.4.7 (#5029) * Update to linux-5.16.16 (#5030) * Update to tzdata-2022a (#5031) * Update to man-db-2.10.2 (#5032)
* [Sysv]: /etc/inittab: respawn sulogin in runlevel 1Pierre Labastie2022-03-181-1/+2
| | | | | | | | If run once (as it is now), the only possibility after hitting control-D is to reboot. Note that init treats the S runlevel differently: when the last daemon to be run n runlevel S exits, init switches to the default runlevel. This is not the case for other runlevels.
* Fix email addresses for bug report in bootscriptsPierre Labastie2022-03-172-2/+2
|
* markupsafe: mention the suffix "-linux-<arch>" in installed directoriesXi Ruoyao2022-03-161-1/+4
|
* update to MarkupSafe-2.1.1 (#5025)Xi Ruoyao2022-03-162-2/+12
|
* pkgmgmt: for systemd revision, add how to restart systemd without rebootXi Ruoyao2022-03-161-1/+8
|
* Update to openssl-3.0.2.Bruce Dubbs2022-03-153-5/+9
|
* Merge branch 'trunk' of git.linuxfromscratch.org:lfs into trunkBruce Dubbs2022-03-152-2/+2
|\
| * changelog: dbus is systemd revision onlyXi Ruoyao2022-03-161-1/+1
| |
| * systemd: remove --strip-compoents=1 from man page installation commandXi Ruoyao2022-03-161-1/+1
| | | | | | | | | | | | systemd-man-pages-250.tar.xz has no additional leading components. An errata is required.
* | Ignore fop.logBruce Dubbs2022-03-151-1/+1
|/