mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-01-31 19:32:03 +00:00
Moved additional programs to the ($LFS)/bin directory that are used by the
bootscripts git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@1553 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
parent
5af17b8d06
commit
9d12a8a4e9
@ -24,6 +24,13 @@
|
||||
|
||||
<itemizedlist>
|
||||
|
||||
<listitem><para>February 10th, 2002 [gerard]: Chapter 5 + 6: Moved
|
||||
additional programs to the ($LFS)/bin directory that are used by the
|
||||
bootscripts. No programs used by bootscripts (except daemons themselves)
|
||||
should be in the /usr directory in case /usr isn't available until far
|
||||
along in the boot process (when it's an NFS share for
|
||||
example).</para></listitem>
|
||||
|
||||
<listitem><para>February 6th, 2002 [markh]: Appendix A - All
|
||||
descriptions now synced and updated.</para></listitem>
|
||||
|
||||
|
@ -8,7 +8,7 @@ can also be used for other glibc versions so if you aren't sure, then
|
||||
use the first version.</para>
|
||||
|
||||
<para><screen><userinput>export CPPFLAGS=-Dre_max_failures=re_max_failures2 &&
|
||||
./configure --prefix=$LFS/usr --disable-nls &&
|
||||
./configure --prefix=$LFS/usr --disable-nls --bindir=$LFS/bin &&
|
||||
unset CPPFLAGS &&
|
||||
make LDFLAGS=-static &&
|
||||
make install</userinput></screen></para>
|
||||
@ -16,7 +16,8 @@ make install</userinput></screen></para>
|
||||
<para>If you are using a newer glibc version (2.2.x), you can use the
|
||||
following commands to install Grep:</para>
|
||||
|
||||
<para><screen><userinput>./configure --prefix=$LFS/usr --disable-nls &&
|
||||
<para><screen><userinput>./configure --prefix=$LFS/usr --disable-nls \
|
||||
--bindir=$LFS/bin &&
|
||||
make LDFLAGS=-static &&
|
||||
make install</userinput></screen></para>
|
||||
|
||||
|
@ -18,8 +18,8 @@ best to apply it.</para>
|
||||
make LDFLAGS=-static &&
|
||||
make install &&
|
||||
cd $LFS/usr/bin &&
|
||||
mv date echo false pwd stty $LFS/bin &&
|
||||
mv true uname hostname $LFS/bin</userinput></screen></para>
|
||||
mv basename date echo false hostname $LFS/bin &&
|
||||
mv pwd sleep stty su test true uname $LFS/bin &&</userinput></screen></para>
|
||||
|
||||
</sect2>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<para><screen><userinput>./configure --prefix=$LFS/usr --disable-nls &&
|
||||
make LDFLAGS=-static &&
|
||||
make install &&
|
||||
mv $LFS/usr/bin/cat $LFS/bin</userinput></screen></para>
|
||||
mv $LFS/usr/bin/cat $LFS/usr/bin/head $LFS/bin</userinput></screen></para>
|
||||
|
||||
</sect2>
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
<para>Install Grep by running the following commands:</para>
|
||||
|
||||
<para><screen><userinput>./configure --prefix=/usr &&
|
||||
<para><screen><userinput>./configure --prefix=/usr --bindir=/bin &&
|
||||
make &&
|
||||
make install</userinput></screen></para>
|
||||
|
||||
|
@ -7,8 +7,8 @@
|
||||
make &&
|
||||
make install &&
|
||||
cd /usr/bin &&
|
||||
mv date echo false pwd stty /bin &&
|
||||
mv su true uname hostname /bin &&
|
||||
mv basename date echo false hostname /bin &&
|
||||
mv pwd sleep stty su test true uname /bin &&
|
||||
mv chroot ../sbin</userinput></screen></para>
|
||||
|
||||
</sect2>
|
||||
@ -23,7 +23,8 @@ are built into the bash interpreter, but the FHS dictates that there should be a
|
||||
<filename>[</filename> binary. We create that in this way, while still in the
|
||||
<filename>/usr/bin</filename> directory:</para>
|
||||
|
||||
<para><screen><userinput>ln -sf test [</userinput></screen></para>
|
||||
<para><screen><userinput>cd /bin &&
|
||||
ln -sf test [</userinput></screen></para>
|
||||
|
||||
</sect2>
|
||||
|
||||
|
@ -6,7 +6,7 @@
|
||||
<para><screen><userinput>./configure --prefix=/usr &&
|
||||
make &&
|
||||
make install &&
|
||||
mv /usr/bin/cat /bin</userinput></screen></para>
|
||||
mv /usr/bin/cat /usr/bin/head /bin</userinput></screen></para>
|
||||
|
||||
</sect2>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user