Kconfig 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. #
  2. # Appletalk driver configuration
  3. #
  4. config DEV_APPLETALK
  5. bool "Appletalk interfaces support"
  6. depends on ATALK
  7. help
  8. AppleTalk is the protocol that Apple computers can use to communicate
  9. on a network. If your Linux box is connected to such a network, and wish
  10. to do IP over it, or you have a LocalTalk card and wish to use it to
  11. connect to the AppleTalk network, say Y.
  12. config LTPC
  13. tristate "Apple/Farallon LocalTalk PC support"
  14. depends on DEV_APPLETALK && (ISA || EISA) && ISA_DMA_API
  15. help
  16. This allows you to use the AppleTalk PC card to connect to LocalTalk
  17. networks. The card is also known as the Farallon PhoneNet PC card.
  18. If you are in doubt, this card is the one with the 65C02 chip on it.
  19. You also need version 1.3.3 or later of the netatalk package.
  20. This driver is experimental, which means that it may not work.
  21. See the file <file:Documentation/networking/ltpc.txt>.
  22. config COPS
  23. tristate "COPS LocalTalk PC support"
  24. depends on DEV_APPLETALK && (ISA || EISA)
  25. help
  26. This allows you to use COPS AppleTalk cards to connect to LocalTalk
  27. networks. You also need version 1.3.3 or later of the netatalk
  28. package. This driver is experimental, which means that it may not
  29. work. This driver will only work if you choose "AppleTalk DDP"
  30. networking support, above.
  31. Please read the file <file:Documentation/networking/cops.txt>.
  32. config COPS_DAYNA
  33. bool "Dayna firmware support"
  34. depends on COPS
  35. help
  36. Support COPS compatible cards with Dayna style firmware (Dayna
  37. DL2000/ Daynatalk/PC (half length), COPS LT-95, Farallon PhoneNET PC
  38. III, Farallon PhoneNET PC II).
  39. config COPS_TANGENT
  40. bool "Tangent firmware support"
  41. depends on COPS
  42. help
  43. Support COPS compatible cards with Tangent style firmware (Tangent
  44. ATB_II, Novell NL-1000, Daystar Digital LT-200.
  45. config IPDDP
  46. tristate "Appletalk-IP driver support"
  47. depends on DEV_APPLETALK && ATALK
  48. ---help---
  49. This allows IP networking for users who only have AppleTalk
  50. networking available. This feature is experimental. With this
  51. driver, you can encapsulate IP inside AppleTalk (e.g. if your Linux
  52. box is stuck on an AppleTalk only network) or decapsulate (e.g. if
  53. you want your Linux box to act as an Internet gateway for a zoo of
  54. AppleTalk connected Macs). Please see the file
  55. <file:Documentation/networking/ipddp.txt> for more information.
  56. If you say Y here, the AppleTalk-IP support will be compiled into
  57. the kernel. In this case, you can either use encapsulation or
  58. decapsulation, but not both. With the following two questions, you
  59. decide which one you want.
  60. To compile the AppleTalk-IP support as a module, choose M here: the
  61. module will be called ipddp.
  62. In this case, you will be able to use both encapsulation and
  63. decapsulation simultaneously, by loading two copies of the module
  64. and specifying different values for the module option ipddp_mode.
  65. config IPDDP_ENCAP
  66. bool "IP to Appletalk-IP Encapsulation support"
  67. depends on IPDDP
  68. help
  69. If you say Y here, the AppleTalk-IP code will be able to encapsulate
  70. IP packets inside AppleTalk frames; this is useful if your Linux box
  71. is stuck on an AppleTalk network (which hopefully contains a
  72. decapsulator somewhere). Please see
  73. <file:Documentation/networking/ipddp.txt> for more information. If
  74. you said Y to "AppleTalk-IP driver support" above and you say Y
  75. here, then you cannot say Y to "AppleTalk-IP to IP Decapsulation
  76. support", below.
  77. config IPDDP_DECAP
  78. bool "Appletalk-IP to IP Decapsulation support"
  79. depends on IPDDP
  80. help
  81. If you say Y here, the AppleTalk-IP code will be able to decapsulate
  82. AppleTalk-IP frames to IP packets; this is useful if you want your
  83. Linux box to act as an Internet gateway for an AppleTalk network.
  84. Please see <file:Documentation/networking/ipddp.txt> for more
  85. information. If you said Y to "AppleTalk-IP driver support" above
  86. and you say Y here, then you cannot say Y to "IP to AppleTalk-IP
  87. Encapsulation support", above.