Changeset e7848c3
- Timestamp:
- 08/16/2014 04:32:00 PM (10 years ago)
- Branches:
- 7.6-systemd, 7.7-systemd, 7.8-systemd, 7.9-systemd
- Children:
- 9b26915
- Parents:
- 7e1a1f8
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
chapter01/changelog.xml
r7e1a1f8 re7848c3 37 37 --> 38 38 <listitem> 39 <para>2014-08-16</para> 40 <itemizedlist> 41 <listitem> 42 <para>[krejzi] - Merged LFS SVN-20140815.</para> 43 </listitem> 44 </itemizedlist> 45 </listitem> 46 47 <listitem> 39 48 <para>2014-08-15</para> 40 49 <itemizedlist> 41 50 <listitem> 42 <para>[krejzi] - Merged LFS SVN-20140814.</para> 51 <para>[bdubbs] - Remove redundant wording in checking 52 toolchain values. Fixes 53 <ulink url="&lfs-ticket-root;3654">#3654</ulink>.</para> 43 54 </listitem> 44 55 </itemizedlist> -
chapter03/packages.xml
r7e1a1f8 re7848c3 598 598 599 599 <varlistentry> 600 <term>Texinfo (&texinfo-version;) - <token>&texinfo-size;</token>:</term> 601 <listitem> 602 <para>Home page: <ulink url="&texinfo-home;"/></para> 603 <para>Download: <ulink url="&texinfo-url;"/></para> 604 <para>MD5 sum: <literal>&texinfo-md5;</literal></para> 605 </listitem> 606 </varlistentry> 607 608 <varlistentry> 600 609 <term>Time Zone Data (&tzdata-version;) - <token>&tzdata-size;</token>:</term> 601 610 <listitem> … … 607 616 608 617 <varlistentry> 609 <term>Texinfo (&texinfo-version;) - <token>&texinfo-size;</token>:</term>610 <listitem>611 <para>Home page: <ulink url="&texinfo-home;"/></para>612 <para>Download: <ulink url="&texinfo-url;"/></para>613 <para>MD5 sum: <literal>&texinfo-md5;</literal></para>614 </listitem>615 </varlistentry>616 617 <varlistentry>618 618 <term>Util-linux (&util-linux-version;) - <token>&util-linux-size;</token>:</term> 619 619 <listitem> -
chapter05/gcc-pass1.xml
r7e1a1f8 re7848c3 197 197 <term><parameter>--disable-decimal-float, --disable-threads, 198 198 --disable-libatomic, --disable-libgomp, --disable-libitm, 199 --disable-lib mudflap, --disable-libquadmath, --disable-libsanitizer,199 --disable-libquadmath, --disable-libsanitizer, 200 200 --disable-libssp, --disable-libvtv, --disable-libcilkrts, 201 201 --disable-libstdc++-v3</parameter></term> 202 202 <listitem> 203 203 <para>These switches disable support for the decimal floating point 204 extension, threading, libatomic, libgomp, libitm, libmudflap,204 extension, threading, libatomic, libgomp, libitm, 205 205 libquadmath, libsanitizer, libssp, libvtv, libcilkrts 206 206 and the C++ standard library respectively. These features will fail -
chapter06/adjusting.xml
r7e1a1f8 re7848c3 47 47 readelf -l a.out | grep ': /lib'</userinput></screen> 48 48 49 <para os="b"> If everything is working correctly, there should be no errors,49 <para os="b">There should be no errors, 50 50 and the output of the last command will be (allowing for 51 51 platform-specific differences in dynamic linker name):</para> … … 60 60 <screen os="e"><userinput>grep -o '/usr/lib.*/crt[1in].*succeeded' dummy.log</userinput></screen> 61 61 62 <para os="f">If everything is working correctly, there should be no errors, 63 and the output of the last command will be:</para> 62 <para os="f">The output of the last command should be:</para> 64 63 65 64 <screen><computeroutput>/usr/lib/crt1.o succeeded … … 72 71 <screen><userinput>grep -B1 '^ /usr/include' dummy.log</userinput></screen> 73 72 74 <para os="h">This command should return successfully withthe following output:</para>73 <para os="h">This command should return the following output:</para> 75 74 76 75 <screen><computeroutput>#include <...> search starts here: … … 81 80 <screen os="j"><userinput>grep 'SEARCH.*/usr/lib' dummy.log |sed 's|; |\n|g'</userinput></screen> 82 81 83 <para os="k">If everything is working correctly, there should be no errors, 84 and the output of the last command 85 will be:</para> 82 <para os="k">The output of the last command should be:</para> 86 83 87 84 <screen><computeroutput>SEARCH_DIR("/usr/lib") … … 92 89 <screen os="m"><userinput>grep "/lib.*/libc.so.6 " dummy.log</userinput></screen> 93 90 94 <para os="n">If everything is working correctly, there should be no errors, 95 and the output of the last command (allowing for a lib64 directory on 64-bit hosts) 96 will be:</para> 91 <para os="n">The output of the last command (allowing for a lib64 directory 92 on 64-bit hosts) should be:</para> 97 93 98 94 <screen os="o"><computeroutput>attempt to open /lib/libc.so.6 succeeded</computeroutput></screen> … … 102 98 <screen os="q"><userinput>grep found dummy.log</userinput></screen> 103 99 104 <para os="r">If everything is working correctly, there should be no errors, 105 and the output of the last command will be (allowing for 106 platform-specific differences in dynamic linker name and a lib64 directory 107 on 64-bit hosts):</para> 100 <para os="r"> The output of the last command should be (allowing for 101 platform-specific differences in dynamic linker name and a lib64 directory on 102 64-bit hosts):</para> 108 103 109 104 <screen os="s"><computeroutput>found ld-linux.so.2 at /lib/ld-linux.so.2</computeroutput></screen> -
chapter07/clock.xml
r7e1a1f8 re7848c3 58 58 <para>To change your current system time, issue:</para> 59 59 60 <screen role="nodump"><userinput>timedatectl set-time YYYY :MM:DD HH:MM:SS</userinput></screen>60 <screen role="nodump"><userinput>timedatectl set-time YYYY-MM-DD HH:MM:SS</userinput></screen> 61 61 62 62 <para>Hardware clock will also be updated accordingly.</para> -
general.ent
r7e1a1f8 re7848c3 1 <!ENTITY version "2014081 5-systemd">1 <!ENTITY version "20140816-systemd"> 2 2 <!ENTITY short-version "systemd"> <!-- Used in dbus chapter, change to x.y for release --> 3 <!ENTITY releasedate "August 1 5, 2014">3 <!ENTITY releasedate "August 16, 2014"> 4 4 <!ENTITY copyrightdate "1999-2014"><!-- jhalfs needs a literal dash, not – --> 5 5 <!ENTITY milestone "7.6">
Note:
See TracChangeset
for help on using the changeset viewer.