diff options
author | Matthew Burgess <matthew@linuxfromscratch.org> | 2007-02-09 21:03:49 +0000 |
---|---|---|
committer | Matthew Burgess <matthew@linuxfromscratch.org> | 2007-02-09 21:03:49 +0000 |
commit | 5735d994ec174e4c7a26e5de8f7d8ca4758e72c4 (patch) | |
tree | 74073167d059102fdff6d5d5690a4bdf8b8d3e0c | |
parent | 2c69ed48649f6980bf10bb7b28173937cb7a6543 (diff) |
Move readlink to /bin so that Udev rules can use it before /usr is mounted. Fixes #1913.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@7919 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter01/changelog.xml | 7 | ||||
-rw-r--r-- | chapter06/coreutils.xml | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index bf656eac0..e2421b124 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -40,6 +40,13 @@ <para>2007-02-09</para> <itemizedlist> <listitem> + <para>[matthew] - Move <command>readlink</command> to + <filename class="directory">/bin</filename> because + <function>sysreadlink</function> in Udev's shell functions may call + it before <filename class="directory">/usr</filename> has been + mounted. Fixes <ulink url="&lfs-ticket-root;1913">#1913</ulink></para> + </listitem> + <listitem> <para>[matthew] - Remove some <command>chmod</command> and <command>chown</command> commands from DB, NCurses and Readline as they are no longer required with recent upstream versions. Fixes diff --git a/chapter06/coreutils.xml b/chapter06/coreutils.xml index 4a85817d4..53ab6a4e5 100644 --- a/chapter06/coreutils.xml +++ b/chapter06/coreutils.xml @@ -105,7 +105,7 @@ echo "dummy:x:1000:1000::/root:/bin/bash" >> /etc/passwd</userinput></scre <para>Move programs to the locations specified by the FHS:</para> <screen><userinput>mv -v /usr/bin/{cat,chgrp,chmod,chown,cp,date,dd,df,echo} /bin -mv -v /usr/bin/{false,hostname,ln,ls,mkdir,mknod,mv,pwd,rm} /bin +mv -v /usr/bin/{false,hostname,ln,ls,mkdir,mknod,mv,pwd,readlink,rm} /bin mv -v /usr/bin/{rmdir,stty,sync,true,uname} /bin mv -v /usr/bin/chroot /usr/sbin</userinput></screen> |