Ignore:
Timestamp:
08/13/2015 01:50:44 AM (9 years ago)
Author:
Fernando de Oliveira <fernando@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.8, 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:
6d772cc
Parents:
6c6990c
Message:
  • Update to gnupg-2.1.7.
  • Update to qemu-2.4.0.
  • nfs-utils, obconf-qt, qterminal, juffed, akonadi and sddm: typos.
  • Update to libpng-1.6.18.
  • Update to vala-0.28.1.
  • Update to mesa-10.6.4.
  • Update to curl-7.44.0.
  • OpenSSH-7.0p1 and Firefox-40.0: reformat.
  • libESMTP-1.0.6: dead URL.

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • postlfs/virtualization/qemu.xml

    r6c6990c r5ee1266  
    77  <!ENTITY qemu-download-http "http://wiki.qemu.org/download/qemu-&qemu-version;.tar.bz2">
    88  <!ENTITY qemu-download-ftp  " ">
    9   <!ENTITY qemu-md5sum        "2fab3ea4460de9b57192e5b8b311f221">
     9  <!ENTITY qemu-md5sum        "186ee8194140a484a455f8e3c74589f4">
    1010  <!ENTITY qemu-size          "24 MB">
    11   <!ENTITY qemu-buildsize     "291 MB">
    12   <!ENTITY qemu-time          "1.4 SBU">
     11  <!ENTITY qemu-buildsize     "323 MB (398 MB, with tests)">
     12  <!ENTITY qemu-time          "1.4 SBU (2.2 SBU, with tests)">
    1313]>
    1414
     
    151151    commands:</para>
    152152
    153 <screen><userinput>./configure --prefix=/usr \
    154             --sysconfdir=/etc \
    155             --docdir=/usr/share/doc/qemu-&qemu-version; \
    156             --target-list=x86_64-softmmu &amp;&amp;
     153<screen><userinput>./configure --prefix=/usr                      \
     154            --sysconfdir=/etc                  \
     155            --libexecdir=/usr/lib/qemu         \
     156            $([ $(uname -m) = i686 ]           &amp;&amp;
     157            echo --target-list=i386-softmmu)   \
     158            $([ $(uname -m) = x86_64 ]         &amp;&amp;
     159            echo --target-list=x86_64-softmmu) \
     160            --docdir=/usr/share/doc/qemu-&qemu-version; &amp;&amp;
    157161make</userinput></screen>
    158162
     
    162166
    163167<screen role="root"><userinput>make install &amp;&amp;
    164 [ -e  /usr/lib/libcacard.so ] &amp;&amp; chmod -v 755 /usr/lib/libcacard.so</userinput></screen>
     168[ -e  /usr/lib/libcacard.so ] &amp;&amp;
     169chmod -v 755 /usr/lib/libcacard.so</userinput></screen>
    165170
    166171    <para>
    167172      You will need a dedicated group that will contain users (other than root)
    168       allowed to access the KVM device.  Create this group by running the following
    169       command as the <systemitem class="username">root</systemitem> user:
     173      allowed to access the KVM device.  Create this group by running the
     174      following command as the
     175      <systemitem class="username">root</systemitem> user:
    170176    </para>
    171177
     
    203209    <title>Command Explanations</title>
    204210
    205     <para><parameter>--target-list=x86_64-softmmu</parameter>: This switch
    206     limits the build target to the x86_64 architecture.  For other
    207     hardware emulation see the --target-list list in <command>configure</command>'s
    208     help output.  Omitting this option will build all architectures.</para>
     211    <para><parameter>$([ $(uname -m) = i686 ] &amp;&amp;
     212    echo --target-list=i386-softmmu)</parameter>: This switch
     213    tests and, if true, limits the build target to the i386 architecture.  For
     214    other hardware emulation see the --target-list list in
     215    <command>configure</command>'s help output.  Omitting the target option will
     216    build all architectures.</para>
     217
     218    <para><parameter>$([ $(uname -m) = x86_64 ] &amp;&amp;
     219    echo --target-list=x86_64-softmmu)</parameter>: This switch
     220    tests and, if true, limits the build target to the x86_64 architecture.  For
     221    other hardware emulation see the --target-list list in
     222    <command>configure</command>'s help output.  Omitting the target option will
     223    build all architectures.</para>
    209224
    210225    <para>
     
    286301
    287302      <listitem>
    288         <para>Allow the network connection when running as a part of the 
     303        <para>Allow the network connection when running as a part of the
    289304        kvm group:</para>
    290305
Note: See TracChangeset for help on using the changeset viewer.