Ignore:
Timestamp:
06/29/2020 07:55:01 AM (4 years ago)
Author:
Thomas Trepl <thomas@…>
Branches:
multilib-10.1
Children:
c4804e8
Parents:
d4fdde6
Message:

Update to new lfs structure

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/multilib@11986 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

File:
1 moved

Legend:

Unmodified
Added
Removed
  • chapter08/systemd.xml

    rd4fdde6 r37e35d2  
    3232
    3333      <seglistitem>
    34         <seg>&systemd-ch6-sbu;</seg>
    35         <seg>&systemd-ch6-du;</seg>
     34        <seg>&systemd-fin-sbu;</seg>
     35        <seg>&systemd-fin-du;</seg>
    3636      </seglistitem>
    3737    </segmentedlist>
     
    4040  <sect2 role="installation">
    4141    <title>Installation of systemd</title>
    42 <!--
    43     <para>First, apply a patch to fix various bugs since the release
    44     of systemd-243.</para>
    45 
    46 <screen><userinput remap="pre">patch -Np1 -i ../systemd-&systemd-version;-consolidated_fixes-2.patch</userinput></screen>
    47 -->
    48 
    49     <para>Create a symlink to work around missing xsltproc:</para>
    50 
    51 <screen><userinput remap="pre">ln -sf /tools/bin/true /usr/bin/xsltproc</userinput></screen>
     42
     43    <para>First, apply a patch to fix the build with GCC-10 and fix a segfault:</para>
     44
     45<screen><userinput remap="pre">patch -Np1 -i ../systemd-&systemd-version;-gcc_10-fixes-2.patch</userinput></screen>
     46
     47    <para>Create a symlink to work around the xsltproc command not being installed:</para>
     48
     49<screen><userinput remap="pre">ln -sf /bin/true /usr/bin/xsltproc</userinput></screen>
    5250
    5351    <para>Set up the man pages:</para>
     
    7472      --sysconfdir=/etc             \
    7573      --localstatedir=/var          \
    76       -Dc_args=-Wno-format-overflow \
    7774      -Dblkid=true                  \
    7875      -Dbuildtype=release           \
     
    10097
    10198      <varlistentry>
    102         <term><parameter>-Dc_args=-Wno-format-overflow</parameter></term>
    103         <listitem>
    104           <para>The defaults flags passed to gcc contain
    105           <parameter>-Werror=format-overflow</parameter>, which generates
    106           an error with GCC 10. Passing this parameter prevents the error
    107           from occuring.</para>
    108         </listitem>
    109       </varlistentry>
    110 
    111       <varlistentry>
    11299        <term><parameter>-D*-path=*</parameter></term>
    113100        <listitem>
    114           <para>These switches provide location of binaries needed by
    115           systemd at runtime that have not yet been installed, or who's
    116           pkgconfig files are currently only in
    117           <filename>/tools/lib/pkgconfig</filename>.</para>
     101          <para>These switches provide the location of binaries needed by
     102          systemd at runtime that have not yet been installed.</para>
    118103        </listitem>
    119104      </varlistentry>
     
    157142        <listitem>
    158143          <para>These switches ensure that core programs and
    159           shared libraries are installed in the subdirectories
     144          shared libraries are installed in subdirectories
    160145          of the root partition.</para>
    161146        </listitem>
     
    203188
    204189<screen><userinput remap="make">LANG=en_US.UTF-8 ninja</userinput></screen>
    205 <!--
    206     <para>To test the package, execute the following command:</para>
    207 
    208 <screen><userinput remap="test">LANG=en_US.UTF-8 ninja test</userinput></screen>
    209 -->
     190
    210191    <para>Install the package:</para>
    211192
     
    235216    some problems with packages and units in BLFS:</para>
    236217   
    237 
    238218<screen><userinput remap="adjust">rm -f /usr/lib/sysctl.d/50-pid-max.conf</userinput></screen>
    239219
    240     <!--
    241     <para>Prevent systemd from creating <filename>/run/nologin</filename>
    242     to allow unprivileged user logins without
    243     <application>systemd-logind</application>:</para>
    244 
    245 <screen><userinput remap="adjust">rm -f /usr/lib/tmpfiles.d/systemd-nologin.conf</userinput></screen>
    246     -->
    247220  </sect2>
    248221
    249 <!-- ====== 32-bit ===== -->
    250 
     222  <!-- - - - - - - - - - -->
     223  <!-- Multilib - 32bit  -->
     224  <!-- - - - - - - - - - -->
     225 
    251226  <sect2 arch="ml_32,ml_all" role="installation">
    252227    <title>Installation of systemd - 32-bit</title>
    253228
    254     <para>If still in the build directory, step out:</para>
    255 <screen><userinput remap="pre">cd ..</userinput></screen>
    256 
    257229    <para>Clean previous build:</para>
    258230
    259 <screen><userinput remap="pre">rm -rf build</userinput></screen>
     231<screen><userinput remap="pre">rm -rf *</userinput></screen>
    260232
    261233    <para>Create a symlink to work around missing xsltproc:</para>
    262234
    263 <screen><userinput remap="pre">ln -sf /tools/bin/true /usr/bin/xsltproc</userinput></screen>
    264 
     235<!-- screen><userinput remap="pre">ln -sf /tools/bin/true /usr/bin/xsltproc</userinput></screen -->
     236<screen><userinput remap="pre">ln -sf /bin/true /usr/bin/xsltproc</userinput></screen>
     237
     238<!-- with cross-LFS we have util-linux in place:
    265239    <para>Because we have not yet installed the final version of Util-Linux,
    266240    create links to the libraries in the approprite location:</para>
     
    269243    ln -sf $file /usr/lib32/
    270244done</userinput></screen>
    271 
    272     <para>Set up the man pages:</para>
    273 
    274 <screen><userinput remap="pre">tar -xf ../systemd-man-pages-&systemd-version;.tar.xz</userinput></screen>
     245-->
    275246
    276247    <para>Prepare systemd for compilation:</para>
    277248
    278     <screen><userinput remap="configure">cd build
    279 PKG_CONFIG_PATH="/usr/lib32/pkgconfig:/tools/lib32/pkgconfig" \
     249    <screen><userinput remap="configure">PKG_CONFIG_PATH="&usr-lib-m32;/pkgconfig" \
    280250CC="gcc -m32 -march=i686"              \
    281251CXX="g++ -m32 -march=i686"             \
     
    294264      -Dmount-path=/bin/mount          \
    295265      -Drootprefix=                    \
    296       -Drootlibdir=/usr/lib32          \
     266      -Drootlibdir=&usr-lib-m32;          \
    297267      -Dsplit-usr=true                 \
    298268      -Dsulogin-path=/sbin/sulogin     \
     
    309279
    310280<screen><userinput remap="install">LANG=en_US.UTF-8 DESTDIR=$PWD/DESTDIR ninja install
    311 cp -Rv DESTDIR/usr/lib32/* /usr/lib32
     281cp -Rv DESTDIR&usr-lib-m32;/* &usr-lib-m32;
    312282rm -rf DESTDIR
    313283rm -f /usr/bin/xsltproc</userinput></screen>
    314284
    315   </sect2>
    316 
    317 <!-- ====== x32-bit ===== -->
    318 
     285  </sect2><!-- m32 -->
     286
     287  <!-- - - - - - - - - - -->
     288  <!-- Multilib - x32bit -->
     289  <!-- - - - - - - - - - -->
     290 
    319291  <sect2 arch="ml_x32,ml_all" role="installation">
    320292    <title>Installation of systemd - x32-bit</title>
    321293
    322     <para>If still in the build directory, step out:</para>
    323 <screen><userinput remap="pre">cd ..</userinput></screen>
    324 
    325294    <para>Clean previous build:</para>
    326295
    327 <screen><userinput remap="pre">rm -rf build</userinput></screen>
     296<screen><userinput remap="pre">rm -rf *</userinput></screen>
    328297
    329298    <para>Create a symlink to work around missing xsltproc:</para>
    330299
    331 <screen><userinput remap="pre">ln -sf /tools/bin/true /usr/bin/xsltproc</userinput></screen>
    332 
    333     <para>Because we have not yet installed the final version of Util-Linux,
    334     create links to the libraries in the approprite location:</para>
    335 
    336 <screen><userinput remap="pre">for file in /tools/libx32/lib{blkid,mount,uuid}*; do
    337     ln -sf $file /usr/libx32/
    338 done</userinput></screen>
    339 
    340     <para>Set up the man pages:</para>
    341 
    342 <screen><userinput remap="pre">tar -xf ../systemd-man-pages-&systemd-version;.tar.xz</userinput></screen>
     300<screen><userinput remap="pre">ln -sf /bin/true /usr/bin/xsltproc</userinput></screen>
    343301
    344302    <para>Fix an issue on x32:</para>
     
    349307    <para>Prepare systemd for compilation:</para>
    350308
    351 <screen><userinput remap="configure">cd build
    352 PKG_CONFIG_PATH="/tools/libx32/pkgconfig:/usr/libx32/pkgconfig" \
     309<screen><userinput remap="configure">PKG_CONFIG_PATH="&usr-lib-mx32;/pkgconfig" \
    353310CC="gcc -mx32"                          \
    354311CXX="g++ -mx32"                         \
     
    369326      -Dmount-path=/bin/mount           \
    370327      -Drootprefix=                     \
    371       -Drootlibdir=/usr/libx32          \
     328      -Drootlibdir=&usr-lib-mx32;          \
    372329      -Dsplit-usr=true                  \
    373330      -Dsulogin-path=/sbin/sulogin      \
     
    384341
    385342<screen><userinput remap="install">LANG=en_US.UTF-8 DESTDIR=$PWD/DESTDIR ninja install
    386 cp -Rv DESTDIR/usr/libx32/* /usr/libx32
     343cp -Rv DESTDIR&usr-lib-m32;/* &usr-lib-m32;
    387344rm -rf DESTDIR
    388345rm -f /usr/bin/xsltproc</userinput></screen>
    389346
    390   </sect2>
     347  </sect2><!-- mx32 -->
    391348
    392349  <sect2 id="contents-systemd" role="content">
     
    436393        <term><command>bootctl</command></term>
    437394        <listitem>
    438           <para>Used to query the firmware and boot manager settings</para>
     395          <para>Is used to query the firmware and boot manager settings</para>
    439396          <indexterm zone="ch-system-systemd bootctl">
    440397            <primary sortas="b-bootctl">bootctl</primary>
     
    446403        <term><command>busctl</command></term>
    447404        <listitem>
    448           <para>Used to introspect and monitor the D-Bus bus</para>
     405          <para>Is used to introspect and monitor the D-Bus bus</para>
    449406          <indexterm zone="ch-system-systemd busctl">
    450407            <primary sortas="b-busctl">busctl</primary>
     
    456413        <term><command>coredumpctl</command></term>
    457414        <listitem>
    458           <para>Used to retrieve coredumps from the systemd journal</para>
     415          <para>Is used to retrieve coredumps from the systemd journal</para>
    459416          <indexterm zone="ch-system-systemd coredumpctl">
    460417            <primary sortas="b-coredumpctl">coredumpctl</primary>
     
    480437        <term><command>hostnamectl</command></term>
    481438        <listitem>
    482           <para>Used to query and change the system hostname and related
     439          <para>Is used to query and change the system hostname and related
    483440          settings</para>
    484441          <indexterm zone="ch-system-systemd hostnamectl">
     
    491448        <term><command>init</command></term>
    492449        <listitem>
    493           <para>The first process to be started when the kernel has initialized
     450          <para>Is the first process to be started when the kernel has initialized
    494451          the hardware which takes over the boot process and starts all
    495           processes according to its configuration files</para>
     452          processes according to its configuration files. In this case, it starts
     453          systemd.</para>
    496454          <indexterm zone="ch-system-systemd init">
    497455            <primary sortas="b-init">init</primary>
     
    503461        <term><command>journalctl</command></term>
    504462        <listitem>
    505           <para>Used to query the contents of the systemd journal</para>
     463          <para>Is used to query the contents of the systemd journal</para>
    506464          <indexterm zone="ch-system-systemd journalctl">
    507465            <primary sortas="b-journalctl">journalctl</primary>
     
    513471        <term><command>kernel-install</command></term>
    514472        <listitem>
    515           <para>Used to add and remove kernel and initramfs images to and
    516           from /boot</para>
     473          <para>Is used to add and remove kernel and initramfs images to and
     474          from /boot. In LFS, this is done manually.</para>
    517475          <indexterm zone="ch-system-systemd kernel-install">
    518476            <primary sortas="b-kernel-install">kernel-install</primary>
     
    524482        <term><command>localectl</command></term>
    525483        <listitem>
    526           <para>Used to query and change the system locale and keyboard layout
     484          <para>Is used to query and change the system locale and keyboard layout
    527485          settings</para>
    528486          <indexterm zone="ch-system-systemd localectl">
     
    535493        <term><command>loginctl</command></term>
    536494        <listitem>
    537           <para>Used to introspect and control the state of the systemd Login
     495          <para>Is used to introspect and control the state of the systemd Login
    538496          Manager</para>
    539497          <indexterm zone="ch-system-systemd loginctl">
     
    546504        <term><command>machinectl</command></term>
    547505        <listitem>
    548           <para>Used to introspect and control the state of the systemd Virtual
     506          <para>Is used to introspect and control the state of the systemd Virtual
    549507          Machine and Container Registration Manager</para>
    550508          <indexterm zone="ch-system-systemd machinectl">
     
    557515        <term><command>networkctl</command></term>
    558516        <listitem>
    559           <para>Used to introspect the state of the network links as seen by
    560           systemd-networkd</para>
     517          <para>Is used to introspect and configure the state of the network
     518          links configured by systemd-networkd</para>
    561519          <indexterm zone="ch-system-systemd networkctl">
    562520            <primary sortas="b-networkctl">networkctl</primary>
     
    568526        <term><command>portablectl</command></term>
    569527        <listitem>
    570           <para>Used to attach or detach portable services from the local
     528          <para>Is used to attach or detach portable services from the local
    571529          system</para>
    572530          <indexterm zone="ch-system-systemd portablectl">
     
    579537        <term><command>poweroff</command></term>
    580538        <listitem>
    581           <para>Tells the kernel to halt the system and switch off the computer
     539          <para>Instructs the kernel to halt the system and switch off the computer
    582540          (see <command>halt</command>)</para>
    583541          <indexterm zone="ch-system-systemd poweroff">
     
    590548        <term><command>reboot</command></term>
    591549        <listitem>
    592           <para>Tells the kernel to reboot the system (see
     550          <para>Instructs the kernel to reboot the system (see
    593551          <command>halt</command>)</para>
    594552          <indexterm zone="ch-system-systemd reboot">
     
    601559        <term><command>resolvconf</command></term>
    602560        <listitem>
    603           <para>Register DNS server and domain configuration with
     561          <para>Registers DNS server and domain configuration with
    604562          <command>systemd-resolved</command></para>
    605563          <indexterm zone="ch-system-systemd resolvconf">
     
    612570        <term><command>resolvectl</command></term>
    613571        <listitem>
    614           <para>Send control commands to the network name resolution
    615           manager, or resolve domain names, IPv4 and IPv6 addresses,
     572          <para>Sends control commands to the network name resolution
     573          manager, or resolves domain names, IPv4 and IPv6 addresses,
    616574          DNS records, and services.</para>
    617575          <indexterm zone="ch-system-systemd resolvectl">
     
    624582        <term><command>runlevel</command></term>
    625583        <listitem>
    626           <para>Reports the previous and the current run-level, as noted in the
     584          <para>Outputs the previous and the current run-level, as noted in the
    627585          last run-level record in <filename>/var/run/utmp</filename></para>
    628586          <indexterm zone="ch-system-systemd runlevel">
     
    635593        <term><command>shutdown</command></term>
    636594        <listitem>
    637           <para>Brings the system down in a secure way, signaling all processes
    638           and notifying all logged-in users</para>
     595          <para>Brings the system down in a safe and secure manner, signaling
     596          all processes and notifying all logged-in users</para>
    639597          <indexterm zone="ch-system-systemd shutdown">
    640598            <primary sortas="b-shutdown">shutdown</primary>
     
    646604        <term><command>systemctl</command></term>
    647605        <listitem>
    648           <para>Used to introspect and control the state of the systemd system
     606          <para>Is used to introspect and control the state of the systemd system
    649607          and service manager</para>
    650608          <indexterm zone="ch-system-systemd systemctl">
     
    657615        <term><command>systemd-analyze</command></term>
    658616        <listitem>
    659           <para>Used to determine system boot-up performance of the current
    660           boot</para>
     617          <para>Is used to determine system startup performance of the current
     618          boot, as well as identify troublesome systemd units</para>
    661619          <indexterm zone="ch-system-systemd systemd-analyze">
    662620            <primary sortas="b-systemd-analyze">systemd-analyze</primary>
     
    668626        <term><command>systemd-ask-password</command></term>
    669627        <listitem>
    670           <para>Used to query a system password or passphrase from the user,
     628          <para>Is used to query a system password or passphrase from the user,
    671629          using a question message specified on the command line</para>
    672630          <indexterm zone="ch-system-systemd systemd-ask-password">
     
    679637        <term><command>systemd-cat</command></term>
    680638        <listitem>
    681           <para>Used to connect STDOUT and STDERR of a process with the Journal
     639          <para>Is used to connect the STDOUT and STDERR outputs of a process
     640          with the systemd journal.
    682641          </para>
    683642          <indexterm zone="ch-system-systemd systemd-cat">
     
    712671        <term><command>systemd-delta</command></term>
    713672        <listitem>
    714           <para>Used to identify and compare configuration files in
     673          <para>Is used to identify and compare configuration files in
    715674          <filename class="directory">/etc</filename> that override default
    716675          counterparts in <filename class="directory">/usr</filename></para>
     
    724683        <term><command>systemd-detect-virt</command></term>
    725684        <listitem>
    726           <para>Detects execution in a virtualized environment</para>
     685          <para>Detects whether the system is being run in a virtual
     686          environment, and adjusts udev accordingly.</para>
    727687          <indexterm zone="ch-system-systemd systemd-detect-virt">
    728688            <primary sortas="b-systemd-detect-virt">systemd-detect-virt</primary>
     
    734694        <term><command>systemd-escape</command></term>
    735695        <listitem>
    736           <para>Used to escape strings for inclusion in systemd unit
     696          <para>Is used to escape strings for inclusion in systemd unit
    737697          names</para>
    738698          <indexterm zone="ch-system-systemd systemd-escape">
     
    745705        <term><command>systemd-hwdb</command></term>
    746706        <listitem>
    747           <para>Used to manage hardware database (hwdb)</para>
     707          <para>Is used to manage the hardware database (hwdb)</para>
    748708          <indexterm zone="ch-system-systemd systemd-hwdb">
    749709            <primary sortas="b-systemd-hwdb">systemd-hwdb</primary>
     
    755715        <term><command>systemd-id128</command></term>
    756716        <listitem>
    757           <para>Generate and print id128 strings</para>
     717          <para>Generates and prints id128 strings</para>
    758718          <indexterm zone="ch-system-systemd systemd-id128">
    759719            <primary sortas="b-systemd-id128">systemd-id128</primary>
     
    765725        <term><command>systemd-inhibit</command></term>
    766726        <listitem>
    767           <para>Used to execute a program with a shutdown, sleep or idle
    768           inhibitor lock taken</para>
     727          <para>Is used to execute a program with a shutdown, sleep or idle
     728          inhibitor lock taken, preventing an action such as a system shutdown
     729          until the process is completed.</para>
    769730          <indexterm zone="ch-system-systemd systemd-inhibit">
    770731            <primary sortas="b-systemd-inhibit">systemd-inhibit</primary>
     
    776737        <term><command>systemd-machine-id-setup</command></term>
    777738        <listitem>
    778           <para>Used by system installer tools to initialize the machine ID
     739          <para>Is used by system installer tools to initialize the machine ID
    779740          stored in <filename>/etc/machine-id</filename> at install time with a
    780741          randomly generated ID</para>
     
    788749        <term><command>systemd-mount</command></term>
    789750        <listitem>
    790           <para>A tool to temporarily mount or auto-mount a drive.</para>
     751          <para>Is used to temporarily mount or automount disks.</para>
    791752          <indexterm zone="ch-system-systemd systemd-mount">
    792753            <primary sortas="b-systemd-mount">systemd-mount</primary>
     
    798759        <term><command>systemd-notify</command></term>
    799760        <listitem>
    800           <para>Used by daemon scripts to notify the init system about status
     761          <para>Is used by daemon scripts to notify the init system about status
    801762          changes</para>
    802763          <indexterm zone="ch-system-systemd systemd-notify">
     
    809770        <term><command>systemd-nspawn</command></term>
    810771        <listitem>
    811           <para>Used to run a command or OS in a light-weight namespace
     772          <para>Is used to run a command or OS in a light-weight namespace
    812773          container</para>
    813774          <indexterm zone="ch-system-systemd systemd-nspawn">
     
    820781        <term><command>systemd-path</command></term>
    821782        <listitem>
    822           <para>Used to query system and user paths</para>
     783          <para>Is used to query system and user paths</para>
    823784          <indexterm zone="ch-system-systemd systemd-path">
    824785            <primary sortas="b-systemd-path">systemd-path</primary>
     
    830791        <term><command>systemd-repart</command></term>
    831792        <listitem>
    832           <para>Used go grow and add partitions to a partition table when
     793          <para>Is used to grow and add partitions to a partition table when
    833794          systemd is used in an OS image (e.g. a container).</para>
    834795          <indexterm zone="ch-system-systemd systemd-repart">
     
    841802        <term><command>systemd-resolve</command></term>
    842803        <listitem>
    843           <para>Used to resolve domain names, IPV4 and IPv6 addresses, DNS
     804          <para>Is used to resolve domain names, IPV4 and IPv6 addresses, DNS
    844805          resource records, and services</para>
    845806          <indexterm zone="ch-system-systemd systemd-resolve">
     
    852813        <term><command>systemd-run</command></term>
    853814        <listitem>
    854           <para>Used to create and start a transient .service or a .scope unit
    855           and run the specified command in it</para>
     815          <para>Is used to create and start a transient .service or a .scope
     816          unit and run the specified command in it. This is useful for
     817          validating systemd units.</para>
    856818          <indexterm zone="ch-system-systemd systemd-run">
    857819            <primary sortas="b-systemd-run">systemd-run</primary>
     
    860822      </varlistentry>
    861823
    862       <!-- <varlistentry id="systemd-stdio-bridge">
    863         <term><command>systemd-stdio-bridge</command></term>
    864         <listitem>
    865           <para>To be completed</para>
    866           <indexterm zone="ch-system-systemd systemd-stdio-bridge">
    867             <primary sortas="b-systemd-stdio-bridge">systemd-stdio-bridge</primary>
    868           </indexterm>
    869         </listitem>
    870       </varlistentry> -->
    871 
    872824      <varlistentry id="systemd-socket-activate">
    873825        <term><command>systemd-socket-activate</command></term>
    874826        <listitem>
    875           <para>A tool to listen on socket devices and launch a process upon
    876           connection.</para>
     827          <para>Is used to listen on socket devices and launch a process upon
     828          a successful connection to the socket.</para>
    877829          <indexterm zone="ch-system-systemd systemd-socket-activate">
    878830            <primary sortas="b-systemd-socket-activate">systemd-socket-activate</primary>
     
    897849        <term><command>systemd-umount</command></term>
    898850        <listitem>
    899           <para>Unmount mount points</para>
     851          <para>Unmounts mount points</para>
    900852          <indexterm zone="ch-system-systemd systemd-umount">
    901853            <primary sortas="b-systemd-umount">systemd-umount</primary>
     
    907859        <term><command>systemd-tty-ask-password-agent</command></term>
    908860        <listitem>
    909           <para>Used to list or process pending systemd password requests</para>
     861          <para>Is used to list and/or process pending systemd password
     862          requests</para>
    910863          <indexterm zone="ch-system-systemd systemd-tty-ask-password-agent">
    911864            <primary sortas="b-systemd-tty-ask-password-agent">systemd-tty-ask-password-agent</primary>
     
    928881        <term><command>timedatectl</command></term>
    929882        <listitem>
    930           <para>Used to query and change the system clock and its settings
     883          <para>Is used to query and change the system clock and its settings
    931884          </para>
    932885          <indexterm zone="ch-system-systemd timedatectl">
     
    939892        <term><command>udevadm</command></term>
    940893        <listitem>
    941           <para>Generic udev administration tool: controls the udevd daemon,
    942           provides info from the Udev database, monitors uevents, waits for
    943           uevents to finish, tests udev configuration, and triggers uevents
    944           for a given device</para>
     894          <para>Is a generic udev administration tool which controls the udevd
     895          daemon, provides info from the Udev hardware database, monitors
     896          uevents, waits for uevents to finish, tests udev configuration, and
     897          triggers uevents for a given device</para>
    945898          <indexterm zone="ch-system-systemd udevadm">
    946899            <primary sortas="b-udevadm">udevadm</primary>
     
    952905        <term><filename class="libraryfile">libsystemd</filename></term>
    953906        <listitem>
    954           <para>The main systemd utility library</para>
     907          <para>Is the main systemd utility library</para>
    955908          <indexterm zone="ch-system-systemd libsystemd">
    956909            <primary sortas="c-libsystemd">libsystemd</primary>
     
    962915        <term><filename class="libraryfile">libudev</filename></term>
    963916        <listitem>
    964           <para>A library to access Udev device information</para>
     917          <para>Is a library to access Udev device information</para>
    965918          <indexterm zone="ch-system-systemd libudev">
    966919            <primary sortas="c-libudev">libudev</primary>
Note: See TracChangeset for help on using the changeset viewer.