kernfs.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
  3. "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
  4. <!ENTITY % general-entities SYSTEM "../general.ent">
  5. %general-entities;
  6. ]>
  7. <sect1 id="ch-tools-kernfs">
  8. <?dbhtml filename="kernfs.html"?>
  9. <title>Preparing Virtual Kernel File Systems</title>
  10. <indexterm zone="ch-tools-kernfs">
  11. <primary sortas="e-/dev/">/dev/*</primary>
  12. </indexterm>
  13. <para>Various file systems exported by the kernel are used to communicate to
  14. and from the kernel itself. These file systems are virtual in that no disk
  15. space is used for them. The content of the file systems resides in
  16. memory.</para>
  17. <para>Begin by creating directories onto which the file systems will be
  18. mounted:</para>
  19. <screen><userinput>mkdir -pv $LFS/{dev,proc,sys,run}</userinput></screen>
  20. <sect2>
  21. <title>Creating Initial Device Nodes</title>
  22. <para>When the kernel boots the system, it requires the presence of a few
  23. device nodes, in particular the <filename
  24. class="devicefile">console</filename> and <filename
  25. class="devicefile">null</filename> devices. The device nodes must be created
  26. on the hard disk so that they are available before <command>udevd</command>
  27. has been started, and additionally when Linux is started with
  28. <parameter>init=/bin/bash</parameter>. Create the devices by running the
  29. following commands:</para>
  30. <screen><userinput>mknod -m 600 $LFS/dev/console c 5 1
  31. mknod -m 666 $LFS/dev/null c 1 3</userinput></screen>
  32. </sect2>
  33. <sect2 id="ch-system-bindmount">
  34. <title>Mounting and Populating /dev</title>
  35. <para>The recommended method of populating the <filename
  36. class="directory">/dev</filename> directory with devices is to mount a
  37. virtual filesystem (such as <systemitem
  38. class="filesystem">tmpfs</systemitem>) on the <filename
  39. class="directory">/dev</filename> directory, and allow the devices to be
  40. created dynamically on that virtual filesystem as they are detected or
  41. accessed. Device creation is generally done during the boot process
  42. by Udev. Since this new system does not yet have Udev and has not yet
  43. been booted, it is necessary to mount and populate <filename
  44. class="directory">/dev</filename> manually. This is accomplished by bind
  45. mounting the host system's <filename class="directory">/dev</filename>
  46. directory. A bind mount is a special type of mount that allows you to
  47. create a mirror of a directory or mount point to some other location. Use
  48. the following command to achieve this:</para>
  49. <screen><userinput>mount -v --bind /dev $LFS/dev</userinput></screen>
  50. </sect2>
  51. <sect2 id="ch-system-kernfsmount">
  52. <title>Mounting Virtual Kernel File Systems</title>
  53. <para>Now mount the remaining virtual kernel filesystems:</para>
  54. <screen><userinput>mount -v --bind /dev/pts $LFS/dev/pts
  55. mount -vt proc proc $LFS/proc
  56. mount -vt sysfs sysfs $LFS/sys
  57. mount -vt tmpfs tmpfs $LFS/run</userinput></screen>
  58. <variablelist>
  59. <title>The meaning of the mount options for devpts:</title>
  60. <varlistentry>
  61. <term><parameter>gid=5</parameter></term>
  62. <listitem>
  63. <para>This ensures that all devpts-created device nodes are owned by
  64. group ID 5. This is the ID we will use later on for the <systemitem
  65. class="groupname">tty</systemitem> group. We use the group ID instead
  66. of a name, since the host system might use a different ID for its
  67. <systemitem class="groupname">tty</systemitem> group.</para>
  68. </listitem>
  69. </varlistentry>
  70. <varlistentry>
  71. <term><parameter>mode=0620</parameter></term>
  72. <listitem>
  73. <para>This ensures that all devpts-created device nodes have mode 0620
  74. (user readable and writable, group writable). Together with the
  75. option above, this ensures that devpts will create device nodes that
  76. meet the requirements of grantpt(), meaning the Glibc
  77. <command>pt_chown</command> helper binary (which is not installed by
  78. default) is not necessary.</para>
  79. </listitem>
  80. </varlistentry>
  81. </variablelist>
  82. <para>In some host systems, <filename>/dev/shm</filename> is a
  83. symbolic link to <filename class="directory">/run/shm</filename>.
  84. The /run tmpfs was mounted above so in this case only a
  85. directory needs to be created.</para>
  86. <screen><userinput>if [ -h $LFS/dev/shm ]; then
  87. mkdir -pv $LFS/$(readlink $LFS/dev/shm)
  88. fi</userinput></screen>
  89. </sect2>
  90. </sect1>