Update to qemu-1.6.0

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@11664 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Bruce Dubbs 2013-08-21 01:40:33 +00:00
parent 5d9021ea5d
commit 2dcc08c020
16 changed files with 31 additions and 20 deletions

View File

@ -195,7 +195,7 @@ export -f as_root</userinput></screen>
<!ENTITY zsh-version "5.0.2">
<!-- Chapter 8 Virtualization -->
<!ENTITY qemu-version "1.5.2">
<!ENTITY qemu-version "1.6.0">
<!-- Part III -->
<!-- Chapter 9 -->

View File

@ -36,7 +36,7 @@
back into the C representation of JSON objects.
</para>
&lfs73_checked;
&lfs74_checked;
<bridgehead renderas="sect3">Package Information</bridgehead>
<itemizedlist spacing="compact">

View File

@ -38,7 +38,7 @@
of the server application, but each thread has its own individual
program-counter, run-time stack, signal mask and errno variable. </para>
&lfs73_checked;
&lfs74_checked;
<bridgehead renderas="sect3">Package Information</bridgehead>
<itemizedlist spacing="compact">

View File

@ -34,7 +34,7 @@
It provides facilities required by interactive applications such as
display/screen management, keyboard input and keymaps.</para>
&lfs73_checked;
&lfs74_checked;
<bridgehead renderas="sect3">Package Information</bridgehead>
<itemizedlist spacing="compact">

View File

@ -38,7 +38,7 @@
instructions; it's often much easier (and less error prone) to cut and paste
between two console windows than to type everything by hand!</para>
&lfs73_checked;
&lfs74_checked;
<bridgehead renderas="sect3">Package Information</bridgehead>
<itemizedlist spacing="compact">

View File

@ -46,6 +46,10 @@
<listitem>
<para>August 20th, 2013</para>
<itemizedlist>
<listitem>
<para>[bdubbs] - Update to qemu-1.6.0. Fixes
<ulink url="&blfs-ticket-root;3979">#3979</ulink>.</para>
</listitem>
<listitem>
<para>[ken] - Note that yasm can build libjpeg-turbo on x86_64.</para>
</listitem>

View File

@ -35,7 +35,7 @@
to support basic sound file formats.
</para>
&lfs73_checked;
&lfs74_checked;
<bridgehead renderas="sect3">Package Information</bridgehead>
<itemizedlist spacing="compact">

View File

@ -33,7 +33,7 @@
the Enlightened Sound Daemon. This is useful for mixing together
several digitized audio streams for playback by a single device.</para>
&lfs73_checked;
&lfs74_checked;
<bridgehead renderas="sect3">Package Information</bridgehead>
<itemizedlist spacing="compact">

View File

@ -33,7 +33,7 @@
MP3, but lossless, meaning that audio is compressed without losing any
information.</para>
&lfs73_checked;
&lfs74_checked;
<bridgehead renderas="sect3">Package Information</bridgehead>
<itemizedlist spacing="compact">

View File

@ -33,7 +33,7 @@
<para><application>libsamplerate</application> is a sample rate converter
for audio.</para>
&lfs73_checked;
&lfs74_checked;
<bridgehead renderas="sect3">Package Information</bridgehead>
<itemizedlist spacing="compact">

View File

@ -35,7 +35,7 @@
reading and writing files containing sampled audio data.
</para>
&lfs73_checked;
&lfs74_checked;
<bridgehead renderas="sect3">Package Information</bridgehead>
<itemizedlist spacing="compact">

View File

@ -39,7 +39,7 @@
one are easily achieved using a sound server.
</para>
&lfs73_checked;
&lfs74_checked;
<bridgehead renderas="sect3">Package Information</bridgehead>
<itemizedlist spacing="compact">

View File

@ -33,7 +33,7 @@
for short) is a cross-platform library designed to make it easy to write
multimedia software, such as games and emulators.</para>
&lfs73_checked;
&lfs74_checked;
<bridgehead renderas="sect3">Package Information</bridgehead>
<itemizedlist spacing="compact">

View File

@ -34,7 +34,7 @@
and provides useful features that are not present in most other
CODECs.</para>
&lfs73_checked;
&lfs74_checked;
<bridgehead renderas="sect3">Package Information</bridgehead>
<itemizedlist spacing="compact">

View File

@ -102,8 +102,12 @@ useradd -c "Network Time Protocol" -d /var/lib/ntp -u 87 \
<para>Install <application>ntp</application> by running
the following commands:</para>
<screen><userinput>./configure --prefix=/usr --sysconfdir=/etc \
--with-binsubdir=sbin --with-lineeditlibs=readline &amp;&amp;
<screen><userinput>
./configure --prefix=/usr \
--sysconfdir=/etc \
--enable-linuxcaps \
--with-binsubdir=sbin \
--with-lineeditlibs=readline &amp;&amp;
make</userinput></screen>
<para>To test the results, issue: <command>make check</command>.</para>
@ -124,6 +128,9 @@ cp -v -R html/* /usr/share/doc/ntp-&ntp-version;/</userinput></screen>
the administrative programs in <filename
class="directory">/usr/sbin</filename>.</para>
<para><parameter>--enable-linuxcaps</parameter>: ntpd is run as user
ntp, so use Linux capabilities for non-root clock control.</para>
<para><option>--with-lineeditlibs=readline</option>: This option enables
<application>Readline</application> support for <command>ntpdc</command>
and <command>ntpq</command> programs. If omitted,

View File

@ -6,10 +6,10 @@
<!ENTITY qemu-download-http "http://wiki.qemu.org/download/qemu-&qemu-version;.tar.bz2">
<!ENTITY qemu-download-ftp " ">
<!ENTITY qemu-md5sum "04b94189ba587b3280713ded3b7f959a">
<!ENTITY qemu-size "11.4 MB">
<!ENTITY qemu-buildsize "186 MB">
<!ENTITY qemu-time "2.1 SBU">
<!ENTITY qemu-md5sum "f3f39308472d629aca57a255a0c91ba9">
<!ENTITY qemu-size "11.5 MB">
<!ENTITY qemu-buildsize "192 MB">
<!ENTITY qemu-time "1.7 SBU">
]>
<sect1 id="qemu" xreflabel="qemu-&qemu-version;">
@ -33,7 +33,7 @@
for Linux on x86 hardware containing virtualization extensions (Intel VT or
AMD-V).</para>
&lfs73_checked;
&lfs74_checked;
<bridgehead renderas="sect3">Package Information</bridgehead>
<itemizedlist spacing="compact">