Changeset 0dccf0ff
- Timestamp:
- 10/08/2019 05:35:35 PM (5 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 12.2, 9.1, gimp3, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/for-12.3, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/spidermonkey128, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 03e1f8e
- Parents:
- 44fe948f
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
general.ent
r44fe948f r0dccf0ff 1 1 <!-- $LastChangedBy$ $Date$ --> 2 2 3 <!ENTITY day "0 7"> <!-- Always 2 digits -->3 <!ENTITY day "08"> <!-- Always 2 digits --> 4 4 <!ENTITY month "10"> <!-- Always 2 digits --> 5 5 <!ENTITY year "2019"> … … 7 7 <!ENTITY copyholder "The BLFS Development Team"> 8 8 <!ENTITY version "&year;-&month;-&day;"> 9 <!ENTITY releasedate "October 7th, &year;">9 <!ENTITY releasedate "October 8th, &year;"> 10 10 <!ENTITY pubdate "&year;-&month;-&day;"> <!-- metadata req. by TLDP --> 11 11 <!ENTITY blfs-version "svn"> <!-- svn|[release #] --> -
general/prog/scons.xml
r44fe948f r0dccf0ff 75 75 <bridgehead renderas="sect4">Optional</bridgehead> 76 76 <para role="optional"> 77 <xref linkend="docbook-xsl"/> ,77 <xref linkend="docbook-xsl"/> and 78 78 <xref role="runtime" linkend="libxslt"/> 79 79 </para> -
general/sysutils/systemd.xml
r44fe948f r0dccf0ff 8 8 <!ENTITY systemd-download-http "https://github.com/systemd/systemd/archive/v&systemd-version;/systemd-&systemd-version;.tar.gz"> 9 9 <!ENTITY systemd-download-ftp " "> 10 <!ENTITY systemd-md5sum "c 5953c24c850b44fcf714326e567dc37">11 <!ENTITY systemd-size "7. 3MB">12 <!ENTITY systemd-buildsize "24 2MB (with tests)">13 <!ENTITY systemd-time " 2.7 SBU (with tests)">10 <!ENTITY systemd-md5sum "ca2403fa7dff73afd2e896b4cb25021b"> 11 <!ENTITY systemd-size "7.9 MB"> 12 <!ENTITY systemd-buildsize "248 MB (with tests)"> 13 <!ENTITY systemd-time "1.7 SBU (with tests)"> 14 14 15 15 ]> … … 72 72 <para> 73 73 Required patch: 74 <ulink url="&patch-root;/systemd-&systemd-version;- networkd_and_rdrand_fixes-1.patch"/>74 <ulink url="&patch-root;/systemd-&systemd-version;-consolidated_fixes-1.patch"/> 75 75 </para> 76 76 </listitem> … … 129 129 <title>Installation of systemd</title> 130 130 131 <para>Apply a patch to allow systemd-networkd to function under 5.2+ 132 kernels, and to fix problems with RDRAND on Ryzen CPUs:</para> 133 134 <screen><userinput remap="pre">patch -Np1 -i ../systemd-&systemd-version;-networkd_and_rdrand_fixes-1.patch</userinput></screen> 135 136 <para>Fix an incompatibility with the latest version of 137 <application>libseccomp</application>:</para> 138 139 <screen><userinput remap="pre">sed -i '1506,1508 s/</>/' src/shared/seccomp-util.c</userinput></screen> 131 <warning><para>This version of systemd is incompatible with all previous 132 releases. The BLFS team does not recommend updating in place, and suggests 133 that you do a rebuild instead.</para></warning> 134 135 <para>Apply a patch to fix several bugs discovered after release:</para> 136 137 <screen><userinput remap="pre">patch -Np1 -i ../systemd-&systemd-version;-consolidated_fixes-1.patch</userinput></screen> 140 138 141 139 <para>Remove an unneeded group, … … 153 151 cd build && 154 152 155 CFLAGS+="-Wno-format-overflow" \156 153 meson --prefix=/usr \ 157 154 --sysconfdir=/etc \ … … 186 183 187 184 <para> 188 To test the results, issue: <command>ninja test</command>. <!--One test, 189 <filename>test-fs-util</filename>, is known to fail.--> 190 <!-- https://github.com/systemd/systemd/pull/10263/commits --> 185 To test the results, issue: <command>ninja test</command>. One test, 186 <filename>udev-test</filename> (test 273) fails due to changes in 187 the Linux 5.3+ kernel. It does not affect the package's 188 functionality. 191 189 </para> 192 190 … … 211 209 212 210 <screen role="root"><userinput>ninja install</userinput></screen> 213 <!-- 214 <para> 215 If <application>RPM</application> is not installed, remove an 216 unnecessary directory by running the following command as the 217 <systemitem class="username">root</systemitem> user: 218 </para> 219 220 <screen role="root"><userinput>rm -rfv /usr/lib/rpm</userinput></screen> 221 --> 211 212 <para> 213 Remove a configuration file that causes some problems with PID files: 214 </para> 215 216 <screen role="root"><userinput>rm -fv /etc/sysctl.d/50-pid-max.conf</userinput></screen> 217 222 218 </sect2> 223 219 -
introduction/welcome/changelog.xml
r44fe948f r0dccf0ff 42 42 </listitem> 43 43 --> 44 <listitem revision="systemd"> 45 <para>October 8th, 2019</para> 46 <itemizedlist> 47 <listitem> 48 <para>[renodr] - Update to systemd-243. Please note that 49 this version is incompatible with all previous releases due to 50 several changes in it's PID, network, and unit implementations. 51 Please rebuild your system rather than do an in-place upgrade. Fixes 52 <ulink url="&blfs-ticket-root;11941">#11941</ulink>.</para> 53 </listitem> 54 </itemizedlist> 55 </listitem> 56 44 57 <listitem> 45 58 <para>October 7th, 2019</para> -
packages.ent
r44fe948f r0dccf0ff 290 290 <!ENTITY strigi-version "0.7.8"> 291 291 <!ENTITY sysstat-version "12.1.7"> 292 <!ENTITY systemd-version "24 1">292 <!ENTITY systemd-version "243"> 293 293 <!--<!ENTITY systemd-stable "6b4878d"> Unused for now --> 294 294 <!ENTITY udisks-version "1.0.5"> <!-- stable lt .90 micro version -->
Note:
See TracChangeset
for help on using the changeset viewer.