home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 August / PCWorld_1999-08_cd.bin / doc / HOWTO / unmaintained / Module-HOWTO next >
Text File  |  1997-07-29  |  92KB  |  2,477 lines

  1. [ 30 July 1997
  2.   The Linux Module HOWTO is not being maintained by the author any
  3.   more.  If you are interested in maintaining the Module HOWTO, please
  4.   get in touch with me at <gregh@sunsite.unc.edu>. ]
  5.  
  6.   Linux Module-HOWTO
  7.   Lauri Tischler, Editor.
  8.   v1.1, 20 October 1996
  9.  
  10.   This is the Module-HOWTO, which is a compilation of all the possible
  11.   module parameters that can be passed to the Linux modules at load
  12.   time. Information within is based on Linux Kernel version 2.0.23.
  13.  
  14.   1.  Introduction
  15.  
  16.   Inspiration for this paper came from Paul Gortmaker's excellent
  17.   BootPrompt-HOWTO.  With Paul's permission I have used his paper as a
  18.   framework, upon which I have grafted my ramblings.  Different parts of
  19.   this paper have been shamelessly, without any permissions what so
  20.   ever, ripped off from various README and *.txt files within The Source
  21.   Tree. My sincere thanks for all the authors of those texts which have
  22.   made this document possible.
  23.  
  24.   This paper generally follows the same structure/module order as the
  25.   kernel configuration utility menuconfig when run in
  26.   single_menu_mode=TRUE mode.
  27.  
  28.   All sections which are marked Modular in the configuration utility are
  29.   included here, regardless whether they have option parameters or not.
  30.  
  31.   Each section follows the example outline below:
  32.  
  33.   ______________________________________________________________________
  34.   Load command:
  35.           /sbin/modprobe ne.o io=0x300 irq=5
  36.  
  37.           io = 0          (Explicitly *requires* an "io=0xNNN" value)
  38.           irq = 0         (Tries to determine configured IRQ via autoIRQ)
  39.           (Probes ports: 0x300, 0x280, 0x320, 0x340, 0x360)
  40.  
  41.           Depends on 8390.o
  42.   ______________________________________________________________________
  43.  
  44.   The Module-HOWTO is edited and maintained by:
  45.  
  46.        Lauri Tischler, ltischler@efore.fi
  47.  
  48.   1.1.  Disclaimer and Copyright
  49.  
  50.   This document is not gospel. However, it is probably the most up to
  51.   date info that you will be able to find. Nobody is responsible for
  52.   what happens to your hardware but yourself. If your hardware goes up
  53.   in smoke (...nearly impossible!)  I take no responsibility. ie. THE
  54.   AUTHOR IS NOT RESPONSIBLE FOR ANY DAMAGES INCURRED DUE TO ACTIONS
  55.   TAKEN BASED ON THE INFORMATION INCLUDED IN THIS DOCUMENT.
  56.  
  57.   This document is Copyright (c) 1996 by Lauri Tischler.  Permisson is
  58.   granted to make and distribute verbatim copies of this manual provided
  59.   the copyright notice and this permission notice are preserved on all
  60.   copies.
  61.  
  62.   Permission is granted to copy and distribute modified versions of this
  63.   document under the conditions for verbatim copying, provided that this
  64.   copyright notice is included exactly as in the original, and that the
  65.   entire resulting derived work is distributed under the terms of a
  66.   permission notice identical to this one.
  67.  
  68.   Permission is granted to copy and distribute translations of this
  69.   document into another language, under the above conditions for
  70.   modified versions.
  71.  
  72.   If you are intending to incorporate this document into a published
  73.   work, please contact me, and I will make an effort to ensure that you
  74.   have the most up to date information available. In the past, out of
  75.   date versions of the Linux howto documents have been published, which
  76.   caused the developers undue grief from being plagued with questions
  77.   that were already answered in the up to date versions.
  78.  
  79.   1.2.  Related Documentation
  80.  
  81.   Following HOWTO's are highly recommended :
  82.  
  83.   ╖  BootPrompt-HOWTO by Paul Gortmaker (Paul.Gortmaker@anu.edu.au).
  84.      New versions of this document can be retrieved via anonymous FTP
  85.      from sunsite.unc.edu, in /pub/Linux/docs/HOWTO/* and various Linux
  86.      ftp mirror sites.
  87.  
  88.   ╖  kerneld mini-HOWTO by Henrik Storner (storner@osiris.ping.dk).  The
  89.      latest released version of this document can be found at
  90.      http://eolicom.olicom.dk/~storner/kerneld-mini-HOWTO.html.  Between
  91.      releases of the mini-HOWTO you can find updates on Henrik's
  92.      unstructured list of changes at
  93.      http://eolicom.olicom.dk/~storner/kern.html.
  94.  
  95.   The file Documentation/Configure.help gives good general information
  96.   about what parts of the kernel to modularize or not.
  97.  
  98.   Also plethora of various README files, sprinkled (unfortunately) all
  99.   over The Source Tree are good and informative reading.
  100.  
  101.   The most up-to-date documentation will always be The Kernel Source
  102.   itself. For example, if you were looking for what parameters could be
  103.   passed to the smc-ultra ethernetcard, then you would go to the
  104.   linux/drivers/net directory, and look at the file smc-ultra.c --
  105.   usually somewhere in the end of the file you would find a procedure
  106.   called init_module.  Within this procedure or around it you will
  107.   parameter and structure definitions related to module parameters.
  108.  
  109.   1.3.  The Linux Newsgroups
  110.  
  111.   If you have questions about passing parameters to modules at load
  112.   time, please READ this document first. If this and the related
  113.   documentation mentioned above does not answer your question(s) then
  114.   you can try the Linux newsgroups.
  115.  
  116.   General questions on how to configure your system should be directed
  117.   to comp.os.linux.setup.  We ask that you please respect this general
  118.   guideline for content, and don't cross-post your request to other
  119.   groups.
  120.  
  121.   1.4.  New Versions of Document
  122.  
  123.   New versions of this document can be retrieved via anonymous FTP from
  124.   sunsite.unc.edu, in /pub/Linux/docs/HOWTO/* and various Linux ftp
  125.   mirror sites. Updates will be made  as new information or drivers
  126.   becomes available. If this copy that you are reading is more than 3
  127.   months old, it is either out of date, or it means that I have been
  128.   lazy and haven't updated it.
  129.   This document was produced by using the SGML system that was
  130.   specifically set up for the Linux Howto project, and there are various
  131.   output formats available, including, postscript, dvi, ascii, html, and
  132.   soon TeXinfo.
  133.  
  134.   I would recommend viewing it in the html (via a WWW browser) or the
  135.   Postscript/dvi format. Both of these contain cross-references that are
  136.   lost in the ascii translation.
  137.  
  138.   If you want to get the official copy off sunsite, here is URL.
  139.  
  140.   Module-HOWTO <http://sunsite.unc.edu/mdw/HOWTO/Module-HOWTO.html>
  141.  
  142.   1.5.  Experimental (alpha-code) modules or incomplete information.
  143.  
  144.   Here is a list of modules which are declared experimental in
  145.   configuration scripts or otherwise have incomplete info or I'm just
  146.   too dumb to understand The Source. Pick your choice.
  147.  
  148.   ╖  Support for JAVA binaries.
  149.  
  150.   ╖  Frame Relay DLCI driver.
  151.  
  152.   ╖  Sangoma S502A FRAD driver.
  153.  
  154.   ╖  BAYCOM driver for AX.25.
  155.  
  156.   ╖  WIC Radio IP Bridge.
  157.  
  158.   ╖  3Com 3c505 Ethernet driver.
  159.  
  160.   ╖  3Com 3c507 Ethernet driver.
  161.  
  162.   ╖  Allied Telesis AT1700 Ethernet driver.
  163.  
  164.   ╖  Intel Ether Express Pro driver.
  165.  
  166.   ╖  Fujitsu FMV-18x Ethernet driver.
  167.  
  168.   ╖  ICL EtherTeam 16i/32 Ethernet driver.
  169.  
  170.   ╖  NI 5210 Ethernet driver.
  171.  
  172.   ╖  Ansel Communications EISA 3200 Ethernet driver.
  173.  
  174.   ╖  Amiga FSS Filesystem.
  175.  
  176.   1.6.  History.
  177.  
  178.   ╖  Initial release 1.0, 20th June 1996.
  179.  
  180.   ╖  Release 1.1, 20th October 1996.
  181.  
  182.   2.  Module utilities
  183.  
  184.   Module utilities are a set of programs necessary for handling the
  185.   modules. At the time of this writing, version of latest module
  186.   utilities was modules-2.0.0.tar.gz.  Info about latest current version
  187.   can be found at http://www.pi.se/blox
  188.  
  189.   This information was originally provided by following gentlemen,
  190.   Jacques Gelinas jacques@solucorp.qc.ca and Bj÷rn Ekwall bj0rn@blox.se
  191.   in /usr/src/linux/Documentation/modules.txt.
  192.  
  193.   2.1.  Making the modules
  194.  
  195.   Your first step is to compile the kernel, as explained in the file
  196.   linux/README.  It generally goes like:
  197.  
  198.   ╖  make config
  199.  
  200.   ╖  make dep
  201.  
  202.   ╖  make clean
  203.  
  204.   ╖  make zImage or make zlilo
  205.  
  206.   In make config, you select what you want to include in the resident
  207.   kernel and what features you want to have available as loadable
  208.   modules.  You will generally select the minimal resident set that is
  209.   needed to boot:
  210.  
  211.   ╖  The filesystem of your root partition
  212.  
  213.   ╖  A scsi driver
  214.  
  215.   ╖  Normal hard drive support
  216.  
  217.   ╖  Net support (CONFIG_NET)
  218.  
  219.   ╖  TCP/IP support (CONFIG_INET), but no drivers!
  220.  
  221.   ╖  plus those things that you just can't live without...
  222.  
  223.   The set of modules is constantly increasing, and you will be able to
  224.   select the option m in make config for those features that the current
  225.   kernel can offer as loadable modules.
  226.  
  227.   You also have a possibility to create modules that are less dependent
  228.   on the kernel version.  This option can be selected during make
  229.   config, by enabling CONFIG_MODVERSIONS, and is most useful on stable
  230.   kernel versions, such as the kernels from the 1.2 and 2.0 series.  If
  231.   you have modules that are based on sources that are not included in
  232.   the official kernel sources, you will certainly like this option...
  233.  
  234.   When you have made the kernel, you create the modules by doing:
  235.  
  236.        make modules
  237.  
  238.   This will compile all modules and update the linux/modules directory.
  239.   In this directory you will then find a bunch of symbolic links,
  240.   pointing to the various object files in the kernel tree.
  241.  
  242.   Now, after you have created all your modules, you should also do:
  243.  
  244.        make modules_install
  245.  
  246.   This will copy all newly made modules into subdirectories under
  247.   /lib/modules/kernel_release/, where kernel_release is something like
  248.   2.0.1, or whatever the current kernel version is...
  249.  
  250.   As soon as you have rebooted the newly made kernel, you can install
  251.   and remove modules at will with the utilities: insmod and rmmod.
  252.   After reading the man-page for insmod, you will also know how easy it
  253.   is to configure a module when you do insmod (hint: symbol=value).
  254.  
  255.   2.2.  Extended utilities, modprobe and depmod.
  256.  
  257.   You also have access to two utilities: modprobe and depmod, where
  258.   modprobe is a wrapper for (or extension to) insmod.  These utilities
  259.   use (and maintain) a set of files that describe all the modules that
  260.   are available for the current kernel in the /lib/modules hierarchy as
  261.   well as their interdependencies.
  262.  
  263.   Using the modprobe utility, you can load any module like this:
  264.  
  265.        /sbin/modprobe module
  266.  
  267.   without paying much attention to which kernel you are running, or what
  268.   other modules this module depends on.
  269.  
  270.   With the help of the modprobe configuration file: /etc/conf.modules
  271.   you can tune the behaviour of modprobe in many ways, including an
  272.   automatic setting of insmod options for each module. And, yes, there
  273.   are man-pages for all this...
  274.  
  275.   To use modprobe successfully, you generally place the following
  276.   command in your /etc/rc.d/rc.S script.  (Read more about this in the
  277.   rc.hints file in the module utilities package, modules-x.y.z.tar.gz.)
  278.  
  279.        /sbin/depmod -a
  280.  
  281.   This computes the dependencies between the different modules.  Then if
  282.   you do, for example
  283.  
  284.        /sbin/modprobe umsdos
  285.  
  286.   you will automatically load both the msdos and umsdos modules, since
  287.   umsdos runs piggyback on msdos.
  288.  
  289.   2.3.  The ultimate utility, kerneld.
  290.  
  291.   OK, you have read all of the above, and feel amply impressed...  Now,
  292.   we tell you to forget all about how to install and remove loadable
  293.   modules...
  294.  
  295.   With the kerneld daemon, all of these chores will be taken care of
  296.   automatically.  Just answer "Y" to CONFIG_KERNELD in make config, and
  297.   make sure that /sbin/kerneld is started as soon as possible after boot
  298.   and that /sbin/depmod -a has been executed for the current kernel.
  299.   (Read more about this in the module utilities package.)
  300.  
  301.   Whenever a program wants the kernel to use a feature that is only
  302.   available as a loadable module, and if the kernel hasn't got the
  303.   module installed yet, the kernel will ask the kerneld deamon to take
  304.   care of the situation and make the best of it.
  305.  
  306.   This is what happens:
  307.  
  308.   ╖  The kernel notices that a feature is requested that is not resident
  309.      in the kernel.
  310.  
  311.   ╖  The kernel sends a message to kerneld, with a symbolic description
  312.      of the requested feature.
  313.  
  314.   ╖  The kerneld daemon asks e.g. modprobe to load a module that fits
  315.      this symbolic description.
  316.  
  317.   ╖  Modprobe looks into its internal alias translation table to see if
  318.      there is a match.  This table can be reconfigured and expanded by
  319.      having alias lines in /etc/conf.modules.
  320.  
  321.   ╖  Insmod is then asked to insert the module(s) that modprobe has
  322.      decided that the kernel needs.  Every module will be configured
  323.      according to the options lines in /etc/conf.modules.
  324.  
  325.   ╖  Modprobe exits and kerneld tells the kernel that the request
  326.      succeded (or failed...)
  327.  
  328.   ╖  The kernel uses the freshly installed feature just as if it had
  329.      been configured into the kernel as a resident part.
  330.  
  331.   The icing of the cake is that when an automatically installed module
  332.   has been unused for a period of time (usually 1 minute), the module
  333.   will be automatically removed from the kernel as well.
  334.  
  335.   This makes the kernel use the minimal amount of memory at any given
  336.   time, making it available for more productive use than as just a
  337.   placeholder for unused code.
  338.  
  339.   Actually, this is only a side-effect from the real benefit of kerneld:
  340.   You only have to create a minimal kernel, that is more or less
  341.   independent of the actual hardware setup.  The setup of the virtual
  342.   kernel is instead controlled by a configuration file as well as the
  343.   actual usage pattern of the current machine and its kernel.
  344.  
  345.   This should be good news for maintainers of multiple machines as well
  346.   as for maintainers of distributions.
  347.  
  348.   To use kerneld with the least amount of hassle, you need modprobe from
  349.   a release that can be considered recent w.r.t. your kernel, and also a
  350.   configuration file for modprobe (/etc/conf.modules).
  351.  
  352.   Since modprobe already knows about most modules, the minimal
  353.   configuration file could look something like this:
  354.  
  355.           alias scsi_hostadapter aha1542  # or whatever SCSI adapter you have
  356.           alias eth0 3c509                # or whatever net adapter you have
  357.  
  358.           # you might need an "options" line for some net adapters:
  359.           options 3c509 io=0x300 irq=10
  360.  
  361.           # you might also need an "options" line for some other module:
  362.           options cdu31a cdu31a_port=0x1f88 sony_pas_init=1
  363.  
  364.   You could add these lines as well, but they are only cosmetic:
  365.  
  366.                alias net-pf-3 off      # no ax25 module available (yet)
  367.                alias net-pf-4 off      # if you don't use the ipx module
  368.                alias net-pf-5 off      # if you don't use the appletalk module
  369.  
  370.   Finally, for the purists: You can name the modprobe configuration
  371.   either /etc/conf.modules or /etc/modules.conf, since modprobe knows
  372.   what to do in each case...
  373.  
  374.   3.  General Kernel setup
  375.  
  376.   Note: you can't have both a.out and ELF support compiled as modules.
  377.   Otherwise, you get a nice Catch-22 when you try to run insmod to
  378.   install a.out/ELF support so you can run insmod ;-).  If you have an
  379.   all-ELF system, but need a.out for the occasional Netscape session,
  380.   then you can do a.out support as a module.  Otherwise, you should
  381.   probably leave it in the kernel, and if you haven't gone ELF yet, you
  382.   can probably leave out ELF compleately.
  383.  
  384.   3.1.  Kernel support for a.out binaries (binfmt_aout.o).
  385.  
  386.   ______________________________________________________________________
  387.   Load command:
  388.           /sbin/modprobe binfmt_aout.o
  389.  
  390.           No module parameters.
  391.   ______________________________________________________________________
  392.  
  393.   3.2.  Kernel support for ELF binaries (binfmt_elf.o).
  394.  
  395.   ______________________________________________________________________
  396.   Load command:
  397.           /sbin/modprobe binfmt_elf.o
  398.  
  399.           No module parameters.
  400.   ______________________________________________________________________
  401.  
  402.   3.3.  Kernel support for JAVA binaries (binfmt_java.o).
  403.  
  404.   JAVA is an object oriented programming language developed by SUN; JAVA
  405.   programs are compiled into "JAVA bytecode" which can then be
  406.   interpreted by run time systems on many different operating systems.
  407.   These JAVA binaries are becoming a universal executable format. This
  408.   option allows you to run a Java binary just like any other Linux
  409.   program: by typing in its name.
  410.  
  411.   ______________________________________________________________________
  412.   Load command:
  413.           /sbin/modprobe binfmt_java.o
  414.  
  415.           No module parameters.
  416.   ______________________________________________________________________
  417.  
  418.   4.  Floppy and other block devices.
  419.  
  420.   4.1.  The Floppy Disk Driver (floppy.o).
  421.  
  422.   There are many floppy driver options, and they are all listed in
  423.   README.fd in linux/drivers/block. For detailed, up to date,
  424.   information refer directly to this file.
  425.  
  426.   ______________________________________________________________________
  427.   Load command:
  428.           /sbin/modprobe floppy.o 'floppy="<options>"'
  429.  
  430.           Option explanations below..
  431.   ______________________________________________________________________
  432.  
  433.   mask,allowed_drive_mask -         Sets the bitmask of allowed drives
  434.   to mask. By default, only units 0 and 1 of each floppy controller are
  435.   allowed. This is done because certain non-standard hardware (ASUS PCI
  436.   motherboards) mess up the keyboard when accessing units 2 or 3. This
  437.   option is somewhat obsoleted by the cmos option.
  438.  
  439.   all_drives - Sets the bitmask of allowed drives to all drives.  Use
  440.   this if you have more than two drives connected to a floppy
  441.   controller.
  442.  
  443.   asus_pci - Sets the bitmask to allow only units 0 and 1.  (The
  444.   default)
  445.  
  446.   daring - Tells the floppy driver that you have a well behaved floppy
  447.   controller.  This allows more efficient and smoother operation, but
  448.   may fail on certain controllers.  This may speed up certain
  449.   operations.
  450.  
  451.   0,daring - Tells the floppy driver that your floppy controller should
  452.   be used with caution.
  453.   one_fdc - Tells the floppy driver that you have only floppy controller
  454.   (default)
  455.  
  456.   two_fdc or address,two_fdc - Tells the floppy driver that you have two
  457.   floppy controllers. The second floppy controller is assumed to be at
  458.   address. This option is not needed if the second controller is at
  459.   address 0x370, and if you use the 'cmos' option
  460.  
  461.   thinkpad - Tells the floppy driver that you have a Thinkpad. Thinkpads
  462.   use an inverted convention for the disk change line.
  463.  
  464.   0,thinkpad - Tells the floppy driver that you don't have a Thinkpad.
  465.  
  466.   omnibook or nodma - Tells the floppy driver not to use Dma for data
  467.   transfers.  This is needed on HP Omnibooks, which don't have a
  468.   workable DMA channel for the floppy driver. This option is also useful
  469.   if you frequently get "Unable to allocate DMA memory" messages.
  470.   Indeed, dma memory needs to be continuous in physical, and is thus
  471.   harder to find, whereas non-dma buffers may be allocated in virtual
  472.   memory. However, I advise against this if you have an FDC without a
  473.   FIFO (8272A or 82072). 82072A and later are OK. You also need at least
  474.   a 486 to use nodma.  If you use nodma mode, I suggest you also set the
  475.   FIFO threshold to 10 or lower, in order to limit the number of data
  476.   transfer interrupts.
  477.  
  478.   dma - Tells the floppy driver that a workable DMA channel is available
  479.   (the default).
  480.  
  481.   nofifo - Disables the FIFO entirely. This is needed if you get "Bus
  482.   master arbitration error" messages from your ethernet card (or from
  483.   other devices) while accessing the floppy.
  484.  
  485.   fifo - Enables the FIFO (default)
  486.  
  487.   [threshold],fifo_depth - Sets the FIFO threshold. This is mostly
  488.   relevant in DMA mode. If this is higher, the floppy driver tolerates
  489.   more interrupt latency, but it triggers more interrupts (i.e. it
  490.   imposes more load on the rest of the system). If this is lower, the
  491.   interrupt latency should be lower too (faster processor). The benefit
  492.   of a lower threshold is less interrupts.
  493.  
  494.   To tune the fifo threshold, switch on over/underrun messages using
  495.   'floppycontrol --messages'. Then access a floppy disk. If you get a
  496.   huge amount of "Over/Underrun - retrying" messages, then the fifo
  497.   threshold is too low. Try with a higher value, until you only get an
  498.   occasional Over/Underrun.  It is a good idea to compile the floppy
  499.   driver as a module when doing this tuning. Indeed, it allows to try
  500.   different fifo values without rebooting the machine for each test.
  501.   Note that you need to do 'floppycontrol --messages' every time you re-
  502.   insert the module.  Usually, tuning the fifo threshold should not be
  503.   needed, as the default (0xa) is reasonable.
  504.  
  505.   [drive],[type],cmos - Sets the CMOS type of drive to type. This is
  506.   mandatory if you have more than two floppy drives (only two can be
  507.   described in the physical CMOS), or if your BIOS uses non-standard
  508.   CMOS types. The CMOS types are:
  509.  
  510.   ______________________________________________________________________
  511.             0 - Use the value of the physical CMOS
  512.                   1 - 5 1/4 DD
  513.                   2 - 5 1/4 HD
  514.                   3 - 3 1/2 DD
  515.                   4 - 3 1/2 HD
  516.                   5 - 3 1/2 ED
  517.                   6 - 3 1/2 ED
  518.                  16 - unknown or not installed
  519.   ______________________________________________________________________
  520.  
  521.   (Note: there are two valid types for ED drives. This is because 5 was
  522.   initially chosen to represent floppy *tapes*, and 6 for ED drives.
  523.   AMI ignored this, and used 5 for ED drives. That's why the floppy
  524.   driver handles both)
  525.  
  526.   unexpected_interrupts - Print a warning message when an unexpected
  527.   interrupt is received (default behavior)
  528.  
  529.   no_unexpected_interrupts or L40SX - Don't print a message when an
  530.   unexpected interrupt is received. This is needed on IBM L40SX laptops
  531.   in certain video modes. (There seems to be an interaction between
  532.   video and floppy. The unexpected interrupt only affect performance,
  533.   and can safely be ignored.)
  534.  
  535.   4.2.  Loopback block device support (loop.o).
  536.  
  537.   Enabling this option will allow you to mount a file as a file system.
  538.   This is useful if you want to check an ISO9660 file system before
  539.   burning the CD, or want to use floppy images without first writing
  540.   them to floppy.
  541.  
  542.   This option also allows one to mount a filesystem with encryption.  To
  543.   use these features, you need a recent version of mount and other
  544.   patches for DES and IDEA. They can be found at
  545.   http://www.binary9.net/nicholas/linuxkernel/patches.  Note that this
  546.   loop device has nothing to do with the loopback device used for
  547.   network connections from the machine to itself.
  548.  
  549.   ______________________________________________________________________
  550.   Load command:
  551.           /sbin/modprobe loop.o
  552.  
  553.           No module parameters.
  554.   ______________________________________________________________________
  555.  
  556.   4.3.  Multiple devices driver support (RAID).
  557.  
  558.   This driver lets you combine several harddisk partitions into one
  559.   logical block device.
  560.  
  561.   Tools that can be used to manage md devices can be found at sweet-
  562.   smoke.ufr-info-p7.ibp.fr/public/Linux/md035.tar.gz.  Same location
  563.   contains also a document md-FAQ.
  564.  
  565.   There are various levels of Redundant Array of Inexpensive (or
  566.   Independent) Disks defined.
  567.  
  568.   ╖  RAID-0, Data striped across all disks. No error checking.
  569.  
  570.      Pros.
  571.         Best RAID data transfer rate. Transparent to system software.
  572.  
  573.      Cons.
  574.         No error checking or redundancy. The failure of one drive in the
  575.         array results in the loss of all data stored in the array.  Any
  576.         MTBF calculation must really be recalculated.
  577.  
  578.   ╖  RAID-1, Disk Mirroring.
  579.  
  580.      Pros.
  581.         No write penalty. 100% data redundancy.  No performace penalty
  582.         after failure.
  583.  
  584.      Cons.
  585.         100% cost overhead. Requires 2x disk space and power compared to
  586.         non-arrayed system.
  587.  
  588.   ╖  RAID-5, Sector-oriented striping of data and parity.
  589.  
  590.      Pros.
  591.         Good performance for transaction processing systems.  No write
  592.         overhead as in RAID-4.  Storage overhead is maximum of one disk.
  593.         Can read in parallel across the array.
  594.  
  595.      Cons.
  596.         Performance degradation during data reconstruction.
  597.  
  598.   ╖  RAID-6, Mirrored RAID-0 array.
  599.  
  600.      Pros.
  601.         RAID data transfer rate comparable to RAID-0.  100% data
  602.         redundancy.  No performace penalty after failure.
  603.  
  604.      Cons.
  605.         100% cost overhead. Requires 2x disk space and power compared to
  606.         non-arrayed system.
  607.  
  608.   Only RAID-0 is available for Linux at the moment. Linear mode is not
  609.   considered as part of RAID definition. The Raid Advisory Board does
  610.   not consider RAID-0 to be part of RAID definition either, due to
  611.   missing data redundancy.
  612.  
  613.   Usefull modes for implementation are RAID-0, RAID-1, RAID-5 and
  614.   RAID-6.
  615.  
  616.   4.3.1.  Multiple device in Linear (append) mode (linear.o).
  617.  
  618.   If you use this, then your multiple devices driver will be able to use
  619.   the so-called linear mode, i.e. it will combine the harddisk
  620.   partitions by simply appending one to the other.
  621.  
  622.   ______________________________________________________________________
  623.   Load command:
  624.           /sbin/modprobe linear.o
  625.  
  626.           No module parameters.
  627.   ______________________________________________________________________
  628.  
  629.   4.3.2.  Multiple device in RAID-0 (striped) mode (raid0.o).
  630.  
  631.   If you use this, then your multiple devices driver will be able to use
  632.   the so-called raid0 mode, i.e. it will combine the harddisk partitions
  633.   into one logical device in such a fashion as to fill them up evenly,
  634.   one chunk here and one chunk there. This will increase the throughput
  635.   rate if the partitions reside on distinct disks.
  636.  
  637.   ______________________________________________________________________
  638.   Load command:
  639.           /sbin/modprobe raid0.o
  640.  
  641.           No module parameters.
  642.   ______________________________________________________________________
  643.  
  644.   4.4.  RAM disk support (rd.o).
  645.  
  646.   Enabling this option will allow you to use a portion of your RAM
  647.   memory as a block device, so that you can make filesystems on it, read
  648.   and write to it and do all the other things that normal block devices
  649.   (such as harddrives) can do.  It is usually used to load and store a
  650.   copy of a minimal root file system off of a floppy into RAM during the
  651.   initial install of Linux.
  652.  
  653.   ______________________________________________________________________
  654.   Load command:
  655.           /sbin/modprobe rd.o
  656.  
  657.           No module parameters.
  658.           Boottime parameters available, see BootPrompt-HOWTO.
  659.   ______________________________________________________________________
  660.  
  661.   4.5.  XT harddisk support (xd.o).
  662.  
  663.   Very old 8 bit hard disk controllers used in the IBM XT computer.  No,
  664.   the existence of XT disk support does NOT mean that you can run Linux
  665.   on an IBM XT :).
  666.  
  667.   ______________________________________________________________________
  668.   Load command:
  669.           /sbin/modprobe xd.o
  670.  
  671.           No module parameters.
  672.   ______________________________________________________________________
  673.  
  674.   5.  General TCP/IP and Networking options.
  675.  
  676.   5.1.  IP Tunneling (ipip.o and new_tunnel.o).
  677.  
  678.   Tunneling means encapsulating data of one protocol type within another
  679.   protocol and sending it over a channel that understands the
  680.   encapsulating protocol. Two modules are necessary ipip.o, IP/IP
  681.   protocol decoder, and new_tunnel.o driver, (this was previously called
  682.   tunnel.o and the documentation still refers to this name).
  683.   Documentation is found at /usr/src/linux/drivers/net/README.tunnel.
  684.  
  685.   ______________________________________________________________________
  686.   Load commands:
  687.           /sbin/modprobe ipip.o
  688.           /sbin/modprobe new_tunnel.o
  689.  
  690.           No module parameters.
  691.   ______________________________________________________________________
  692.  
  693.   5.2.  IP Aliasing support (ip_alias.o).
  694.  
  695.   Sometimes it is useful to give several addresses to a single network
  696.   interface (= serial port or ethernet card). The most common case is
  697.   that you want to serve different WWW documents to the outside
  698.   according to which of your host names they used to connect to you.
  699.  
  700.   ______________________________________________________________________
  701.   Load command:
  702.           /sbin/modprobe ip_alias.o
  703.  
  704.           No module parameters.
  705.   ______________________________________________________________________
  706.  
  707.   5.3.  IP Reverse ARP (rarp.o).
  708.  
  709.   ______________________________________________________________________
  710.   Load command:
  711.           /sbin/modprobe rarp.o
  712.  
  713.           No module parameters.
  714.   ______________________________________________________________________
  715.  
  716.   5.4.  IPX Protocol (ipx.o).
  717.  
  718.   This is support for the Novell networking protocol, IPX, commonly used
  719.   for local networks of DOS and Windows machines.
  720.  
  721.   IPX protocol is required if :
  722.  
  723.   ╖  You wish to connect to Netware servers using Linux DOS emulator
  724.      DOSEMU.
  725.  
  726.   ╖  You wish to mount Netware volumes as Linux filesystems using Linux
  727.      Novell client ncpfs.
  728.  
  729.   ╖  You wish to connect to Linux server from Netware client, or mount
  730.      Linux directories as Netware volumes.  There are two daemons for
  731.      this purpose, linwared and nwserv.
  732.  
  733.   Homesite for ncpfs is ftp.gwdg.de/pub/linux/misc/ncpfs, but sunsite
  734.   and its many mirrors will have it as well.
  735.  
  736.   Linware's home site is klokan.sh.cvut.cz/pub/linux/linware,
  737.  
  738.   nwserv package Mars_nwe is also on ftp.gwdg.de/pub/linux/misc/ncpfs.
  739.  
  740.   ______________________________________________________________________
  741.   Load command:
  742.           /sbin/modprobe ipx.o
  743.  
  744.           No module parameters.
  745.   ______________________________________________________________________
  746.  
  747.   5.5.  Appletalk DDP (appletalk.o).
  748.  
  749.   Appletalk is the way Apple computers speak to each other on a network.
  750.   EtherTalk is the name used for appletalk over ethernet and Localtalk
  751.   is appletalk over the apple serial links.
  752.  
  753.   ______________________________________________________________________
  754.   Load command:
  755.           /sbin/modprobe appletalk.o
  756.  
  757.           No module parameters.
  758.   ______________________________________________________________________
  759.  
  760.   6.  SCSI Support.
  761.  
  762.   The scsi support in the linux kernel can be modularized in a number of
  763.   different ways depending upon the needs of the end user.  To
  764.   understand  your options, we should first define a few terms.
  765.  
  766.   The scsi-core contains the core of scsi support.  Without it you can
  767.   do nothing with any of the other scsi drivers.  The scsi core support
  768.   can be a module (scsi_mod.o), or it can be build into the kernel.  If
  769.   the core is a module, it must be the first scsi module loaded, and if
  770.   you unload the modules, it will have to be the last one unloaded.
  771.  
  772.   The individual upper and lower level drivers can be loaded in any
  773.   order once the scsi core is present in the kernel (either compiled in
  774.   or loaded as a module).  The disk driver (sd_mod.o), cdrom driver
  775.   (sr_mod.o), tape driver (st.o) and scsi generics driver (sg.o)
  776.   represent the upper level drivers to support the various assorted
  777.   devices which can be controlled.  You can for example load the tape
  778.   driver to use the tape drive, and then unload it once you have no
  779.   further need for the driver (and release the associated memory).
  780.  
  781.   The lower level drivers are the ones that support the individual cards
  782.   that are supported for the hardware platform that you are running
  783.   under.  Examples are aha1542.o to drive Adaptec 1542 cards.
  784.  
  785.   6.1.  SCSI Required Core Support.
  786.  
  787.   6.1.1.  SCSI Core support (scsi_mod.o).
  788.  
  789.   ______________________________________________________________________
  790.   Load command:
  791.           /sbin/modprobe scsi_mod.o
  792.  
  793.           No module parameters.
  794.   ______________________________________________________________________
  795.  
  796.   6.2.  SCSI High level support.
  797.  
  798.   6.2.1.  SCSI Disk support (sd_mod.o).
  799.  
  800.   ______________________________________________________________________
  801.   Load command:
  802.           /sbin/modprobe sd_mod.o
  803.  
  804.           No module parameters.
  805.   ______________________________________________________________________
  806.  
  807.   6.2.2.  SCSI Tape support (st.o).
  808.  
  809.   ______________________________________________________________________
  810.   Load command:
  811.           /sbin/modprobe st.o
  812.  
  813.           No module parameters.
  814.           Boottime parameters available, see BootPrompt-HOWTO.
  815.   ______________________________________________________________________
  816.  
  817.   6.2.3.  SCSI CDrom support (sr_mod.o).
  818.  
  819.   ______________________________________________________________________
  820.   Load command:
  821.           /sbin/modprobe sr_mod.o
  822.  
  823.           No module parameters.
  824.   ______________________________________________________________________
  825.  
  826.   6.2.4.  SCSI generic support (sg.o).
  827.  
  828.   ______________________________________________________________________
  829.   Load command:
  830.           /sbin/modprobe sg.o
  831.  
  832.           No module parameters.
  833.   ______________________________________________________________________
  834.  
  835.   6.3.  SCSI Low Level Device Driver Support.
  836.  
  837.   Most SCSI-card drivers don't support module parameters, they do
  838.   generally autoprobe for card settings.  Do read the SCSI-HOWTO
  839.   document and README files in /usr/src/linux/drivers/scsi to to find
  840.   out about your hardware.  If your card is located in some
  841.   unconventional i/o-address you must load the driver permanently into
  842.   the kernel and use Boottime options, see BootPrompt-HOWTO.  Optionally
  843.   you can twiddle The Source and recompile.
  844.  
  845.   6.3.1.  7000FASST SCSI support (wd7000.o),
  846.  
  847.   ______________________________________________________________________
  848.   Load command:
  849.           /sbin/modprobe wd7000.o
  850.  
  851.           No module parameters.
  852.           Autoprobes the card, requires installed BIOS.
  853.           Boottime parameters available, see BootPrompt-HOWTO.
  854.   ______________________________________________________________________
  855.  
  856.   6.3.2.  Adaptec AHA152X/2825 support (aha154x.o).
  857.  
  858.   ______________________________________________________________________
  859.   Load command:
  860.           /sbin/modprobe aha154x.o
  861.  
  862.           No module parameters.
  863.           Autoprobes the card, requires installed BIOS.
  864.           Boottime parameters available, see BootPrompt-HOWTO.
  865.   ______________________________________________________________________
  866.  
  867.   6.3.3.  Adaptec AHA1542 support (aha1542.o).
  868.  
  869.   ______________________________________________________________________
  870.   Load command:
  871.           /sbin/modprobe aha1542.o
  872.  
  873.           No module parameters.
  874.           Autoprobes card at 0x330 and 0x334 only.
  875.           Boottime parameters available, see BootPrompt-HOWTO.
  876.   ______________________________________________________________________
  877.  
  878.   6.3.4.  Adaptec AHA1740 EISA support (aha1740.o).
  879.  
  880.   ______________________________________________________________________
  881.   Load command:
  882.           /sbin/modprobe aha1740.o
  883.  
  884.           No module parameters.
  885.           Autoprobes the card.
  886.   ______________________________________________________________________
  887.  
  888.   6.3.5.  Adaptec AHA274X/284X/294X support (aic7xxx.o).
  889.  
  890.   ______________________________________________________________________
  891.   Load command:
  892.           /sbin/modprobe aic7xxx.o
  893.  
  894.           No module parameters.
  895.           Autoprobes the card, BIOS must be enabled.
  896.           Boottime parameters available, see BootPrompt-HOWTO.
  897.   ______________________________________________________________________
  898.  
  899.   6.3.6.  AdvanSys SCSI support (advansys.o).
  900.  
  901.   ______________________________________________________________________
  902.   Load command:
  903.           /sbin/modprobe advansys.o [parameters]
  904.  
  905.           asc_iopflag=1                   enable=1, disable=0 port scanning
  906.           asc_ioport=0x110,0x330          ports to scan
  907.           asc_dbglvl=1                    debugging level
  908.                                              0: Errors Only
  909.                                              1: High-Level Tracing
  910.                                              2-N: Verbose Tracing
  911.  
  912.           Boottime parameters available, see BootPrompt-HOWTO.
  913.   ______________________________________________________________________
  914.  
  915.   6.3.7.  Always IN2000 SCSI support (in2000.o).
  916.  
  917.   ______________________________________________________________________
  918.   Load command:
  919.           /sbin/modprobe in2000.o
  920.  
  921.           No module parameters.
  922.           Autoprobes the card, BIOS not required.
  923.   ______________________________________________________________________
  924.  
  925.   6.3.8.  BusLogic SCSI support (BusLogic.o).
  926.  
  927.   The list of supported BusLogic cards is long.  Read
  928.   usr/src/linux/drivers/scsi/README.BusLogic to get the total picture.
  929.  
  930.   ______________________________________________________________________
  931.   Load command:
  932.           /sbin/modprobe BusLogic.o
  933.  
  934.           No module parameters.
  935.           Boottime parameters available, see BootPrompt-HOWTO.
  936.   ______________________________________________________________________
  937.  
  938.   6.3.9.  DTC3180/3280 SCSI support (dtc.o).
  939.  
  940.   ______________________________________________________________________
  941.   Load command:
  942.           /sbin/modprobe dtc.o
  943.  
  944.           No module parameters.
  945.           Autoprobes the card.
  946.           Boottime parameters available, see BootPrompt-HOWTO.
  947.   ______________________________________________________________________
  948.  
  949.   6.3.10.  EATA ISA/EISA (DPT PM2011/021/012/022/122/322) support
  950.   (eata.o).
  951.  
  952.   ______________________________________________________________________
  953.   Load command:
  954.           /sbin/modprobe eata.o
  955.  
  956.           No module parameters.
  957.           Boottime parameters available, see BootPrompt-HOWTO.
  958.   ______________________________________________________________________
  959.  
  960.   6.3.11.  EATA-DMA (DPT, NEC, AT&T, SNI, AST, Olivetti, Alphatronix)
  961.   (eata_dma.o).
  962.  
  963.   Includes DPT Smartcache, Smartcache III and SmartRAID.
  964.  
  965.   ______________________________________________________________________
  966.   Load command:
  967.           /sbin/modprobe eata_dma.o
  968.  
  969.           No module parameters.
  970.           Autoprobe works in all configurations.
  971.   ______________________________________________________________________
  972.  
  973.   6.3.12.  EATA-PIO (old DPT PM2001, PM2012A) support (eata_pio.o).
  974.  
  975.   ______________________________________________________________________
  976.   Load command:
  977.           /sbin/modprobe eata_pio.o
  978.  
  979.           No module parameters.
  980.   ______________________________________________________________________
  981.  
  982.   6.3.13.  Future Domain 16xx SCSI support (fdomain.o).
  983.  
  984.   ______________________________________________________________________
  985.   Load command:
  986.           /sbin/modprobe fdomain.o
  987.  
  988.           No module parameters.
  989.           Autoprobes the card, requires installed BIOS.
  990.   ______________________________________________________________________
  991.  
  992.   6.3.14.  Generic NCR5380/53c400 SCSI support (NCR5380.o).
  993.  
  994.   ______________________________________________________________________
  995.   Load command:
  996.           /sbin/modprobe NCR5380.o
  997.  
  998.                   ncr_irq=xx      the interrupt
  999.                   ncr_addr=xx     the port or base address (for port or
  1000.                                   memory mapped, resp.)
  1001.                   ncr_dma=xx      the DMA
  1002.                   ncr_5380=1      to set up for a NCR5380 board
  1003.                   ncr_53c400=1    to set up for a NCR53C400 board
  1004.  
  1005.           modprobe g_NCR5380 ncr_irq=5 ncr_addr=0x350 ncr_5380=1
  1006.            - for a port mapped NCR5380 board or
  1007.  
  1008.           modprobe g_NCR5380 ncr_irq=255 ncr_addr=0xc8000 ncr_53c400=1
  1009.            - for a memory mapped NCR53C400 board with interrupts disabled.
  1010.  
  1011.           (255 should be specified for no or DMA interrupt,
  1012.            254 to autoprobe for an IRQ line if overridden on the command line.)
  1013.  
  1014.           Boottime parameters available, see BootPrompt-HOWTO.
  1015.   ______________________________________________________________________
  1016.  
  1017.   6.3.15.  NCR53c406a SCSI support (NCR53c406a.o).
  1018.  
  1019.   ______________________________________________________________________
  1020.   Load command:
  1021.           /sbin/modprobe NCR53c406a.o
  1022.  
  1023.           No module parameters.
  1024.           Boottime parameters available, see BootPrompt-HOWTO.
  1025.   ______________________________________________________________________
  1026.  
  1027.   6.3.16.  NCR53c7,8xx SCSI support (53c7,8xx.o).
  1028.  
  1029.   ______________________________________________________________________
  1030.   Load command:
  1031.           /sbin/modprobe 53c7,8xx.o
  1032.  
  1033.           No module parameters.
  1034.           Autoprobes the card, requires installed BIOS.
  1035.           Boottime parameters available, see BootPrompt-HOWTO.
  1036.   ______________________________________________________________________
  1037.  
  1038.   6.3.17.  PCI-SCSI NCR538xx family support (ncr53c8xx.o).
  1039.  
  1040.   ______________________________________________________________________
  1041.   Load command:
  1042.           /sbin/modprobe ncr53c8xx.o
  1043.  
  1044.           No module parameters.
  1045.   ______________________________________________________________________
  1046.  
  1047.   6.3.18.  IOMEGA Parallel Port ZIP drive SCSI support (ppa.o).
  1048.  
  1049.   Check file /usr/src/linux/drivers/scsi/README.ppa for detailed
  1050.   information.
  1051.  
  1052.   ______________________________________________________________________
  1053.   Load command:
  1054.           /sbin/modprobe ppa.o ppa_base=0x378 ppa_nybble=1
  1055.  
  1056.           Here are the parameters and their functions:
  1057.  
  1058.           Variable        Default    Description
  1059.  
  1060.           ppa_base        0x378   The base address of PPA's parallel port.
  1061.           ppa_speed_high  1       Microsecond i/o delay used in data transfers
  1062.           ppa_speed_low   6       Microsecond delay used in other operations
  1063.           ppa_nybble      0       1 to force the driver to use 4-bit mode.
  1064.   ______________________________________________________________________
  1065.  
  1066.   6.3.19.  PAS16 SCSI support(pas16.o).
  1067.  
  1068.   ______________________________________________________________________
  1069.   Load command:
  1070.           /sbin/modprobe pas16.o
  1071.  
  1072.           No module parameters.
  1073.           Autoprobes the card, BIOS not required.
  1074.           Boottime parameters available, see BootPrompt-HOWTO.
  1075.   ______________________________________________________________________
  1076.  
  1077.   6.3.20.  Qlogic FAS SCSI support (qlogicfas.o).
  1078.  
  1079.   ______________________________________________________________________
  1080.   Load command:
  1081.           /sbin/modprobe qlogicfas.o
  1082.  
  1083.           No module parameters.
  1084.           Boottime parameters available, see BootPrompt-HOWTO.
  1085.   ______________________________________________________________________
  1086.  
  1087.   6.3.21.  Qlogic ISP SCSI support (qlogicisp.o).
  1088.  
  1089.   Requires firmware.
  1090.  
  1091.   ______________________________________________________________________
  1092.   Load command:
  1093.           /sbin/modprobe qlogicisp.o
  1094.  
  1095.           No module parameters.
  1096.           Boottime parameters available, see BootPrompt-HOWTO.
  1097.   ______________________________________________________________________
  1098.  
  1099.   6.3.22.  (seagate.o).  Seagate ST-02 and Future Domain TMC-8xx SCSI
  1100.   support
  1101.  
  1102.   ______________________________________________________________________
  1103.   Load command:
  1104.           /sbin/modprobe seagate.o
  1105.  
  1106.           No module parameters.
  1107.           Autoprobes for address only, irq fixed at 5.
  1108.           Requires installed BIOS.
  1109.           Boottime parameters available, see BootPrompt-HOWTO.
  1110.   ______________________________________________________________________
  1111.  
  1112.   6.3.23.  Trantor T128/T128F/T228 SCSI support (t128.o).
  1113.  
  1114.   ______________________________________________________________________
  1115.   Load command:
  1116.           /sbin/modprobe t128.o
  1117.  
  1118.           No module parameters.
  1119.           Autoprobes the card, requires installed BIOS.
  1120.           Boottime parameters available, see BootPrompt-HOWTO.
  1121.   ______________________________________________________________________
  1122.  
  1123.   6.3.24.  UltraStor 14F/34F support (u14-34f.o).
  1124.  
  1125.   ______________________________________________________________________
  1126.   Load command:
  1127.           /sbin/modprobe u14-34f.o
  1128.  
  1129.           No module parameters.
  1130.           Autoprobes the card, NOT 0x310 port, BIOS not required.
  1131.           Boottime parameters available, see BootPrompt-HOWTO.
  1132.   ______________________________________________________________________
  1133.  
  1134.   6.3.25.  UltraStor SCSI support (ultrastor.o).
  1135.  
  1136.   ______________________________________________________________________
  1137.   Load command:
  1138.           /sbin/modprobe ultrastor.o
  1139.  
  1140.           No module parameters.
  1141.           Boottime parameters available, see BootPrompt-HOWTO.
  1142.   ______________________________________________________________________
  1143.  
  1144.   7.  Network device support
  1145.  
  1146.   7.1.  Required and/or optional lowlevel modules.
  1147.  
  1148.   7.1.1.  Optional BSD compressor for PPP (bsd_comp.o).
  1149.  
  1150.   ______________________________________________________________________
  1151.   Load command:
  1152.           /sbin/modprobe bsd_comp.o
  1153.  
  1154.           No module parameters.
  1155.  
  1156.           Depends on ppp.o
  1157.   ______________________________________________________________________
  1158.  
  1159.   7.1.2.  SLHC compressor for PPP (slhc.o).
  1160.  
  1161.   Routines to compress and uncompress tcp packets (for transmission over
  1162.   low speed serial lines).
  1163.  
  1164.   Required by SLIP and PPP (also ISDN-PPP) protocols.
  1165.  
  1166.   ______________________________________________________________________
  1167.   Load command:
  1168.           /sbin/modprobe slhc.o
  1169.  
  1170.           No module parameters.
  1171.   ______________________________________________________________________
  1172.  
  1173.   7.1.3.  A general NS8390 ethernet driver core for linux.(8390.o).
  1174.  
  1175.   This is the chip-specific code for many 8390-based ethernet adaptors.
  1176.   This is not a complete driver, it must be combined with board-specific
  1177.   code such as ne.o, wd.o, 3c503.o, etc.
  1178.  
  1179.   ______________________________________________________________________
  1180.   Load command:
  1181.           /sbin/modprobe 8390.o
  1182.  
  1183.           No module parameters.
  1184.   ______________________________________________________________________
  1185.  
  1186.   7.2.  Dummy net driver support (dummy.o).
  1187.  
  1188.   This is essentially a bit-bucket device (i.e. traffic you send to this
  1189.   device is consigned into oblivion) with a configurable IP address. It
  1190.   is most commonly used in order to make your currently inactive SLIP
  1191.   address seem like a real address for local programs.
  1192.  
  1193.   ______________________________________________________________________
  1194.   Load command:
  1195.           /sbin/modprobe dummy.o
  1196.  
  1197.           No module parameters.
  1198.   ______________________________________________________________________
  1199.  
  1200.   7.3.  EQL (serial line load balancing) support (eql.o).
  1201.  
  1202.   If you have two serial connections to some other computer (this
  1203.   usually requires two modems and two telephone lines) and you use SLIP
  1204.   (= the protocol for sending internet traffic over telephone lines) or
  1205.   PPP (= a better SLIP) on them, you can make them behave like one
  1206.   double speed connection using this driver.
  1207.  
  1208.   ______________________________________________________________________
  1209.   Load command:
  1210.           /sbin/modprobe eql.o
  1211.  
  1212.           No module parameters.
  1213.   ______________________________________________________________________
  1214.  
  1215.   7.4.  Frame relay DLCI support (dlci.o).
  1216.  
  1217.   This is support for the frame relay protocol; frame relay is a fast
  1218.   low-cost way to connect to a remote internet access provider or to
  1219.   form a private wide area network. The one physical line from your box
  1220.   to the local "switch" (i.e. the entry point to the frame relay
  1221.   network) can carry several logical point-to-point connections to other
  1222.   computers connected to the frame relay network. For a general
  1223.   explanation of the protocol, check out http://frame-
  1224.   relay.indiana.edu/4000/4000index.html on the WWW.  To use frame relay,
  1225.   you need supporting hardware (FRAD) and certain programs from the net-
  1226.   tools package as explained in Documentation/networking/framerelay.txt.
  1227.  
  1228.   ______________________________________________________________________
  1229.   Load command:
  1230.           /sbin/modprobe dlci.o
  1231.  
  1232.           No module parameters.
  1233.   ______________________________________________________________________
  1234.  
  1235.   7.5.  Sangoma S502A FRAD support (sdla.o).
  1236.  
  1237.   This is a driver for the Sangoma S502A, S502E and S508 Frame Relay
  1238.   Access Devices. These are multi-protocol cards, but only frame relay
  1239.   is supported by the driver at this time. Please read
  1240.   Documentation/networking/framerelay.txt.
  1241.  
  1242.   ______________________________________________________________________
  1243.   Load command:
  1244.           /sbin/modprobe sdla.o
  1245.  
  1246.           No module parameters.
  1247.  
  1248.           Depends on dlci.o
  1249.   ______________________________________________________________________
  1250.  
  1251.   7.6.  PLIP (parallel port) support (plip.o).
  1252.  
  1253.   PLIP (Parallel Line Internet Protocol) is used to create a mini
  1254.   network consisting of two (or, rarely, more) local machines. The
  1255.   parallel ports (the connectors at the computers with 25 holes) are
  1256.   connected using "null printer" or "Turbo Laplink" cables which can
  1257.   transmit 4 bits at a time or using special PLIP cables, to be used on
  1258.   bidirectional parallel ports only, which can transmit 8 bits at a time
  1259.   (you can find the wiring of these cables in drivers/net/README?.plip).
  1260.   The cables can be up to 15m long. This works also if one of the
  1261.   machines runs DOS/Windows and has some PLIP software installed, e.g.
  1262.   the Crynwr PLIP packet driver
  1263.   http://sunsite.cnam.fr/packages/Telnet/PC/msdos/misc/pktdrvr.txt and
  1264.   winsock or NCSA's telnet.
  1265.  
  1266.   ______________________________________________________________________
  1267.   Load command:
  1268.           /sbin/modprobe plip.o io=0x378 irq=7
  1269.  
  1270.           io = 0
  1271.           irq = 0         (by default, uses IRQ 5 for port at 0x3bc,
  1272.                                             IRQ 7 for port at 0x378,
  1273.                                         and IRQ 2 for port at 0x278)
  1274.           (Probes ports: 0x278, 0x378, 0x3bc)
  1275.   ______________________________________________________________________
  1276.  
  1277.   7.7.  PPP (point-to-point) support (ppp.o).
  1278.  
  1279.   To use PPP you need an additional program called pppd as described in
  1280.   Documentation/networking/ppp.txt and in the PPP-HOWTO, available from
  1281.   sunsite.unc.edu:/pub/Linux/docs/HOWTO.
  1282.  
  1283.   ______________________________________________________________________
  1284.   Load command:
  1285.           /sbin/modprobe ppp.o
  1286.  
  1287.           No module parameters.
  1288.  
  1289.           Depends on slhc.o
  1290.           Also depends on serial.o, this is not detected automatically,
  1291.           so serial.o must be loaded manually.
  1292.   ______________________________________________________________________
  1293.  
  1294.   7.8.  SLIP (serial line) support (slip.o).
  1295.  
  1296.   SLIP (Serial Line Internet Protocol) is the protocol used to send
  1297.   Internet traffic over telephone lines or serial cables (also known as
  1298.   nullmodems).
  1299.  
  1300.   ______________________________________________________________________
  1301.   Load command:
  1302.           /sbin/modprobe slip.o
  1303.  
  1304.           slip_maxdev = 256 (default value from SL_NRUNIT on slip.h)
  1305.  
  1306.           Depends on slhc.o
  1307.           Also depends on serial.o, this is not detected automatically,
  1308.           so serial.o must be loaded manually.
  1309.   ______________________________________________________________________
  1310.  
  1311.   7.9.  Amateur Radio and wireless network interfaces.
  1312.  
  1313.   7.9.1.  (baycom.o).  BAYCOM ser12 and par96 kiss emulation driver for
  1314.   AX.25
  1315.  
  1316.   This is a driver for Baycom style simple amateur radio modems that
  1317.   connect to either a serial interface or a parallel interface. The
  1318.   driver supports the ser12 and par96 designs. To configure the driver,
  1319.   use the setbaycom utility available from
  1320.   http://www.ife.ee.ethz.ch/~sailer/ham/ham.html#lnxbay. For
  1321.   informations on the modems, see http://www.baycom.de and
  1322.   drivers/char/README.baycom.
  1323.  
  1324.   ______________________________________________________________________
  1325.   Load command:
  1326.           /sbin/modprobe baycom.o modem=1 iobase=0x3f8 irq=4 options=1
  1327.  
  1328.           major   major number the driver should use; default 60
  1329.           modem   modem type of the first channel (minor 0); 1=ser12,
  1330.                   2=par96/par97, any other value invalid
  1331.           iobase  base address of the port; common values are for ser12 0x3f8,
  1332.                   0x2f8, 0x3e8, 0x2e8 and for par96/par97 0x378, 0x278, 0x3bc
  1333.           irq     interrupt line of the port; common values are for ser12 3,4
  1334.                   and for par96/par97 7
  1335.           options 0=use hardware DCD, 1=use software DCD
  1336.   ______________________________________________________________________
  1337.  
  1338.   7.9.2.  STRIP (Metricom starmode radio IP) strip.o).
  1339.  
  1340.   STRIP is a radio protocol developed for the MosquitoNet project
  1341.   (http://mosquitonet.stanford.edu/) to send Internet traffic using
  1342.   Metricom radios.  Metricom radios are small, battery powered,
  1343.   100kbit/sec packet radio transceivers, about the size and weight of a
  1344.   cellular telephone.  (You may also have heard them called "Metricom
  1345.   modems" but we avoid the term "modem" because it misleads many people
  1346.   into thinking that you can plug a Metricom modem into a phone line and
  1347.   use it as a modem.)  You can use STRIP on any Linux machine with a
  1348.   serial port, although it is obviously most useful for people with
  1349.   laptop computers.
  1350.  
  1351.   ______________________________________________________________________
  1352.   Load command:
  1353.           /sbin/modprobe strip.o
  1354.  
  1355.           No module parameters.
  1356.   ______________________________________________________________________
  1357.  
  1358.   7.9.3.  WaveLAN support (wavelan.o).
  1359.  
  1360.   These are cards for wireless ethernet-like networking. Supported are
  1361.   AT&T GIS and NCR WaveLAN cards.
  1362.  
  1363.   ______________________________________________________________________
  1364.   Load command:
  1365.           /sbin/modprobe wavelan.o
  1366.  
  1367.           io = 0x390      (Settable, but change not recommended)
  1368.           irq = 0         (Not honoured, if changed..)
  1369.   ______________________________________________________________________
  1370.  
  1371.   7.9.4.  WIC Radio IP bridge (wic.o).
  1372.  
  1373.   Support for the WIC parallel port radio bridge.
  1374.  
  1375.   ______________________________________________________________________
  1376.   Load command:
  1377.           /sbin/modprobe wic.o
  1378.  
  1379.           It appears that devices 'wic0', 'wic1' and 'wic2' have direct
  1380.           relations to corresponding 'lpx' ports.
  1381.   ______________________________________________________________________
  1382.  
  1383.   7.9.5.  Z8530 SCC kiss emulation driver for AX.25 (scc.o).
  1384.  
  1385.   These cards are used to connect your Linux box to an amateur radio in
  1386.   order to communicate with other computers.  If you want to use this,
  1387.   read Documentation/networking/z8530drv.txt and the HAM-HOWTO.
  1388.  
  1389.   ______________________________________________________________________
  1390.   Load command:
  1391.           /sbin/modprobe scc.o
  1392.  
  1393.           No module parameters.
  1394.   ______________________________________________________________________
  1395.  
  1396.   7.10.  3COM Ethernet cards.
  1397.  
  1398.   7.10.1.  3c501 support (3c501.o).
  1399.  
  1400.   ______________________________________________________________________
  1401.   Load command:
  1402.           /sbin/modprobe 3c501.o
  1403.  
  1404.           io  = 0x280     IO base address
  1405.           irq = 5         IRQ
  1406.           (Probes ports:  0x280, 0x300)
  1407.   ______________________________________________________________________
  1408.  
  1409.   7.10.2.  3c503 support (3c503.o).
  1410.  
  1411.   ______________________________________________________________________
  1412.   Load command:
  1413.           /sbin/modprobe 3c503.o
  1414.  
  1415.           io = 0          (It will complain if you don't supply an "io=0xNNN")
  1416.           irq = 0         (IRQ software selected by driver using autoIRQ)
  1417.           xcvr = 0        (Use xcvr=1 to select external transceiver.)
  1418.           (Probes ports: 0x300, 0x310, 0x330, 0x350, 0x250, 0x280, 0x2A0,0x2E0)
  1419.  
  1420.           Depends on 8390.o
  1421.   ______________________________________________________________________
  1422.  
  1423.   7.10.3.  3c505 support (3c505.o).
  1424.  
  1425.   ______________________________________________________________________
  1426.   Load command:
  1427.           /sbin/modprobe 3c505.o
  1428.  
  1429.           io = 0x300
  1430.           irq = 0
  1431.           (Probes ports: 0x300, 0x280, 0x310)
  1432.   ______________________________________________________________________
  1433.  
  1434.   7.10.4.  3c507 support (3c507.o).
  1435.  
  1436.   ______________________________________________________________________
  1437.   Load command:
  1438.           /sbin/modprobe 3c507.o
  1439.  
  1440.           io = 0x300
  1441.           irq = 0
  1442.           (Probes ports: 0x300, 0x320, 0x340, 0x280)
  1443.   ______________________________________________________________________
  1444.  
  1445.   7.10.5.  3c509/3c579 support (3c509.o).
  1446.  
  1447.   ______________________________________________________________________
  1448.   Load command:
  1449.           /sbin/modprobe 3c509.o
  1450.  
  1451.           io = 0
  1452.           irq = 0
  1453.           ( Module load-time probing Works reliably only on EISA, ISA ID-PROBE
  1454.             IS NOT RELIABLE!  Compile this driver statically into kernel for
  1455.             now, if you need it auto-probing on an ISA-bus machine. )
  1456.   ______________________________________________________________________
  1457.  
  1458.   7.10.6.  3c590 series "Vortex" support (3c59x.o).
  1459.  
  1460.   Provides support for folloving cards :
  1461.  
  1462.   ╖  3c590 Vortex 10Mbps.
  1463.  
  1464.   ╖  3c595 Vortex 100baseTX.
  1465.  
  1466.   ╖  3c595 Vortex 100baseT4.
  1467.  
  1468.   ╖  3c595 Vortex 100base-MII.
  1469.  
  1470.   ╖  EISA Vortex 3c597.
  1471.  
  1472.      ___________________________________________________________________
  1473.      Load command:
  1474.              /sbin/modprobe 3c59x.o debug=1 options=0,,12
  1475.  
  1476.              This sets the debug message level to minimal messages,
  1477.              sets the first card to the 10baseT transceiver, the second
  1478.              to the EEPROM-set transceiver, and the third card to operate
  1479.              in full-duplex mode using its 100baseTx transceiver.
  1480.              (Note: card ordering is set by the PCI BIOS.)
  1481.  
  1482.              Possible media type settings
  1483.                      0       10baseT
  1484.                      1       10Mbs AUI
  1485.                      2       undefined
  1486.                      3       10base2 (BNC)
  1487.                      4       100base-TX
  1488.                      5       100base-FX
  1489.                      6       MII (not yet available)
  1490.                      7       <Use default setting>
  1491.  
  1492.                      8       Full-duplex bit
  1493.                      8       10baseT full-duplex
  1494.                      12      100baseTx full-duplex
  1495.                      16      Bus-master enable bit (experimental use only!)
  1496.  
  1497.              Details of the device driver implementation are at the top of
  1498.              the source file.
  1499.      ___________________________________________________________________
  1500.  
  1501.   7.11.  Western Digital/SMC Ethernet cards.
  1502.  
  1503.   7.11.1.  WD80*3 support (wd.o).
  1504.  
  1505.   ______________________________________________________________________
  1506.   Load command:
  1507.           /sbin/modprobe wd.o
  1508.  
  1509.           io = 0          (It will complain if you don't supply an "io=0xNNN")
  1510.           irq = 0         (IRQ val. read from EEPROM, ancient cards use autoIRQ)
  1511.           mem = 0         (Force shared-memory on address 0xC8000, or whatever..)
  1512.           mem_end = 0     (Force non-std. mem. size via supplying mem_end val.)
  1513.                           (eg. for 32k WD8003EBT, use mem=0xd0000 mem_end=0xd8000
  1514.           (Probes ports:  0x300, 0x280, 0x380, 0x240)
  1515.  
  1516.           Depends on 8390.o
  1517.   ______________________________________________________________________
  1518.  
  1519.   7.11.2.  SMC Ultra/EtherEZ support (smc-ultra.o).
  1520.  
  1521.   ______________________________________________________________________
  1522.   Load command:
  1523.           /sbin/modprobe smc-ultra.o
  1524.  
  1525.           io = 0          (It will complain if you don't supply an "io=0xNNN")
  1526.           irq = 0         (IRQ val. read from EEPROM)
  1527.           (Probes ports:  0x200, 0x220, 0x240, 0x280, 0x300, 0x340, 0x380)
  1528.  
  1529.           Depends on 8390.o
  1530.   ______________________________________________________________________
  1531.  
  1532.   7.11.3.  SMC 9194 support (smc9194.o).
  1533.  
  1534.   This is a driver for SMC's 9000 series of Ethernet cards.
  1535.  
  1536.   ______________________________________________________________________
  1537.   Load command:
  1538.           /sbin/modprobe smc9194.o
  1539.  
  1540.           io = 0          for the base address
  1541.           irq = 0         for the IRQ
  1542.           ifport = 0      for autodetect, 1 for TP, 2 for AUI ( or 10base2 )
  1543.  
  1544.           Probes ports:   0x200, 0x220, 0x240, 0x260, 0x280, 0x2A0, 0x2C0, 0x2E0,
  1545.                           0x300, 0x320, 0x340, 0x360, 0x380, 0x3A0, 0x3C0, 0x3E0
  1546.  
  1547.           Debug level setable in smc9194.c driver code.
  1548.   ______________________________________________________________________
  1549.  
  1550.   7.12.  Other Ethernet cards.
  1551.  
  1552.   7.12.1.  AT1700 support (at1700.o).
  1553.  
  1554.   ______________________________________________________________________
  1555.   Load command:
  1556.           /sbin/modprobe at1700.o
  1557.  
  1558.           io = 0x260
  1559.           irq = 0
  1560.  
  1561.           (Probes ports: 0x260, 0x280, 0x2A0, 0x240, 0x340, 0x320, 0x380, 0x300)
  1562.   ______________________________________________________________________
  1563.  
  1564.   7.12.2.  Cabletron E21xx support (e2100.o).
  1565.  
  1566.   ______________________________________________________________________
  1567.   Load command:
  1568.           /sbin/modprobe e2100.o
  1569.  
  1570.           io = 0          (It will complain if you don't supply an "io=0xNNN")
  1571.           irq = 0         (IRQ software selected by driver)
  1572.           mem = 0         (Override default shared memory start of 0xd0000)
  1573.           xcvr = 0        (Use xcvr=1 to select external transceiver.)
  1574.           (Probes ports: 0x300, 0x280, 0x380, 0x220)
  1575.  
  1576.           Depends on 8390.o
  1577.   ______________________________________________________________________
  1578.  
  1579.   7.12.3.  DEPCA, DE10x, DE200, DE201, DE202, DE422 support (depca.o).
  1580.  
  1581.   ______________________________________________________________________
  1582.   Load command:
  1583.           /sbin/modprobe depca.o
  1584.  
  1585.           io = 0x200
  1586.           irq = 7
  1587.           (Probes ports:  ISA:  0x300, 0x200;
  1588.                           EISA: 0x0c00            )
  1589.   ______________________________________________________________________
  1590.  
  1591.   7.12.4.  EtherWORKS 3 (DE203, DE204, DE205) support (ewrk3.o).
  1592.  
  1593.   ______________________________________________________________________
  1594.   Load command:
  1595.           /sbin/modprobe ewrk3.o
  1596.  
  1597.           io = 0x300
  1598.           irq = 5
  1599.           (With module no autoprobing!
  1600.            On EISA-bus does EISA probing.
  1601.            Static linkage probes ports on ISA bus:
  1602.                   0x100, 0x120, 0x140, 0x160, 0x180, 0x1A0, 0x1C0,
  1603.                   0x200, 0x220, 0x240, 0x260, 0x280, 0x2A0, 0x2C0, 0x2E0,
  1604.                   0x300,        0x340, 0x360, 0x380, 0x3A0, 0x3C0)
  1605.   ______________________________________________________________________
  1606.  
  1607.   7.12.5.  EtherExpress 16 support (eexpress.o).
  1608.  
  1609.   ______________________________________________________________________
  1610.   Load command:
  1611.           /sbin/modprobe eexpress.o
  1612.  
  1613.           io = 0x300
  1614.           irq = 0         (IRQ value read from EEPROM)
  1615.           (Probes ports: 0x300, 0x270, 0x320, 0x340)
  1616.   ______________________________________________________________________
  1617.  
  1618.   7.12.6.  EtherExpressPro support (eepro.o).
  1619.  
  1620.   ______________________________________________________________________
  1621.   Load command:
  1622.           /sbin/modprobe eepro.o
  1623.  
  1624.           io = 0x200
  1625.           irq = 0
  1626.           (Probes ports: 0x200, 0x240, 0x280, 0x2C0, 0x300, 0x320, 0x340, 0x360)
  1627.   ______________________________________________________________________
  1628.  
  1629.   7.12.7.  Fujitsu FMV-181/182/183/184 support (fmv18x.o).
  1630.  
  1631.   ______________________________________________________________________
  1632.   Load command:
  1633.           /sbin/modprobe fmv18x.o
  1634.  
  1635.           io = 0x220      for the base address
  1636.           irq = 0         for the IRQ
  1637.  
  1638.           Probes ports: 0x220, 0x240, 0x260, 0x280, 0x2a0, 0x2c0, 0x300, 0x340
  1639.   ______________________________________________________________________
  1640.  
  1641.   7.12.8.  HP PCLAN+ (27247B and 27252A) support (hp-plus.o).
  1642.  
  1643.   ______________________________________________________________________
  1644.   Load command:
  1645.           /sbin/modprobe hp-plus.o
  1646.  
  1647.           io = 0          (It will complain if you don't supply an "io=0xNNN")
  1648.           irq = 0         (IRQ read from configuration register)
  1649.           (Probes ports: 0x200, 0x240, 0x280, 0x2C0, 0x300, 0x320, 0x340)
  1650.  
  1651.           Depends on 8390.o
  1652.   ______________________________________________________________________
  1653.  
  1654.   7.12.9.  HP PCLAN (27245 and other 27xxx series) support (hp.o).
  1655.  
  1656.   ______________________________________________________________________
  1657.   Load command:
  1658.           /sbin/modprobe hp.o
  1659.  
  1660.           io = 0          (It will complain if you don't supply an "io=0xNNN")
  1661.           irq = 0         (IRQ software selected by driver using autoIRQ)
  1662.           (Probes ports: 0x300, 0x320, 0x340, 0x280, 0x2C0, 0x200, 0x240)
  1663.  
  1664.           Depends on 8390.o
  1665.   ______________________________________________________________________
  1666.  
  1667.   7.12.10.  HP 10/100VG PCLAN (ISA, EISA, PCI) support (hp100.o).
  1668.  
  1669.   ______________________________________________________________________
  1670.   Load command:
  1671.           /sbin/modprobe hp100.o
  1672.  
  1673.           hp100_port = 0 (IO-base address)
  1674.  
  1675.           (Does EISA-probing, if on EISA-slot;
  1676.           On ISA-bus probes all ports from 0x100 thru to 0x3E0
  1677.           in increments of 0x020)
  1678.   ______________________________________________________________________
  1679.  
  1680.   7.12.11.  ICL EtherTeam 16i/32 support (eth16i.o).
  1681.  
  1682.   ______________________________________________________________________
  1683.   Load command:
  1684.           /sbin/modprobe eth16i.o
  1685.  
  1686.           io = 0x2a0      (It will complain if you don't supply an "io=0xNNN")
  1687.           irq = 0         (IRQ software selected by driver using autoIRQ)
  1688.  
  1689.           Probed ports on eth16i card :
  1690.           0x260, 0x280, 0x2A0, 0x240, 0x340, 0x320, 0x380, 0x300
  1691.  
  1692.           Probed ports in eth32i card :
  1693.           0x1000, 0x2000, 0x3000, 0x4000, 0x5000, 0x6000, 0x7000, 0x8000,
  1694.           0x9000, 0xA000, 0xB000, 0xC000, 0xD000, 0xE000, 0xF000
  1695.   ______________________________________________________________________
  1696.  
  1697.   7.12.12.  NE2000/NE1000 support (ne.o).
  1698.  
  1699.   ______________________________________________________________________
  1700.   Load command:
  1701.           /sbin/modprobe ne.o
  1702.  
  1703.           io = 0          (Explicitly *requires* an "io=0xNNN" value)
  1704.           irq = 0         (Tries to determine configured IRQ via autoIRQ)
  1705.           (Probes ports: 0x300, 0x280, 0x320, 0x340, 0x360)
  1706.  
  1707.           Depends on 8390.o
  1708.   ______________________________________________________________________
  1709.  
  1710.   7.12.13.  NI5210 support (ni52.o).
  1711.  
  1712.   ______________________________________________________________________
  1713.   Load command:
  1714.           /sbin/modprobe ni52.o
  1715.  
  1716.           io=0x360
  1717.           irq=9
  1718.           memstart=0xd0000
  1719.           memend=0xd4000
  1720.  
  1721.           Don't use autoprobing, io=0
  1722.   ______________________________________________________________________
  1723.  
  1724.   7.13.  EISA, VLB, PCI and on board controllers
  1725.  
  1726.   7.13.1.  Ansel Communications EISA 3200 support (ac3200.o).
  1727.  
  1728.   ______________________________________________________________________
  1729.   Load command:
  1730.           /sbin/modprobe ac3200.o
  1731.  
  1732.           As this is an EISA board, Autoprobe should work.
  1733.  
  1734.           Depends on 8390.o
  1735.   ______________________________________________________________________
  1736.  
  1737.   7.13.2.  Apricot Xen-II on board ethernet (apricot.o).
  1738.  
  1739.   ______________________________________________________________________
  1740.   Load command:
  1741.           /sbin/modprobe apricot.o
  1742.  
  1743.           io = 0x300  (Can't be altered!)
  1744.           irq = 10
  1745.   ______________________________________________________________________
  1746.  
  1747.   7.13.3.  DE425, DE434, DE435, DE450, DE500 support (de4x5.o).
  1748.  
  1749.   ______________________________________________________________________
  1750.   Load command:
  1751.           /sbin/modprobe de4x5.o
  1752.  
  1753.           io = 0x000b
  1754.           irq = 10
  1755.           is_not_dec = 0
  1756.           For non-DEC card using DEC 21040/21041/21140 chip, set this to 1
  1757.           (EISA, and PCI probing)
  1758.   ______________________________________________________________________
  1759.  
  1760.   7.13.4.  DECchip Tulip (dc21x4x) PCI support (tulip.o).
  1761.  
  1762.   ______________________________________________________________________
  1763.   Load command:
  1764.           /sbin/modprobe tulip.o
  1765.  
  1766.           Read Documentation/networking/tulip.txt
  1767.   ______________________________________________________________________
  1768.  
  1769.   7.13.5.  Digi Intl. RightSwitch SE-X support (dgrs.o).
  1770.  
  1771.   This is a Linux driver for the Digi International RightSwitch SE-X
  1772.   EISA and PCI boards.  These are 4 (EISA) or 6 (PCI) port ethernet
  1773.   switches and a NIC combined into a single board.
  1774.  
  1775.   There is a tool for setting up input and output packet filters on each
  1776.   port, called "dgrsfilt".
  1777.  
  1778.   The management tool lets you watch the performance graphically, as
  1779.   well as set the SNMP agent IP and IPX addresses, IEEE Spanning Tree,
  1780.   and Aging time.  These can also be set from the command line when the
  1781.   driver is loaded.
  1782.  
  1783.   There is also a companion management tool, called "xrightswitch".
  1784.  
  1785.   ______________________________________________________________________
  1786.   Load command:
  1787.           /sbin/modprobe dgrs.o
  1788.  
  1789.           debug=NNN               Debug printing level
  1790.           dma=0/1                 Disable/Enable DMA on PCI card
  1791.           spantree=0/1            Disable/Enable IEEE spanning tree
  1792.           hashexpire=NNN          Change address aging time (default 300 seconds)
  1793.           ipaddr=A,B,C,D          Set SNMP agent IP address i.e. 199,86,8,221
  1794.           ipxnet=NNN              Set SNMP agent IPX network number
  1795.   ______________________________________________________________________
  1796.  
  1797.   7.14.  Pocket and portable adaptors
  1798.  
  1799.   7.14.1.  D-Link DE600 pocket adaptor support (de600.o).
  1800.  
  1801.   ______________________________________________________________________
  1802.   Load command:
  1803.           /sbin/modprobe de600.o
  1804.  
  1805.           de600_debug = 0
  1806.           (On port 0x378, irq 7 -- lpt1;  compile time configurable)
  1807.   ______________________________________________________________________
  1808.  
  1809.   7.14.2.  D-Link DE620 pocket adaptor support (de620.o).
  1810.  
  1811.   ______________________________________________________________________
  1812.   Load command:
  1813.           /sbin/modprobe de620.o
  1814.  
  1815.           bnc = 0, utp = 0        <-- Force media by setting either.
  1816.           io = 0x378              (also compile-time configurable)
  1817.           irq = 7
  1818.   ______________________________________________________________________
  1819.  
  1820.   7.15.  Token Ring driver support
  1821.  
  1822.   7.15.1.  Tropic chipset based adaptor support (ibmtr.o).
  1823.  
  1824.   ______________________________________________________________________
  1825.   Load command:
  1826.           /sbin/modprobe ibmtr.o io=0xa20 irq=0
  1827.  
  1828.           io = 0xa20      You should not use auto-probing with insmod
  1829.           irq = 0
  1830.   ______________________________________________________________________
  1831.  
  1832.   7.16.  ARCnet support (arcnet.o).
  1833.  
  1834.   Read The Fine Information at
  1835.   /usr/src/linux/Documentation/networking/arcnet.txt.  Also Arcnet
  1836.   hardware information arcnet-hardware.txt is found in same place.
  1837.  
  1838.   ______________________________________________________________________
  1839.   Load command:
  1840.           /sbin/modprobe arcnet.o io=0x300 irq=2 shmem=0xd0000
  1841.  
  1842.           You can name the device using something like "device=arc1"
  1843.           (for a second card) or "device=eth0" (for weird reasons) if you like.
  1844.  
  1845.           (When probing, looks at the following possible addresses:
  1846.            Suggested ones:
  1847.                   0x300, 0x2E0, 0x2F0, 0x2D0
  1848.            Other ones:
  1849.                   0x200, 0x210, 0x220, 0x230, 0x240, 0x250, 0x260, 0x270,
  1850.                   0x280, 0x290, 0x2A0, 0x2B0, 0x2C0,
  1851.                          0x310, 0x320, 0x330, 0x340, 0x350, 0x360, 0x370,
  1852.                   0x380, 0x390, 0x3A0,                      0x3E0, 0x3F0  )
  1853.   ______________________________________________________________________
  1854.  
  1855.   8.  ISDN subsystem
  1856.  
  1857.   Setting up ISDN-networking is a complicated task.  Read documentation
  1858.   found in /usr/src/linux/Documentation/isdn.
  1859.  
  1860.   8.1.  ISDN support (isdn.o).
  1861.  
  1862.   ______________________________________________________________________
  1863.   Load command:
  1864.           /sbin/modprobe isdn.o
  1865.  
  1866.           No module parameters.
  1867.  
  1868.           Depends on slhc.o
  1869.   ______________________________________________________________________
  1870.  
  1871.   8.2.  ICN 2B and 4B support (icn.o).
  1872.  
  1873.   ______________________________________________________________________
  1874.   Load command:
  1875.           /sbin/modprobe icn.o [parameters]
  1876.  
  1877.           portbase=p membase=m icn_id=idstring [icn_id2=idstring2]
  1878.  
  1879.           p = portbase            (default: 0x320)
  1880.           m = shared memory       (default: 0xd0000)
  1881.  
  1882.           When using the ICN double card, you MUST define TWO idstrings.
  1883.           idstring must start with a character!
  1884.  
  1885.           Depends on isdn.o
  1886.   ______________________________________________________________________
  1887.  
  1888.   8.3.  PCBIT-D support (pcbit.o).
  1889.  
  1890.   ______________________________________________________________________
  1891.   Load command:
  1892.           /sbin/modprobe pcbit.o
  1893.  
  1894.           mem = 0         default = 0xd0000
  1895.           irq = 0         default = 5
  1896.  
  1897.           Depends on isdn.o
  1898.   ______________________________________________________________________
  1899.  
  1900.   8.4.  Teles/NICCY1016PC/Creatix support (teles.o).
  1901.  
  1902.   ______________________________________________________________________
  1903.   Load command:
  1904.           /sbin/modprobe teles.o io=.....
  1905.  
  1906.           io=m0,i0,p0,d0[,m1,i1,p1,d1 ... ,mn,in,pn,dn] teles_id=idstring
  1907.  
  1908.           m0 = shared memory of 1st card.         (default: 0xd0000
  1909.           i0 = irq of 1st card.                   (default: 15)
  1910.           p0 = portbase of 1st card.              (default: 0xd80)
  1911.           d0 = D-channel protocol of 1st card.    1=1TR6, 2=EDSS1 (default: 2)
  1912.  
  1913.           p1,i1,m1,d1 = Parameters of second card (defaults: none)
  1914.           pn,in,mn,d1 = Parameters of n'th card (up to 16 cards are supported)
  1915.  
  1916.           idstring = Driver-Id for accessing with utilities and identification
  1917.           when using a Line-monitor. (default: none) idstring must start with a character!
  1918.  
  1919.           The type of the card is determined by the port, irq and shared memory:
  1920.  
  1921.           port == 0, shared memory != 0   -> Teles S0-8
  1922.           port != 0, shared memory != 0   -> Teles S0-16.0
  1923.           port != 0, shared memory == 0   -> Teles S0-16.3
  1924.  
  1925.           Depends on isdn.o
  1926.   ______________________________________________________________________
  1927.  
  1928.   9.  CD-ROM drivers (not for SCSI or IDE/ATAPI drives)
  1929.  
  1930.   9.1.  Aztech/Orchid/Okano/Wearnes/TXC/CyDROM support (aztcd.o).
  1931.  
  1932.   ______________________________________________________________________
  1933.   Load command:
  1934.           /sbin/modprobe aztcd.o aztcd=[baseaddress]
  1935.  
  1936.           Read Documentation/cdrom/aztcd for full information.
  1937.   ______________________________________________________________________
  1938.  
  1939.   9.2.  Goldstar R420 CDROM support (gscd.o).
  1940.  
  1941.   For all kind of other information about the GoldStar R420 CDROM and
  1942.   this Linux device driver there is a WWW-URL Page installed:
  1943.   http://linux.rz.fh-hannover.de/~raupach.
  1944.  
  1945.   ______________________________________________________________________
  1946.   Load command:
  1947.           /sbin/modprobe gscd.o gscd=[address]
  1948.  
  1949.           The default base address is 0x340.
  1950.           This will work for most applications.
  1951.           Address selection is accomplished by jumpers PN801-1 to PN801-4
  1952.           on the GoldStar Interface Card.
  1953.           Appropriate settings are: 0x300, 0x310, 0x320, 0x330, 0x340, 0x350,
  1954.           0x360, 0x370, 0x380, 0x390, 0x3A0, 0x3B0, 0x3C0, 0x3D0, 0x3E0, 0x3F0
  1955.   ______________________________________________________________________
  1956.  
  1957.   9.3.  Matsushita/Panasonic/Creative, Longshine, TEAC support
  1958.   (sbpcd.o).
  1959.  
  1960.   ______________________________________________________________________
  1961.   Load command:
  1962.           /sbin/modprobe sbpcd.o sbpcd=[address], x
  1963.  
  1964.           address = ioaddress
  1965.           x       = SBPRO setting, read Documentation/cdrom/sbpcd
  1966.   ______________________________________________________________________
  1967.  
  1968.   9.4.  Mitsumi (standard) no XA/Multisession support (mcd.o).
  1969.  
  1970.   ______________________________________________________________________
  1971.   Load command:
  1972.           /sbin/modprobe mcd.o mcd=0x300,11,0x304,5
  1973.  
  1974.           Where parameters are io and irq in pairs.
  1975.   ______________________________________________________________________
  1976.  
  1977.   9.5.  Mitsumi XA/MultiSession support (mcdx.o).
  1978.  
  1979.   ______________________________________________________________________
  1980.   Load command:
  1981.           /sbin/modprobe mcdx.o mcdx=0x300,11,0x304,5
  1982.  
  1983.           Where parameters are io and irq in pairs.
  1984.   ______________________________________________________________________
  1985.  
  1986.   9.6.  Optics Storage DOLPHIN 8000AT CDROM support (optcd.o).
  1987.  
  1988.   This is the driver for the so-called 'DOLPHIN' drive, with the 34-pin
  1989.   Sony-compatible interface. For the IDE-compatible Optics Storage 8001
  1990.   drive, you will want the ATAPI CDROM driver. The driver also seems to
  1991.   work with the Lasermate CR328A.
  1992.  
  1993.   ______________________________________________________________________
  1994.   Load command:
  1995.           /sbin/modprobe optcd.o optcd=0x340
  1996.  
  1997.           Where parameter is the baseaddress of your card.
  1998.   ______________________________________________________________________
  1999.  
  2000.   9.7.  Philips/LMS CM206 CDROM support (cm206.o).
  2001.  
  2002.   This is the driver for the Philips/LMS cdrom drive cm206 in
  2003.   combination with the cm260 host adapter card.
  2004.  
  2005.   ______________________________________________________________________
  2006.   Load command:
  2007.           /sbin/modprobe cm206.o cm206=0x300,11
  2008.  
  2009.           Where parameters are the baseport and irq of your card.
  2010.           The order of baseport and irq line doesn't matter.
  2011.           You may specify only one,
  2012.           the other will have the value of the compiled-in default.
  2013.   ______________________________________________________________________
  2014.  
  2015.   9.8.  Sanyo CDR-H94A CDROM support (sjcd.o).
  2016.  
  2017.   ______________________________________________________________________
  2018.   Load command:
  2019.           /sbin/modprobe sjcd.o sjcd_base=0x340
  2020.  
  2021.           Where parameter is the baseaddress of your card.
  2022.           Default address = 0x340,  no irq,  no dma.
  2023.   ______________________________________________________________________
  2024.  
  2025.   9.9.  ISP16/MAD16/Mozart soft configurable cdrom interface support
  2026.   (isp16.o).
  2027.  
  2028.   ______________________________________________________________________
  2029.   Load command:
  2030.           /sbin/modprobe isp16.o [parameters]
  2031.  
  2032.           isp16_cdrom_base=<port>
  2033.           isp16_cdrom_irq=<irq>
  2034.           isp16_cdrom_dma=<dma>
  2035.           isp16_cdrom_type=<drive_type>
  2036.  
  2037.           Valid values are:
  2038.             port=0x340,0x320,0x330,0x360
  2039.             irq=0,3,5,7,9,10,11
  2040.             dma=0,3,5,6,7
  2041.             drive_type=noisp16,Sanyo,Panasonic,Sony,Mitsumi.
  2042.  
  2043.             Note that these options are case sensitive.
  2044.   ______________________________________________________________________
  2045.  
  2046.   9.10.  Sony CDU31A/CDU33A CDROM support (cdu31a.o).
  2047.  
  2048.   ______________________________________________________________________
  2049.   Load command:
  2050.           /sbin/modprobe cdu31a.o [parameters]
  2051.  
  2052.           cdu31a_port=<I/O address> - sets the base I/O.
  2053.           This must be specified.
  2054.  
  2055.           cdu31a_irq=<interrupt> - Sets the interrupt number.
  2056.           Leaving this off will turn interrupts off.
  2057.   ______________________________________________________________________
  2058.  
  2059.   9.11.  Sony CDU535 CDROM support (sonycd535.o).
  2060.  
  2061.   ______________________________________________________________________
  2062.   Load command:
  2063.           /sbin/modprobe sonycd535.o sonycd535=[address]
  2064.  
  2065.           Where parameter is the baseaddress of your card.
  2066.   ______________________________________________________________________
  2067.  
  2068.   10.  Filesystems
  2069.  
  2070.   10.1.  Minix fs support(minix.o).
  2071.  
  2072.   ______________________________________________________________________
  2073.   Load command:
  2074.           /sbin/modprobe minix.o
  2075.  
  2076.           No module parameters.
  2077.   ______________________________________________________________________
  2078.  
  2079.   10.2.  Extended fs support (ext.o).
  2080.  
  2081.   ______________________________________________________________________
  2082.   Load command:
  2083.           /sbin/modprobe ext.o
  2084.  
  2085.           No module parameters.
  2086.   ______________________________________________________________________
  2087.  
  2088.   10.3.  Second extended fs support (ext2.o).
  2089.  
  2090.   ______________________________________________________________________
  2091.   Load command:
  2092.           /sbin/modprobe ext2.o
  2093.  
  2094.           No module parameters.
  2095.   ______________________________________________________________________
  2096.  
  2097.   10.4.  xiafs filesystem support (xiafs.o).
  2098.  
  2099.   ______________________________________________________________________
  2100.   Load command:
  2101.           /sbin/modprobe xiafs.o
  2102.  
  2103.           No module parameters.
  2104.   ______________________________________________________________________
  2105.  
  2106.   10.5.  DOS FAT fs support (fat.o).
  2107.  
  2108.   ______________________________________________________________________
  2109.   Load command:
  2110.           /sbin/modprobe fat.o
  2111.  
  2112.           No module parameters.
  2113.   ______________________________________________________________________
  2114.  
  2115.   10.6.  MSDOS fs support (msdos.o).
  2116.  
  2117.   ______________________________________________________________________
  2118.   Load command:
  2119.           /sbin/modprobe msdos.o
  2120.  
  2121.           No module parameters.
  2122.           Depends on fat.o.
  2123.   ______________________________________________________________________
  2124.  
  2125.   10.7.  VFAT (Windows-95) fs support (vfat.o).
  2126.  
  2127.   ______________________________________________________________________
  2128.   Load command:
  2129.           /sbin/modprobe vfat.o
  2130.  
  2131.           No module parameters.
  2132.           Depends on fat.o.
  2133.   ______________________________________________________________________
  2134.  
  2135.   10.8.  UMSDOS: Unix like fs on top of std MSDOS FAT fs (umsdos.o).
  2136.  
  2137.   ______________________________________________________________________
  2138.   Load command:
  2139.           /sbin/modprobe vfat.o
  2140.  
  2141.           No module parameters.
  2142.           Depends on fat.o and msdos.o.
  2143.   ______________________________________________________________________
  2144.  
  2145.   10.9.  NFS filesystem support (nfs.o).
  2146.  
  2147.   ______________________________________________________________________
  2148.   Load command:
  2149.           /sbin/modprobe nfs.o
  2150.  
  2151.           No module parameters.
  2152.   ______________________________________________________________________
  2153.  
  2154.   10.10.  SMB filesystem support (to mount WfW shares etc..) (smbfs.o).
  2155.  
  2156.   smbfs is a filesystem which understands the SMB protocol. This is the
  2157.   protocol Windows for Workgroups, Windows NT or Lan Manager use to talk
  2158.   to each other. smbfs was inspired by samba, the program written by
  2159.   Andrew Tridgell that turns any unix host into a file server for DOS or
  2160.   Windows clients.  See ftp://nimbus.anu.edu.au/pub/tridge/samba/ for
  2161.   this interesting program suite and lots of more information on SMB and
  2162.   NetBIOS over TCP/IP. There you also find explanation for concepts like
  2163.   netbios name or share.
  2164.  
  2165.   To use smbfs, you need a special mount program, which can be found in
  2166.   the ksmbfs package, found on
  2167.   sunsite.unc.edu:/pub/Linux/system/Filesystems/smbfs.
  2168.  
  2169.   ______________________________________________________________________
  2170.   Load command:
  2171.           /sbin/modprobe smbfs.o
  2172.  
  2173.           No module parameters.
  2174.   ______________________________________________________________________
  2175.  
  2176.   10.11.  NCP filesystem support (to mount NetWare volumes) (ncpfs.o).
  2177.  
  2178.   ncpfs is a filesystem which understands the NCP protocol, designed by
  2179.   the Novell Corporation for their NetWare(tm) product. NCP is
  2180.   functionally similar to the NFS used in the tcp/ip community.  To
  2181.   mount a Netware-Filesystem, you need a special mount program, which
  2182.   can be found in ncpfs package. Homesite for ncpfs is
  2183.   ftp.gwdg.de/pub/linux/misc/ncpfs, but sunsite and its many mirrors
  2184.   will have it as well.
  2185.  
  2186.   Related products are linware and mars_nwe, which will give Linux
  2187.   partial NetWare Server functionality.
  2188.  
  2189.   Linware's home site is: klokan.sh.cvut.cz/pub/linux/linware,
  2190.  
  2191.   Mars_nwe can be found on ftp.gwdg.de/pub/linux/misc/ncpfs.
  2192.  
  2193.   ______________________________________________________________________
  2194.   Load command:
  2195.           /sbin/modprobe ncpfs.o
  2196.  
  2197.           No module parameters.
  2198.  
  2199.           Depends on ipx.o
  2200.   ______________________________________________________________________
  2201.  
  2202.   10.12.  ISO9660 cdrom filesystem support (isofs.o).
  2203.  
  2204.   ______________________________________________________________________
  2205.   Load command:
  2206.           /sbin/modprobe isofs.o
  2207.  
  2208.           No module parameters.
  2209.   ______________________________________________________________________
  2210.  
  2211.   10.13.  OS/2 HPFS filesystem support (read only) (hpfs.o)
  2212.  
  2213.   ______________________________________________________________________
  2214.   Load command:
  2215.           /sbin/modprobe hpfs.o
  2216.  
  2217.           No module parameters.
  2218.   ______________________________________________________________________
  2219.  
  2220.   10.14.  System V and Coherent filesystem support (sysv.o).
  2221.  
  2222.   This is the implementation of the SystemV/Coherent filesystem for
  2223.   Linux.
  2224.  
  2225.   It implements all of
  2226.  
  2227.   ╖  Xenix FS,
  2228.  
  2229.   ╖  SystemV/386 FS,
  2230.  
  2231.   ╖  Coherent FS.
  2232.  
  2233.   ______________________________________________________________________
  2234.   Load command:
  2235.           /sbin/modprobe sysv.o
  2236.  
  2237.           No module parameters.
  2238.   ______________________________________________________________________
  2239.  
  2240.   10.15.  Amiga FFS filesystem support  (affs.o).
  2241.  
  2242.   ______________________________________________________________________
  2243.   Load command:
  2244.           /sbin/modprobe affs.o
  2245.  
  2246.           No module parameters.
  2247.   ______________________________________________________________________
  2248.  
  2249.   10.16.  UFS filesystem support (read only) (ufs.o).
  2250.  
  2251.   Apparently for mounting disks with FreeBSD and/or Sun partitions.  No
  2252.   documentation exists, apart from The Source.
  2253.  
  2254.   ______________________________________________________________________
  2255.   Load command:
  2256.           /sbin/modprobe ufs.o
  2257.  
  2258.           No module parameters.
  2259.   ______________________________________________________________________
  2260.  
  2261.   11.  Character devices
  2262.  
  2263.   11.1.  Support for user misc device modules (misc.o).
  2264.  
  2265.   This module is used by atixlmouse, busmouse, msbusmouse, psaux, wdt
  2266.   and softdog modules and it is automatically generated if required.
  2267.  
  2268.   ______________________________________________________________________
  2269.   Load command:
  2270.           /sbin/modprobe misc.o
  2271.  
  2272.           No module parameters.
  2273.   ______________________________________________________________________
  2274.  
  2275.   11.2.  Standard/generic serial support (serial.o).
  2276.  
  2277.   NOTE: serial.o is required by other modules, like ppp.o and slip.o.
  2278.   Also it is required by serial mouse and accordingly by gpm.  However
  2279.   this dependency is not detected by present tools and module serial.o
  2280.   must be loaded manually.
  2281.  
  2282.   ______________________________________________________________________
  2283.   Load command:
  2284.           /sbin/modprobe serial.o
  2285.  
  2286.           No module parameters.
  2287.   ______________________________________________________________________
  2288.  
  2289.   11.3.  Cyclades async mux support (cyclades.o)
  2290.  
  2291.   ______________________________________________________________________
  2292.   Load command:
  2293.           /sbin/modprobe cyclades.o
  2294.  
  2295.           No module parameters.
  2296.   ______________________________________________________________________
  2297.  
  2298.   11.4.  Stallion multiport serial support
  2299.  
  2300.   The intelligent boards also need to have their "firmware" code
  2301.   downloaded to them. This is done via a user level application supplied
  2302.   in the driver package called "stlload". Compile this program where
  2303.   ever you dropped the package files, by typing "make". In its simplest
  2304.   form you can then type
  2305.  
  2306.   in this directory and that will download board 0 (assuming board 0 is
  2307.   an EasyConnection 8/64 board). To download to an ONboard, Brumby or
  2308.   Stallion do:
  2309.  
  2310.   Read the information at /usr/src/linux/drivers/char/README.stallion.
  2311.  
  2312.   11.4.1.  Stallion EasyIO or EC8/32 support (stallion.o).
  2313.  
  2314.   ______________________________________________________________________
  2315.   Load command:
  2316.           /sbin/modprobe stallion.o
  2317.  
  2318.           No module parameters.
  2319.   ______________________________________________________________________
  2320.  
  2321.   11.4.2.  Stallion EC8/64, ONboard, Brumby support (istallion.o).
  2322.  
  2323.   ______________________________________________________________________
  2324.   Load command:
  2325.           /sbin/modprobe istallion.o
  2326.  
  2327.           No module parameters.
  2328.   ______________________________________________________________________
  2329.  
  2330.   11.5.  SDL RISCom/8 card support (riscom8.o).
  2331.  
  2332.   ______________________________________________________________________
  2333.   Load command:
  2334.           /sbin/modprobe riscom8.o [options]
  2335.  
  2336.           This driver can support up to 4 boards at time.
  2337.           Options : iobase=0xXXX iobase1=0xXXX iobase2=...
  2338.  
  2339.   ______________________________________________________________________
  2340.  
  2341.   11.6.  Parallel printer support (lp.o).
  2342.  
  2343.   ______________________________________________________________________
  2344.   Load command:
  2345.           /sbin/modprobe lp.o io=0x378 irq=0
  2346.  
  2347.           io = 0
  2348.           irq = 0         irq=0 will run in polled mode
  2349.  
  2350.           (Probes ports: 0x278, 0x378, 0x3bc)
  2351.           Note: loading lp.o without any parameters will
  2352.           grab all parallelports.
  2353.   ______________________________________________________________________
  2354.  
  2355.   11.7.  Bus Mouse Support
  2356.  
  2357.   11.7.1.  ATIXL busmouse support (atixlmouse.o).
  2358.  
  2359.   ______________________________________________________________________
  2360.   Load command:
  2361.           /sbin/modprobe atixlmouse.o
  2362.  
  2363.           No module parameters.
  2364.           Depends on misc.o
  2365.   ______________________________________________________________________
  2366.  
  2367.   11.7.2.  Logitech busmouse support (busmouse.o).
  2368.  
  2369.   ______________________________________________________________________
  2370.   Load command:
  2371.           /sbin/modprobe busmouse.o
  2372.  
  2373.           No module parameters.
  2374.           Depends on misc.o
  2375.   ______________________________________________________________________
  2376.  
  2377.   11.7.3.  Microsoft busmouse support (msbusmouse.o).
  2378.  
  2379.   ______________________________________________________________________
  2380.   Load command:
  2381.           /sbin/modprobe msbusmouse.o
  2382.  
  2383.           No module parameters.
  2384.           Depends on misc.o
  2385.   ______________________________________________________________________
  2386.  
  2387.   11.7.4.  PS/2 mouse (aka "auxiliary device") support (psaux.o).
  2388.  
  2389.   ______________________________________________________________________
  2390.   Load command:
  2391.           /sbin/modprobe psaux.o
  2392.  
  2393.           No module parameters.
  2394.           Depends on misc.o
  2395.   ______________________________________________________________________
  2396.  
  2397.   11.8.  Tape support
  2398.  
  2399.   For support of SCSI tapedrives, see section SCSI Support.  Support for
  2400.   QIC-02 tapes is not modularized.
  2401.  
  2402.   11.8.1.  Ftape (QIC-80/Travan) support (ftape.o).
  2403.  
  2404.   ______________________________________________________________________
  2405.   Load command:
  2406.           /sbin/modprobe ftape.o tracing=3
  2407.  
  2408.           Option parameter 'tracing' can take following values
  2409.  
  2410.           set it to:     to get:
  2411.             0             bugs
  2412.             1             + errors
  2413.             2             + warnings
  2414.             3             + information           ** Default **
  2415.             4             + more information
  2416.             5             + program flow
  2417.             6             + fdc/dma info
  2418.             7             + data flow
  2419.             8             + everything else
  2420.   ______________________________________________________________________
  2421.  
  2422.   11.9.  Watchdog Timer Support
  2423.  
  2424.   11.9.1.  WDT Watchdog timer (wdt.o).
  2425.  
  2426.   ______________________________________________________________________
  2427.   Load command:
  2428.           /sbin/modprobe wdt.o
  2429.  
  2430.           No module parameters.
  2431.           Defaults to io=0x240 irq=14,
  2432.           make any required changes to wdt.c directly.
  2433.           Depends on misc.o
  2434.   ______________________________________________________________________
  2435.  
  2436.   11.9.2.  Software Watchdog (softdog.o).
  2437.  
  2438.   ______________________________________________________________________
  2439.   Load command:
  2440.           /sbin/modprobe softdog.o
  2441.  
  2442.           No module parameters.
  2443.           Depends on misc.o
  2444.   ______________________________________________________________________
  2445.  
  2446.   11.9.3.  Berkshire Products PC Watchdog (pcwd.o).
  2447.  
  2448.   ______________________________________________________________________
  2449.   Load command:
  2450.           /sbin/modprobe pcwd.o
  2451.  
  2452.           No module parameters.
  2453.           Depends on misc.o
  2454.   ______________________________________________________________________
  2455.  
  2456.   12.  Sound support (sound.o).
  2457.  
  2458.   Configuring sound is a complex task, there is a number of Readme-files
  2459.   in directory /usr/src/linux/drivers/sound, read them.
  2460.  
  2461.   ______________________________________________________________________
  2462.   Load command:
  2463.           /sbin/modprobe sound.o [option]
  2464.  
  2465.           Option: dma_buffsize=32768
  2466.   ______________________________________________________________________
  2467.  
  2468.   13.  Closing
  2469.  
  2470.   If you have found any glaring typos, or outdated info in this
  2471.   document, please let me know. It is easy to overlook stuff.
  2472.  
  2473.   Thanks,
  2474.  
  2475.   Lauri Tischler, ltischler@efore.fi
  2476.  
  2477.