diff options
author | Jeremy Utley <jeremy@linuxfromscratch.org> | 2004-11-02 08:54:46 +0000 |
---|---|---|
committer | Jeremy Utley <jeremy@linuxfromscratch.org> | 2004-11-02 08:54:46 +0000 |
commit | 84dee3b47866bce18ebb1d77c54ba7f5883fec18 (patch) | |
tree | 60df508644b953688ecb98c10161273f57971b5f | |
parent | 0a9b2e0ddf44d892eaeb2fbe382cbe987f514a56 (diff) |
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
-rw-r--r-- | chapter01/changelog.xml | 4 | ||||
-rw-r--r-- | chapter06/devices.xml | 5 | ||||
-rw-r--r-- | general.ent | 4 |
3 files changed, 10 insertions, 3 deletions
diff --git a/chapter01/changelog.xml b/chapter01/changelog.xml index cbf8327c6..1241cf815 100644 --- a/chapter01/changelog.xml +++ b/chapter01/changelog.xml @@ -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> diff --git a/chapter06/devices.xml b/chapter06/devices.xml index 4d6d1a245..557b0d2c3 100644 --- a/chapter06/devices.xml +++ b/chapter06/devices.xml @@ -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> diff --git a/general.ent b/general.ent index 9344f0b85..edfc0acc4 100644 --- a/general.ent +++ b/general.ent @@ -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/"> |