Changeset e94d178


Ignore:
Timestamp:
10/31/2015 05:46:51 PM (8 years ago)
Author:
Pierre Labastie <pieere@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
53dd18f1
Parents:
0da9f15
Message:

Update to LVM2-2.02.133

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@16585 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    r0da9f15 re94d178  
    11<!-- $LastChangedBy$ $Date$ -->
    22
    3 <!ENTITY day          "30">                   <!-- Always 2 digits -->
     3<!ENTITY day          "31">                   <!-- Always 2 digits -->
    44<!ENTITY month        "10">                   <!-- Always 2 digits -->
    55<!ENTITY year         "2015">
     
    77<!ENTITY copyholder   "The BLFS Development Team">
    88<!ENTITY version      "&year;-&month;-&day;">
    9 <!ENTITY releasedate  "October 30th &year;">
     9<!ENTITY releasedate  "October 31st &year;">
    1010<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    1111<!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
  • introduction/welcome/changelog.xml

    r0da9f15 re94d178  
    4646
    4747    <listitem>
     48      <para>October 31st, 2015</para>
     49      <itemizedlist>
     50        <listitem>
     51          <para>[pierre] - Update to LVM2-2.02.133. Fixes
     52          <ulink url="&blfs-ticket-root;7067">#7067</ulink>.</para>
     53        </listitem>
     54      </itemizedlist>
     55    </listitem>
     56
     57    <listitem>
    4858      <para>October 30th, 2015</para>
    4959      <itemizedlist>
  • packages.ent

    r0da9f15 re94d178  
    4444<!ENTITY fuse-version                 "2.9.4">
    4545<!ENTITY jfsutils-version             "1.1.15">
    46 <!ENTITY lvm2-version                 "2.02.132">
     46<!ENTITY lvm2-version                 "2.02.133">
    4747<!ENTITY mdadm-version                "3.3.4">
    4848<!ENTITY ntfs-3g-version              "2015.3.14">
  • postlfs/filesystems/lvm2.xml

    r0da9f15 re94d178  
    77  <!ENTITY lvm2-download-http " ">
    88  <!ENTITY lvm2-download-ftp  "ftp://sources.redhat.com/pub/lvm2/releases/LVM2.&lvm2-version;.tgz">
    9   <!ENTITY lvm2-md5sum        "80af5af726949bbbb2aceb15b24b7d20">
     9  <!ENTITY lvm2-md5sum        "48db435ed0ed6229a765b2644565c9c1">
    1010  <!ENTITY lvm2-size          "1.8 MB">
    1111  <!ENTITY lvm2-buildsize     "31 MB (during tests, transcient files can grow up to around 500 MB)">
    12   <!ENTITY lvm2-time          "0.3 SBU (around 10 SBU with tests, see below)">
     12  <!ENTITY lvm2-time          "0.3 SBU (around 28 SBU with tests, see below)">
    1313]>
    1414
     
    140140    </para>
    141141
    142 <screen><userinput>./configure --prefix=/usr       \
     142<screen><userinput>
     143SAVEPATH=$PATH                  &amp;&amp;
     144pathappend /sbin:/usr/sbin      &amp;&amp;
     145./configure --prefix=/usr       \
    143146            --exec-prefix=      \
    144147            --enable-applib     \
     
    146149            --enable-pkgconfig  \
    147150            --enable-udev_sync  &amp;&amp;
    148 make</userinput></screen>
     151make                            &amp;&amp;
     152PATH=$SAVEPATH                  &amp;&amp;
     153unset SAVEPATH</userinput></screen>
    149154
    150155    <para>
     
    171176    <para>
    172177      Those tests do not implement the <quote>expected fail</quote> possibility,
    173       and a small number of tests failures is expected by upstream. More
     178      and a small number of test failures is expected by upstream. More
    174179      failures may happen because some kernel options are missing. For example,
    175180      the lack of the <emphasis>dm-delay</emphasis> device mapper target may
    176       explain up to 10 failures or so. Some tests are incorrectly flagged
    177       <quote>broken</quote> if
     181      explain up to 10 failures or so. Some tests are flagged
     182      <quote>warned</quote> if
    178183      <ulink url='https://github.com/jthornber/thin-provisioning-tools'>
    179184      thin-provisioning-tools</ulink> are not installed. A workaround is to
     
    191196
    192197    <para>
    193       One test has been reported to hang, and can be disabled via <command>rm
    194       test/shell/snapshot-remove-dmsetup.sh</command>. Other tests may hang
    195       with kernel versions in the 4.1 and 4.2 series (see above). They can be
    196       removed as well if necessary. The tests generate a lot
     198      Some tests may hang with kernel versions in the 4.1 and 4.2 series (see
     199      above). They can be removed if necessary, for example: <command>rm
     200      test/shell/lvcreate-large-raid.sh</command>. The tests generate a lot
    197201      of kernel messages, which may clutter your terminal. You can disable them
    198202      by issuing <command>dmesg -D</command> before running the tests (do not
     
    210214  <sect2 role="commands">
    211215    <title>Command Explanations</title>
     216
     217    <para>
     218      <command>pathappend /sbin:/usr/sbin</command>: The path
     219      must contain <filename class="directory">/sbin</filename> and
     220      <filename class='directory'>/usr/sbin</filename> for proper system tool
     221      detection by the <command>configure</command> script. These instructions
     222      ensure that it is properly set even if you build as an user. Note that
     223      you need to provide equivalent commands if you have not set up your
     224      startup files as in <xref linkend="postlfs-config-profile"/>.
     225    </para>
    212226
    213227    <para>
Note: See TracChangeset for help on using the changeset viewer.