modules.txt
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:9k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. This file describes the strategy for dynamically loadable modules
  2. in the Linux kernel. This is not a technical description on
  3. the internals of module, but mostly a sample of how to compile
  4. and use modules.
  5. Note: You should ensure that the modutils-X.Y.Z.tar.gz you are using
  6. is the most up to date one for this kernel. The "X.Y.Z" will reflect
  7. the kernel version at the time of the release of the modules package.
  8. Some older modules packages aren't aware of some of the newer modular
  9. features that the kernel now supports.  The current required version
  10. is listed in the file linux/Documentation/Changes.
  11. * * * NOTE * * *
  12. The kernel has been changed to remove kerneld support and use
  13. the new kmod support.  Keep this in mind when reading this file.  Kmod
  14. does the exact same thing as kerneld, but doesn't require an external
  15. program (see Documentation/kmod.txt)
  16. In the beginning...
  17. -------------------
  18. Anyway, your first step is to compile the kernel, as explained in the
  19. file linux/README.  It generally goes like:
  20. make config
  21. make dep
  22. make clean
  23. make zImage or make zlilo
  24. In "make config", you select what you want to include in the "resident"
  25. kernel and what features you want to have available as loadable modules.
  26. You will generally select the minimal resident set that is needed to boot:
  27. The filesystem of your root partition
  28. A scsi driver, but see below for a list of SCSI modules!
  29. Normal hard drive support
  30. Net support (CONFIG_NET)
  31. TCP/IP support (CONFIG_INET), but no drivers!
  32. plus those things that you just can't live without...
  33. The set of modules is constantly increasing, and you will be able to select
  34. the option "m" in "make config" for those features that the current kernel
  35. can offer as loadable modules.
  36. You also have a possibility to create modules that are less dependent on
  37. the kernel version.  This option can be selected during "make config", by
  38. enabling CONFIG_MODVERSIONS, and is most useful on "stable" kernel versions,
  39. such as the kernels from the 1.2 and 2.0 series.
  40. If you have modules that are based on sources that are not included in
  41. the official kernel sources, you will certainly like this option...
  42. Here is a sample of the available modules included in the kernel sources:
  43. Most filesystems: minix, msdos, umsdos, sysv, isofs, hpfs,
  44.   smbfs, nfs
  45. Mid-level SCSI support (required by top and low level scsi drivers).
  46. Most low-level SCSI drivers: (i.e. aha1542, in2000)
  47. All SCSI high-level drivers: disk, tape, cdrom, generic.
  48. Most Ethernet drivers: (too many to list, please see the file
  49. ./Documentation/networking/net-modules.txt)
  50. Most CDROM drivers:
  51. aztcd:     Aztech,Orchid,Okano,Wearnes
  52. cm206:     Philips/LMS CM206
  53. gscd:      Goldstar GCDR-420
  54. mcd, mcdx: Mitsumi LU005, FX001
  55. optcd:     Optics Storage Dolphin 8000AT
  56. sjcd:      Sanyo CDR-H94A
  57. sbpcd:     Matsushita/Panasonic CR52x, CR56x, CD200,
  58.            Longshine LCS-7260, TEAC CD-55A
  59. sonycd535: Sony CDU-531/535, CDU-510/515
  60. And a lot of misc modules, such as:
  61. lp: line printer
  62. binfmt_elf: elf loader
  63. binfmt_java: java loader
  64. isp16: cdrom interface
  65. serial: the serial (tty) interface
  66. When you have made the kernel, you create the modules by doing:
  67. make modules
  68. This will compile all modules and update the linux/modules directory.
  69. In this directory you will then find a bunch of symbolic links,
  70. pointing to the various object files in the kernel tree.
  71. Now, after you have created all your modules, you should also do:
  72. make modules_install
  73. This will copy all newly made modules into subdirectories under
  74. "/lib/modules/kernel_release/", where "kernel_release" is something
  75. like 2.0.1, or whatever the current kernel version is...
  76. As soon as you have rebooted the newly made kernel, you can install
  77. and remove modules at will with the utilities: "insmod" and "rmmod".
  78. After reading the man-page for insmod, you will also know how easy
  79. it is to configure a module when you do "insmod" (hint: symbol=value).
  80. Nifty features:
  81. ---------------
  82. You also have access to two utilities: "modprobe" and "depmod", where
  83. modprobe is a "wrapper" for (or extension to) "insmod".
  84. These utilities use (and maintain) a set of files that describe all the
  85. modules that are available for the current kernel in the /lib/modules
  86. hierarchy as well as their interdependencies.
  87. Using the modprobe utility, you can load any module like this:
  88. /sbin/modprobe module
  89. without paying much attention to which kernel you are running, or what
  90. other modules this module depends on.
  91. With the help of the modprobe configuration file: "/etc/modules.conf"
  92. you can tune the behaviour of modprobe in many ways, including an
  93. automatic setting of insmod options for each module.
  94. And, yes, there _are_ man-pages for all this...
  95. To use modprobe successfully, you generally place the following
  96. command in your /etc/rc.d/rc.S script.  (Read more about this in the
  97. "rc.hints" file in the module utilities package, "modutils-x.y.z.tar.gz".)
  98. /sbin/depmod -a
  99. This computes the dependencies between the different modules.
  100. Then if you do, for example
  101. /sbin/modprobe umsdos
  102. you will automatically load _both_ the msdos and umsdos modules,
  103. since umsdos runs piggyback on msdos.
  104. Using modinfo:
  105. --------------
  106. Sometimes you need to know what parameters are accepted by a
  107. module or you've found a bug and want to contact the maintainer.
  108. Then modinfo comes in very handy.
  109. Every module (normally) contains the author/maintainer,
  110. a description and a list of parameters.
  111. For example "modinfo -a eepro100" will return:
  112. Maintainer: Andrey V. Savochkin <saw@saw.sw.com.sg>
  113. and "modinfo -d eepro100" will return a description:
  114. Intel i82557/i82558 PCI EtherExpressPro driver
  115. and more important "modinfo -p eepro100" will return this list:
  116. debug int
  117. options int array (min = 1, max = 8)
  118. full_duplex int array (min = 1, max = 8)
  119. congenb int
  120. txfifo int
  121. rxfifo int
  122. txdmacount int
  123. rxdmacount int
  124. rx_copybreak int
  125. max_interrupt_work int
  126. multicast_filter_limit int
  127. The "ultimate" utility:
  128. -----------------------
  129. OK, you have read all of the above, and feel amply impressed...
  130. Now, we tell you to forget all about how to install and remove
  131. loadable modules...
  132. With the kerneld daemon, all of these chores will be taken care of
  133. automatically.  Just answer "Y" to CONFIG_KERNELD in "make config",
  134. and make sure that /sbin/kerneld is started as soon as possible
  135. after boot and that "/sbin/depmod -a" has been executed for the
  136. current kernel. (Read more about this in the module utilities package.)
  137. Whenever a program wants the kernel to use a feature that is only
  138. available as a loadable module, and if the kernel hasn't got the
  139. module installed yet, the kernel will ask the kerneld daemon to take
  140. care of the situation and make the best of it.
  141. This is what happens:
  142. - The kernel notices that a feature is requested that is not
  143.   resident in the kernel.
  144. - The kernel sends a message to kerneld, with a symbolic
  145.   description of the requested feature.
  146. - The kerneld daemon asks e.g. modprobe to load a module that
  147.   fits this symbolic description.
  148. - modprobe looks into its internal "alias" translation table
  149.   to see if there is a match.  This table can be reconfigured
  150.   and expanded by having "alias" lines in "/etc/modules.conf".
  151. - insmod is then asked to insert the module(s) that modprobe
  152.   has decided that the kernel needs.  Every module will be
  153.   configured according to the "options" lines in "/etc/modules.conf".
  154. - modprobe exits and kerneld tells the kernel that the request
  155.   succeeded (or failed...)
  156. - The kernel uses the freshly installed feature just as if it
  157.   had been configured into the kernel as a "resident" part.
  158. The icing of the cake is that when an automatically installed module
  159. has been unused for a period of time (usually 1 minute), the module
  160. will be automatically removed from the kernel as well.
  161. This makes the kernel use the minimal amount of memory at any given time,
  162. making it available for more productive use than as just a placeholder for
  163. unused code.
  164. Actually, this is only a side-effect from the _real_ benefit of kerneld:
  165. You only have to create a minimal kernel, that is more or less independent
  166. of the actual hardware setup.  The setup of the "virtual" kernel is
  167. instead controlled by a configuration file as well as the actual usage
  168. pattern of the current machine and its kernel.
  169. This should be good news for maintainers of multiple machines as well as
  170. for maintainers of distributions.
  171. To use kerneld with the least amount of "hassle", you need modprobe from
  172. a release that can be considered "recent" w.r.t. your kernel, and also
  173. a configuration file for modprobe ("/etc/modules.conf").
  174. Since modprobe already knows about most modules, the minimal configuration
  175. file could look something like this:
  176. alias scsi_hostadapter aha1542  # or whatever SCSI adapter you have
  177. alias eth0 3c509 # or whatever net adapter you have
  178. # you might need an "options" line for some net adapters:
  179. options 3c509 io=0x300 irq=10
  180. # you might also need an "options" line for some other module:
  181. options cdu31a cdu31a_port=0x1f88 sony_pas_init=1
  182. You could add these lines as well, but they are only "cosmetic":
  183. alias net-pf-3 off # no ax25 module available (yet)
  184. alias net-pf-4 off # if you don't use the ipx module
  185. alias net-pf-5 off # if you don't use the appletalk module
  186. Written by:
  187. Jacques Gelinas <jacques@solucorp.qc.ca>
  188. Bjorn Ekwall <bj0rn@blox.se>