devices.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?xml version="1.0" encoding="ISO-8859-1"?>
  2. <!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN" "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
  3. <!ENTITY % general-entities SYSTEM "../general.ent">
  4. %general-entities;
  5. ]>
  6. <sect1 id="ch-system-devices" xreflabel="devices">
  7. <title>Populating /dev with device nodes</title>
  8. <?dbhtml filename="devices.html"?>
  9. <indexterm zone="ch-system-devices"><primary sortas="a-Devices">Devices</primary></indexterm>
  10. <sect2>
  11. <title>Creating initial device nodes</title>
  12. <para>When the kernel boots the system, it requires the presence of a few device
  13. nodes, in particular the console and null devices:</para>
  14. <screen><userinput>mknod -m 600 /dev/console c 5 1
  15. mknod -m 666 /dev/null c 1 3</userinput></screen>
  16. </sect2>
  17. <sect2>
  18. <title>Mounting ramfs and populating /dev</title>
  19. <para>The ideal way to populate /dev is to mount a ramfs onto /dev (like tmpfs, but it
  20. cannot be swapped) and create the devices on there during each bootup. Since we haven't
  21. booted the system, we have to do what the bootscripts would otherwise do for us, and
  22. populate /dev ourselves. Begin by mounting /dev:</para>
  23. <screen><userinput>mount -n -t ramfs none /dev</userinput></screen>
  24. <para>Now use the provided udevstart utility to create the initial devices based on
  25. all the information in /sys:</para>
  26. <screen><userinput>/tools/sbin/udevstart</userinput></screen>
  27. <para>There are some symlinks and directories required by LFS that are not created by
  28. Udev, so we create those ourselves here:</para>
  29. <screen><userinput>ln -s /proc/self/fd /dev/fd
  30. ln -s /proc/self/fd/0 /dev/stdin
  31. ln -s /proc/self/fd/1 /dev/stdout
  32. ln -s /proc/self/fd/2 /dev/stderr
  33. ln -s /proc/kcore /dev/core
  34. mkdir /dev/pts
  35. mkdir /dev/shm</userinput></screen>
  36. <para>Finally, mount the proper virtual (kernel) file systems on the directories we just
  37. created:</para>
  38. <screen><userinput>mount -t devpts -o gid=4,mode=620 none /dev/pts
  39. mount -t tmpfs none /dev/shm</userinput></screen>
  40. </sect2>
  41. </sect1>