Changeset 75128f91
- Timestamp:
- 08/15/2014 11:04:08 PM (10 years ago)
- Branches:
- 10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 12.2, 12.2-rc1, 7.6, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/loongarch-12.2, xry111/mips64el, xry111/multilib, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
- Children:
- ec61ca3
- Parents:
- 3ed5e23
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
bootscripts/README
r3ed5e23 r75128f91 46 46 47 47 Configuration Files: 48 /etc/sysconfig/createfiles or /etc/sysconfig/rc.site 49 Each line is parsed, using space as a deliminator. 50 [NAME] [TYPE] [PERMISSIONS] [USER] [GROUP] 51 The below fields are currently only used on dev type. 52 ([DEV TYPE] [MAJOR#] [MINOR#]) 53 Name: 54 File/Directory/Device name 55 Type: 56 dir: creates a directory 57 file: creates a file 58 dev: creates a device 59 Permissions: 60 chmod the created file 61 User/Group: 62 chown the created file/dir to this user/group 63 Dev Type: 64 char: character [needs MAJOR#, MINOR#] 65 block: block [needs MAJOR#, MINOR#] 66 pipe: pipe 67 Major#: 68 Used by character and block devices. 69 Minor#: 70 Used by character and block devices. 48 /etc/sysconfig/rc.site 71 49 - SKIPTMPCLEAN: skips cleaning of /tmp directory 72 50 51 /etc/sysconfig/createfiles 52 Each line is parsed, using space as a deliminator. 53 [NAME] [TYPE] [PERMISSIONS] [USER] [GROUP] 54 The below fields are currently only used on dev type. 55 ([DEV TYPE] [MAJOR#] [MINOR#]) 56 Name: 57 File/Directory/Device name 58 Type: 59 dir: creates a directory 60 file: creates a file 61 dev: creates a device 62 Permissions: 63 chmod the created file 64 User/Group: 65 chown the created file/dir to this user/group 66 Dev Type: 67 char: character [needs MAJOR#, MINOR#] 68 block: block [needs MAJOR#, MINOR#] 69 pipe: pipe 70 Major#: 71 Used by character and block devices. 72 Minor#: 73 Used by character and block devices. 74 -
chapter01/changelog.xml
r3ed5e23 r75128f91 36 36 </listitem> 37 37 --> 38 <listitem> 39 <para>2014-08-15</para> 40 <itemizedlist> 41 <listitem> 42 <para>[bdubbs] - Remove redundant wording in checking 43 toolchain values. Fixes 44 <ulink url="&lfs-ticket-root;3654">#3654</ulink>.</para> 45 </listitem> 46 <listitem> 47 <para>[bdubbs] - Reword bootscripts README file.</para> 48 </listitem> 49 </itemizedlist> 50 </listitem> 51 38 52 <listitem> 39 53 <para>2014-08-14</para> -
chapter05/gcc-pass1.xml
r3ed5e23 r75128f91 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
r3ed5e23 r75128f91 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> -
general.ent
r3ed5e23 r75128f91 1 <!ENTITY version "SVN-2014081 4">1 <!ENTITY version "SVN-20140815"> 2 2 <!ENTITY short-version "svn"> <!-- Used in dbus chapter, change to x.y for release --> 3 <!ENTITY releasedate "August 1 4, 2014">3 <!ENTITY releasedate "August 15, 2014"> 4 4 <!ENTITY copyrightdate "1999-2014"><!-- jhalfs needs a literal dash, not – --> 5 5 <!ENTITY milestone "7.6"> -
packages.ent
r3ed5e23 r75128f91 371 371 <!ENTITY less-ch6-sbu "less than 0.1 SBU"> 372 372 373 <!ENTITY lfs-bootscripts-version "201408 06"> <!-- Scripts depend on this format -->373 <!ENTITY lfs-bootscripts-version "20140815"> <!-- Scripts depend on this format --> 374 374 <!ENTITY lfs-bootscripts-size "BOOTSCRIPTS-SIZE KB"> <!-- Updated in Makefile --> 375 375 <!ENTITY lfs-bootscripts-url "&downloads-root;lfs-bootscripts-&lfs-bootscripts-version;.tar.bz2">
Note:
See TracChangeset
for help on using the changeset viewer.