diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2011-09-03 15:42:14 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2011-09-03 15:42:14 +0000 |
commit | 13e7d79417834f974264b5eecc99cf949ebc307d (patch) | |
tree | 26f15847038feeaea421730475d03f371c07d5b3 /chapter05 | |
parent | e75f916c2f7455f087d119ec382672a572625097 (diff) |
Fix binutils extracted directory version in binutils
build instructions. This will be reverted at the next upstream release
when the tarball name is again synced with the extracted directory
name.
Fix bootscripts to properly export IN_BOOT variable.
Adjust minimum kernel for the host sysem to 2.6.25
due to a udev requirement.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9592 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r-- | chapter05/binutils-pass1.xml | 3 | ||||
-rw-r--r-- | chapter05/binutils-pass2.xml | 3 | ||||
-rw-r--r-- | chapter05/glibc.xml | 6 |
3 files changed, 7 insertions, 5 deletions
diff --git a/chapter05/binutils-pass1.xml b/chapter05/binutils-pass1.xml index ca8e5b8f7..bd35c67ff 100644 --- a/chapter05/binutils-pass1.xml +++ b/chapter05/binutils-pass1.xml @@ -72,7 +72,8 @@ cd ../binutils-build</userinput></screen> <para>Now prepare Binutils for compilation:</para> -<screen><userinput remap="configure">../binutils-&binutils-version;/configure \ +<!-- <screen><userinput remap="configure">../binutils-&binutils-version;/configure \ --> +<screen><userinput remap="configure">../binutils-&binutils-dir;/configure \ --target=$LFS_TGT --prefix=/tools \ --disable-nls --disable-werror</userinput></screen> diff --git a/chapter05/binutils-pass2.xml b/chapter05/binutils-pass2.xml index f3fe914bb..3e6822339 100644 --- a/chapter05/binutils-pass2.xml +++ b/chapter05/binutils-pass2.xml @@ -52,7 +52,8 @@ cd ../binutils-build</userinput></screen> <screen><userinput remap="configure">CC="$LFS_TGT-gcc -B/tools/lib/" \ AR=$LFS_TGT-ar RANLIB=$LFS_TGT-ranlib \ - ../binutils-&binutils-version;/configure --prefix=/tools \ +<!-- ../binutils-&binutils-version;/configure - -prefix=/tools \ --> + ../binutils-&binutils-dir;/configure --prefix=/tools \ --disable-nls --with-lib-path=/tools/lib</userinput></screen> <variablelist> diff --git a/chapter05/glibc.xml b/chapter05/glibc.xml index 9e65d0858..8fcd0a8b4 100644 --- a/chapter05/glibc.xml +++ b/chapter05/glibc.xml @@ -77,7 +77,7 @@ esac</userinput></screen> <screen><userinput remap="configure">../glibc-&glibc-version;/configure --prefix=/tools \ --host=$LFS_TGT --build=$(../glibc-&glibc-version;/scripts/config.guess) \ --disable-profile --enable-add-ons \ - --enable-kernel=2.6.22.5 --with-headers=/tools/include \ + --enable-kernel=2.6.25 --with-headers=/tools/include \ libc_cv_forced_unwind=yes libc_cv_c_cleanup=yes</userinput></screen> <variablelist> @@ -109,10 +109,10 @@ esac</userinput></screen> </varlistentry> <varlistentry> - <term><parameter>--enable-kernel=2.6.22.5</parameter></term> + <term><parameter>--enable-kernel=2.6.25</parameter></term> <listitem> <para>This tells Glibc to compile the library with support - for 2.6.22.5 and later Linux kernels. Workarounds for older + for 2.6.25 and later Linux kernels. Workarounds for older kernels are not enabled.</para> </listitem> </varlistentry> |