2004-05-03 22:28:58 +01:00
|
|
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
|
|
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
|
|
|
|
<!ENTITY % general-entities SYSTEM "../general.ent">
|
|
|
|
%general-entities;
|
|
|
|
]>
|
|
|
|
<sect1 id="ch-system-devices" xreflabel="devices">
|
2004-07-14 18:58:05 +01:00
|
|
|
<title>Populating /dev</title>
|
2004-05-03 22:28:58 +01:00
|
|
|
<?dbhtml filename="devices.html"?>
|
|
|
|
|
2004-06-13 13:58:23 +01:00
|
|
|
<indexterm zone="ch-system-devices"><primary sortas="e-Devices">Devices</primary></indexterm>
|
2004-05-03 22:28:58 +01:00
|
|
|
|
|
|
|
<sect2>
|
|
|
|
<title>Creating initial device nodes</title>
|
|
|
|
|
|
|
|
<para>When the kernel boots the system, it requires the presence of a few device
|
2004-06-13 13:58:23 +01:00
|
|
|
nodes, in particular the <filename class="devicefile">console</filename> and
|
|
|
|
<filename class="devicefile">null</filename> devices:</para>
|
2004-05-03 22:28:58 +01:00
|
|
|
|
|
|
|
<screen><userinput>mknod -m 600 /dev/console c 5 1
|
|
|
|
mknod -m 666 /dev/null c 1 3</userinput></screen>
|
|
|
|
</sect2>
|
|
|
|
|
|
|
|
<sect2>
|
|
|
|
<title>Mounting ramfs and populating /dev</title>
|
|
|
|
|
2004-06-13 13:58:23 +01:00
|
|
|
<para>The ideal way to populate <filename class="directory">/dev</filename> is
|
|
|
|
to mount a <systemitem class="filesystem">ramfs</systemitem> onto <filename class="directory">/dev </filename>
|
|
|
|
like <systemitem class="filesystem">tmpfs</systemitem>, but it
|
2004-05-03 22:28:58 +01:00
|
|
|
cannot be swapped) and create the devices on there during each bootup. Since we haven't
|
|
|
|
booted the system, we have to do what the bootscripts would otherwise do for us, and
|
2004-06-13 13:58:23 +01:00
|
|
|
populate <filename class="directory">/dev</filename> ourselves. Begin by mounting <filename class="directory">/dev</filename>:</para>
|
2004-05-03 22:28:58 +01:00
|
|
|
|
|
|
|
<screen><userinput>mount -n -t ramfs none /dev</userinput></screen>
|
|
|
|
|
2004-10-17 09:48:03 +01:00
|
|
|
<para>Since we do not have the Udev package installed yet, we'll create a
|
|
|
|
minimal set of device nodes to use for building:</para>
|
2004-05-03 22:28:58 +01:00
|
|
|
|
2004-10-17 09:48:03 +01:00
|
|
|
<screen><userinput>mknod -m 600 /dev/console c 5 1
|
|
|
|
mknod -m 600 /dev/null c 1 3
|
|
|
|
mknod -m 600 /dev/zero c 1 5
|
|
|
|
mknod -m 600 /dev/ptmx c 5 2</userinput></screen>
|
2004-05-03 22:28:58 +01:00
|
|
|
|
|
|
|
<para>There are some symlinks and directories required by LFS that are not created by
|
|
|
|
Udev, so we create those ourselves here:</para>
|
|
|
|
|
|
|
|
<screen><userinput>ln -s /proc/self/fd /dev/fd
|
|
|
|
ln -s /proc/self/fd/0 /dev/stdin
|
|
|
|
ln -s /proc/self/fd/1 /dev/stdout
|
|
|
|
ln -s /proc/self/fd/2 /dev/stderr
|
|
|
|
ln -s /proc/kcore /dev/core
|
|
|
|
mkdir /dev/pts
|
|
|
|
mkdir /dev/shm</userinput></screen>
|
|
|
|
|
|
|
|
<para>Finally, mount the proper virtual (kernel) file systems on the directories we just
|
|
|
|
created:</para>
|
|
|
|
|
|
|
|
<screen><userinput>mount -t devpts -o gid=4,mode=620 none /dev/pts
|
|
|
|
mount -t tmpfs none /dev/shm</userinput></screen>
|
|
|
|
</sect2>
|
|
|
|
|
|
|
|
|
|
|
|
</sect1>
|