Alexander Patrakov found that some testsuites require the tty, random, and urandom testsuites, so have added those here for completeness sake.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@4302 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
Jeremy Utley 2004-11-02 08:54:46 +00:00
parent 0a9b2e0ddf
commit 84dee3b478
3 changed files with 10 additions and 3 deletions

View File

@ -93,6 +93,10 @@ first a summary, then a detailed log.</para>
</itemizedlist>
</listitem>
<listitem><para>November 2nd, 2004 [jeremy]: Alexander Patrakov found that some
of the optional testsuites require the tty, random, and urandom testsuites, so
added those 3 to the list of devices created at the start of chapter 6.</para></listitem>
<listitem><para>October 17th, 2004 [jeremy]: Experimental - dropped udev from
chapter 5, created a minimal set of devices at the start of chapter 6, and run
udevstart when udev is installed chapter 6 to create the rest.</para></listitem>

View File

@ -39,7 +39,10 @@ minimal set of device nodes to use for building:</para>
mknod -m 666 /dev/null c 1 3
mknod -m 666 /dev/zero c 1 5
mknod -m 666 /dev/ptmx c 5 2
chown root:tty /dev/{console,ptmx}</userinput></screen>
mknod -m 666 /dev/tty c 5 0
mknod -m 444 /dev/random c 1 8
mknod -m 444 /dev/urandom c 1 9
chown root:tty /dev/{console,ptmx,tty}</userinput></screen>
<para>There are some symlinks and directories required by LFS that are not created by
Udev, so we create those ourselves here:</para>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="ISO-8859-1"?>
<!ENTITY version "SVN-20041017">
<!ENTITY releasedate "October 17, 2004">
<!ENTITY version "SVN-20041102">
<!ENTITY releasedate "November 2, 2004">
<!ENTITY milestone "6.1">
<!ENTITY lfs-root "http://www.linuxfromscratch.org/">