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 /chapter06 | |
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
Diffstat (limited to 'chapter06')
-rw-r--r-- | chapter06/devices.xml | 5 |
1 files changed, 4 insertions, 1 deletions
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> |