Kconfig 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. #
  2. # Arcnet configuration
  3. #
  4. menu "ARCnet devices"
  5. depends on NETDEVICES && (ISA || PCI)
  6. config ARCNET
  7. tristate "ARCnet support"
  8. ---help---
  9. If you have a network card of this type, say Y and check out the
  10. (arguably) beautiful poetry in
  11. <file:Documentation/networking/arcnet.txt>.
  12. You need both this driver, and the driver for the particular ARCnet
  13. chipset of your card. If you don't know, then it's probably a
  14. COM90xx type card, so say Y (or M) to "ARCnet COM90xx chipset
  15. support" below.
  16. You might also want to have a look at the Ethernet-HOWTO, available
  17. from <http://www.tldp.org/docs.html#howto>(even though ARCnet
  18. is not really Ethernet).
  19. To compile this driver as a module, choose M here and read
  20. <file:Documentation/networking/net-modules.txt>. The module will
  21. be called arcnet.
  22. config ARCNET_1201
  23. tristate "Enable standard ARCNet packet format (RFC 1201)"
  24. depends on ARCNET
  25. help
  26. This allows you to use RFC1201 with your ARCnet card via the virtual
  27. arc0 device. You need to say Y here to communicate with
  28. industry-standard RFC1201 implementations, like the arcether.com
  29. packet driver or most DOS/Windows ODI drivers. Please read the
  30. ARCnet documentation in <file:Documentation/networking/arcnet.txt>
  31. for more information about using arc0.
  32. config ARCNET_1051
  33. tristate "Enable old ARCNet packet format (RFC 1051)"
  34. depends on ARCNET
  35. ---help---
  36. This allows you to use RFC1051 with your ARCnet card via the virtual
  37. arc0s device. You only need arc0s if you want to talk to ARCnet
  38. software complying with the "old" standard, specifically, the DOS
  39. arcnet.com packet driver, Amigas running AmiTCP, and some variants
  40. of NetBSD. You do not need to say Y here to communicate with
  41. industry-standard RFC1201 implementations, like the arcether.com
  42. packet driver or most DOS/Windows ODI drivers. RFC1201 is included
  43. automatically as the arc0 device. Please read the ARCnet
  44. documentation in <file:Documentation/networking/arcnet.txt> for more
  45. information about using arc0e and arc0s.
  46. config ARCNET_RAW
  47. tristate "Enable raw mode packet interface"
  48. depends on ARCNET
  49. help
  50. ARCnet "raw mode" packet encapsulation, no soft headers. Unlikely
  51. to work unless talking to a copy of the same Linux arcnet driver,
  52. but perhaps marginally faster in that case.
  53. config ARCNET_CAP
  54. tristate "Enable CAP mode packet interface"
  55. depends on ARCNET
  56. help
  57. ARCnet "cap mode" packet encapsulation. Used to get the hardware
  58. acknowledge back to userspace. After the initial protocol byte every
  59. packet is stuffed with an extra 4 byte "cookie" which doesn't
  60. actually appear on the network. After transmit the driver will send
  61. back a packet with protocol byte 0 containing the status of the
  62. transmission:
  63. 0=no hardware acknowledge
  64. 1=excessive nak
  65. 2=transmission accepted by the receiver hardware
  66. Received packets are also stuffed with the extra 4 bytes but it will
  67. be random data.
  68. Cap only listens to protocol 1-8.
  69. config ARCNET_COM90xx
  70. tristate "ARCnet COM90xx (normal) chipset driver"
  71. depends on ARCNET
  72. help
  73. This is the chipset driver for the standard COM90xx cards. If you
  74. have always used the old ARCnet driver without knowing what type of
  75. card you had, this is probably the one for you.
  76. To compile this driver as a module, choose M here and read
  77. <file:Documentation/networking/net-modules.txt>. The module will
  78. be called com90xx.
  79. config ARCNET_COM90xxIO
  80. tristate "ARCnet COM90xx (IO mapped) chipset driver"
  81. depends on ARCNET
  82. ---help---
  83. This is the chipset driver for the COM90xx cards, using them in
  84. IO-mapped mode instead of memory-mapped mode. This is slower than
  85. the normal driver. Only use it if your card doesn't support shared
  86. memory.
  87. To compile this driver as a module, choose M here and read
  88. <file:Documentation/networking/net-modules.txt>. The module will
  89. be called com90io.
  90. config ARCNET_RIM_I
  91. tristate "ARCnet COM90xx (RIM I) chipset driver"
  92. depends on ARCNET
  93. ---help---
  94. This is yet another chipset driver for the COM90xx cards, but this
  95. time only using memory-mapped mode, and no IO ports at all. This
  96. driver is completely untested, so if you have one of these cards,
  97. please mail <dwmw2@infradead.org>, especially if it works!
  98. To compile this driver as a module, choose M here and read
  99. <file:Documentation/networking/net-modules.txt>. The module will
  100. be called arc-rimi.
  101. config ARCNET_COM20020
  102. tristate "ARCnet COM20020 chipset driver"
  103. depends on ARCNET
  104. help
  105. This is the driver for the new COM20020 chipset. It supports such
  106. things as promiscuous mode, so packet sniffing is possible, and
  107. extra diagnostic information.
  108. To compile this driver as a module, choose M here and read
  109. <file:Documentation/networking/net-modules.txt>. The module will
  110. be called com20020.
  111. config ARCNET_COM20020_ISA
  112. tristate "Support for COM20020 on ISA"
  113. depends on ARCNET_COM20020 && ISA
  114. config ARCNET_COM20020_PCI
  115. tristate "Support for COM20020 on PCI"
  116. depends on ARCNET_COM20020 && PCI
  117. endmenu