diff options
-rw-r--r-- | chapter01/changelog.xml | 21 | ||||
-rw-r--r-- | chapter07/usage.xml | 8 | ||||
-rw-r--r-- | general.ent | 4 | ||||
-rw-r--r-- | packages.ent | 6 | ||||
-rw-r--r-- | prologue/hostreqs.xml | 43 |
5 files changed, 62 insertions, 20 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index 1a84906f7..986257407 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -36,6 +36,27 @@ </listitem> --> <listitem> + <para>2014-05-27</para> + <itemizedlist> + <listitem> + <para>[bdubbs] - Update to man-pages-3.67. Fixes + <ulink url="&lfs-ticket-root;3588">#3588</ulink>.</para> + </listitem> + <listitem> + <para>[bdubbs] - Reformatted version check script to fit + pdf pages properly. Fixes + <ulink url="&lfs-ticket-root;3590">#3590</ulink>.</para> + </listitem> + <listitem> + <para>[bdubbs] - Added a note about adding the + parent directory to the es and pt keymaps for proper + keymap loading. Fixes + <ulink url="&lfs-ticket-root;3591">#3591</ulink>.</para> + </listitem> + </itemizedlist> + </listitem> + + <listitem> <para>2014-05-19</para> <itemizedlist> <listitem> diff --git a/chapter07/usage.xml b/chapter07/usage.xml index 885032365..ef2d5ac3a 100644 --- a/chapter07/usage.xml +++ b/chapter07/usage.xml @@ -396,9 +396,13 @@ EOF</userinput></screen> <listitem> <para>This variable specifies the arguments for the <command>loadkeys</command> program, typically, the name of keymap - to load, e.g., <quote>es</quote>. If this variable is not set, the + to load, e.g., <quote>it</quote>. If this variable is not set, the bootscript will not run the <command>loadkeys</command> program, - and the default kernel keymap will be used.</para> + and the default kernel keymap will be used. Note that for the + keymaps es and pt, the parent directory should also be specified + (e.g. qwerty/es or query/pt) to ensure the proper keymap is + loaded. + </para> </listitem> </varlistentry> diff --git a/general.ent b/general.ent index e29107d4d..de0679351 100644 --- a/general.ent +++ b/general.ent @@ -1,6 +1,6 @@ -<!ENTITY version "SVN-20140519"> +<!ENTITY version "SVN-20140527"> <!ENTITY short-version "svn"> <!-- Used in dbus chapter, change to x.y for release --> -<!ENTITY releasedate "May 19, 2014"> +<!ENTITY releasedate "May 27, 2014"> <!ENTITY copyrightdate "1999-2014"><!-- jhalfs needs a literal dash, not – --> <!ENTITY milestone "8.0"> <!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" --> diff --git a/packages.ent b/packages.ent index ade924a32..8b8a82c14 100644 --- a/packages.ent +++ b/packages.ent @@ -453,10 +453,10 @@ <!ENTITY man-db-ch6-du "27 MB"> <!ENTITY man-db-ch6-sbu "0.5 SBU"> -<!ENTITY man-pages-version "3.66"> -<!ENTITY man-pages-size "1,211 KB"> +<!ENTITY man-pages-version "3.67"> +<!ENTITY man-pages-size "1,219 KB"> <!ENTITY man-pages-url "&kernel;linux/docs/man-pages/man-pages-&man-pages-version;.tar.xz"> -<!ENTITY man-pages-md5 "4400766c63a28e58bb899a2d3a0191d8"> +<!ENTITY man-pages-md5 "5629dae00ef93658ada9226aa33b51b6"> <!ENTITY man-pages-home "http://www.kernel.org/doc/man-pages/"> <!ENTITY man-pages-ch6-du "23 MB"> <!ENTITY man-pages-ch6-sbu "less than 0.1 SBU"> diff --git a/prologue/hostreqs.xml b/prologue/hostreqs.xml index 0a73e0132..14b010b6a 100644 --- a/prologue/hostreqs.xml +++ b/prologue/hostreqs.xml @@ -176,26 +176,39 @@ if [ -e /usr/bin/awk ]; then echo "/usr/bin/awk -> `readlink -f /usr/bin/awk`"; else echo "awk not found"; fi -gcc --version | head -n1 -g++ --version | head -n1 -ldd --version | head -n1 | cut -d" " -f2- # glibc version -grep --version | head -n1 -gzip --version | head -n1 +gcc - -version | head -n1 +g++ - -version | head -n1 +ldd - -version | head -n1 | cut -d" " -f2- # glibc version +grep - -version | head -n1 +gzip - -version | head -n1 cat /proc/version -m4 --version | head -n1 -make --version | head -n1 -patch --version | head -n1 +m4 - -version | head -n1 +make - -version | head -n1 +patch - -version | head -n1 echo Perl `perl -V:version` -sed --version | head -n1 -tar --version | head -n1 -xz --version | head -n1 +sed - -version | head -n1 +tar - -version | head -n1 +xz - -version | head -n1 echo 'main(){}' > dummy.c && g++ -o dummy dummy.c if [ -x dummy ] then echo "g++ compilation OK"; else echo "g++ compilation failed"; fi -rm -f dummy.c dummy +rm -f dummy.c dummy</literal> +<!-- +for lib in lib{gmp,mpfr,mpc}.la; do + echo $lib: $(if find /usr/lib* -name $lib| + grep -q $lib;then :;else echo not;fi) found +done +unset lib</literal>--> +EOF + +bash version-check.sh</userinput></screen> + + <para>Also check for some library consistency:</para> +<screen role="nodump"><userinput>cat > library-check.sh << "EOF" +<literal>#!/bin/bash for lib in lib{gmp,mpfr,mpc}.la; do echo $lib: $(if find /usr/lib* -name $lib| grep -q $lib;then :;else echo not;fi) found @@ -203,7 +216,11 @@ done unset lib</literal> EOF -bash version-check.sh</userinput></screen> +bash library-check.sh</userinput></screen> + +<para>The files identified by this script should be all present +or all absent, but not only one or two present.</para> + </sect2> </sect1> |